:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #111111;
  --muted: #515154;
  --subtle: #6e6e73;
  --line: rgba(0, 0, 0, 0.1);
  --soft-line: rgba(0, 0, 0, 0.06);
  --accent: #0066cc;
  --accent-ink: #ffffff;
  --header-height: 73px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.09);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0d12;
    --surface: rgba(28, 28, 30, 0.78);
    --surface-strong: #16171b;
    --ink: #f5f5f7;
    --muted: #c7c7cc;
    --subtle: #98989d;
    --line: rgba(255, 255, 255, 0.14);
    --soft-line: rgba(255, 255, 255, 0.08);
    --accent: #2997ff;
    --accent-ink: #06111f;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
}

body::before {
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 102, 204, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(48, 209, 88, 0.1), transparent 28rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

.skip-link {
  background: var(--ink);
  border-radius: 999px;
  color: var(--bg);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 16px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 10;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-bar {
  align-items: center;
  backdrop-filter: blur(24px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--soft-line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px max(22px, calc((100vw - 1120px) / 2));
  position: sticky;
  top: 0;
  z-index: 3;
}

.brand {
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 2px 0 5px;
  position: relative;
}

nav a::after {
  background: var(--accent);
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.72);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

nav a:hover,
nav a.active,
nav a[aria-current="true"],
body:has(#summary:target) nav a[href="#summary"],
body:has(#skills:target) nav a[href="#skills"],
body:has(#experience:target) nav a[href="#experience"],
body:has(#projects:target) nav a[href="#projects"],
body:has(#contact:target) nav a[href="#contact"] {
  color: var(--accent);
}

nav a.active::after,
nav a[aria-current="true"]::after,
body:has(#summary:target) nav a[href="#summary"]::after,
body:has(#skills:target) nav a[href="#skills"]::after,
body:has(#experience:target) nav a[href="#experience"]::after,
body:has(#projects:target) nav a[href="#projects"]::after,
body:has(#contact:target) nav a[href="#contact"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-body {
  min-height: 100vh;
}

.home-shell {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 760px;
  min-height: 100vh;
  padding: 26vh 24px 80px;
}

.home-shell h1,
.hero-card h1 {
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.home-lede,
.tagline {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
  max-width: 760px;
}

.home-actions,
.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 720;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.resume-page {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 44px 22px 80px;
}

.hero-card,
.section {
  background: var(--surface);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 250px;
  overflow: hidden;
  padding: clamp(28px, 6vw, 68px);
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
}

.quick-facts div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.quick-facts dt {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts dd {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 3px;
}

.hero-actions {
  align-content: start;
  justify-content: end;
}

.section {
  padding: clamp(24px, 4vw, 42px);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section h2 {
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section > p,
.section-heading p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 920px;
}

.skills-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.skill-group,
.project,
.credential,
.todo-note,
.contact-grid > * {
  background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
  border: 1px solid var(--soft-line);
  border-radius: 14px;
}

.skill-group {
  padding: 18px;
}

.skill-group h3,
.role h3,
.project h3,
.credential h3 {
  font-size: 1.06rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.skill-group p,
.role p,
.project p,
.credential p,
.todo-note {
  color: var(--muted);
}

.skill-group p,
.project p,
.credential p {
  margin-top: 7px;
}

.timeline {
  display: grid;
  gap: 22px;
}

.role {
  border-left: 2px solid var(--line);
  padding-left: 22px;
}

.role-heading {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 10px;
}

.role-heading p:not(.meta) {
  margin-top: 4px;
}

.meta {
  color: var(--subtle);
  font-size: 0.92rem;
  text-align: right;
  white-space: nowrap;
}

.role ul {
  color: var(--muted);
  margin: 0;
  padding-left: 19px;
}

.role li + li {
  margin-top: 6px;
}

.section-heading {
  margin-bottom: 18px;
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project {
  padding: 20px;
}

.featured-project {
  grid-column: 1 / -1;
}

.project-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.architecture-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.architecture-flow span {
  align-items: center;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-strong));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 680;
  min-height: 34px;
  padding: 7px 11px;
}

.architecture-flow span + span::before {
  color: var(--accent);
  content: "->";
  margin-right: 8px;
}

.split-section {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credential,
.todo-note {
  padding: 18px;
}

.contact-grid {
  display: grid;
  font-style: normal;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid > * {
  color: var(--muted);
  min-height: 48px;
  padding: 13px 15px;
}

.contact-grid a:hover {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 86px;
  }

  .site-bar,
  .hero-card,
  .role-heading,
  .split-section {
    grid-template-columns: 1fr;
  }

  .site-bar {
    align-items: center;
    display: grid;
    gap: 8px;
    padding-block: 10px;
  }

  nav {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin-inline: -4px;
    overflow-x: auto;
    padding-inline: 4px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    align-items: center;
    display: inline-flex;
    min-height: 26px;
  }

  .hero-actions {
    justify-content: start;
  }

  .quick-facts,
  .skills-grid,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .meta {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 76px;
  }

  .site-bar {
    gap: 6px;
    padding: 8px 18px 7px;
  }

  .brand {
    font-size: 0.9rem;
  }

  nav {
    gap: 9px;
  }

  nav a {
    font-size: 0.8rem;
    min-height: 24px;
  }

  .resume-page {
    padding: 22px 14px 44px;
  }

  .home-shell {
    padding-top: 18vh;
  }

  .home-shell h1,
  .hero-card h1 {
    font-size: 3.25rem;
  }

  .hero-card,
  .section {
    border-radius: 18px;
  }
}

.v2-home {
  --home-bg: #f7fafc;
  --home-panel: #ffffff;
  --home-ink: #0b0f17;
  --home-muted: #4b5565;
  --home-soft: #eef4f8;
  --home-line: #e4edf3;
  --home-blue: #0b7bd3;
  --home-green: #17a673;
  --home-purple: #8557d8;
  --home-gold: #c89018;
  background: var(--home-bg);
  color: var(--home-ink);
  min-height: 100vh;
}

.v2-home::before {
  display: none;
}

.v2-home .skip-link {
  background: var(--home-ink);
  color: #ffffff;
}

.home-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--home-line);
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 72px;
  padding: 14px max(32px, calc((100vw - 1180px) / 2));
  position: sticky;
  top: 0;
  z-index: 5;
}

.home-brand {
  font-size: 1.08rem;
  font-weight: 850;
}

.home-links {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.home-links a {
  color: var(--home-muted);
  font-size: 0.9rem;
  font-weight: 650;
  padding-block: 8px;
  position: relative;
}

.home-links a::after {
  background: var(--home-blue);
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
}

.home-links a:hover,
body:not(:has(:target)) .home-links a[href="#summary"],
body:has(#summary:target) .home-links a[href="#summary"],
body:has(#skills:target) .home-links a[href="#skills"],
body:has(#experience:target) .home-links a[href="#experience"],
body:has(#projects:target) .home-links a[href="#projects"],
body:has(#contact:target) .home-links a[href="#contact"] {
  color: var(--home-blue);
}

body:not(:has(:target)) .home-links a[href="#summary"]::after,
body:has(#summary:target) .home-links a[href="#summary"]::after,
body:has(#skills:target) .home-links a[href="#skills"]::after,
body:has(#experience:target) .home-links a[href="#experience"]::after,
body:has(#projects:target) .home-links a[href="#projects"]::after,
body:has(#contact:target) .home-links a[href="#contact"]::after {
  opacity: 1;
}

.download-button {
  align-items: center;
  background: #060913;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 780;
  justify-self: end;
  min-height: 42px;
  padding: 10px 18px;
}

.download-button::after {
  content: "↓";
  font-size: 0.98rem;
  margin-left: 8px;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(241, 248, 255, 0.95), rgba(232, 248, 239, 0.78)),
    var(--home-soft);
}

.hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 545px;
  padding: 72px 32px 0;
}

.hero-content {
  align-content: center;
  display: grid;
  gap: 22px;
  padding-bottom: 58px;
}

.hero-kicker {
  color: #0d73b6;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(4rem, 8vw, 6.6rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero-summary {
  color: var(--home-muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 620px;
}

.hero-facts,
.hero-buttons,
.contact-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  gap: 26px;
  margin-top: 8px;
}

.hero-facts span {
  color: #263241;
  font-size: 0.94rem;
  font-weight: 680;
}

.hero-facts span::before {
  color: var(--home-blue);
  content: "•";
  margin-right: 8px;
}

.hero-buttons {
  margin-top: 8px;
}

.social-button {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 21px;
}

.social-button.linkedin {
  background: var(--home-blue);
  border-color: var(--home-blue);
  color: #ffffff;
}

.portrait-placeholder {
  align-items: end;
  align-self: stretch;
  background:
    radial-gradient(circle at 56% 22%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(160deg, rgba(214, 235, 247, 0.65), rgba(221, 240, 232, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-bottom: 0;
  border-radius: 190px 190px 0 0;
  display: flex;
  justify-content: center;
  min-height: 455px;
  overflow: hidden;
  padding: 32px 28px 0;
}

.portrait-placeholder > div {
  align-items: center;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 150px 150px 0 0;
  color: #ffffff;
  display: grid;
  justify-items: center;
  min-height: 390px;
  padding: 56px 24px 34px;
  width: min(100%, 320px);
}

.portrait-placeholder span {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 850;
  height: 142px;
  justify-content: center;
  width: 142px;
}

.portrait-placeholder p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  margin-top: 28px;
}

.home-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 42px 32px;
  scroll-margin-top: 90px;
}

.home-section h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 28px;
  text-align: center;
}

.service-grid,
.featured-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.project-card,
.showcase-card,
.tech-card,
.stats-strip,
.contact-band {
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.service-card,
.project-card,
.showcase-card,
.tech-card {
  border-radius: 8px;
}

.service-card {
  padding: 24px;
}

.service-icon,
.project-icon {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 850;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.blue {
  background: #e8f3ff;
  color: var(--home-blue);
}

.green {
  background: #e8faf2;
  color: var(--home-green);
}

.purple {
  background: #f2ebff;
  color: var(--home-purple);
}

.gold {
  background: #fff7df;
  color: var(--home-gold);
}

.service-card h3,
.project-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.service-card p,
.project-card p,
.showcase-card p,
.contact-band p {
  color: var(--home-muted);
  line-height: 1.55;
  margin-top: 10px;
}

.shaded {
  max-width: none;
  padding-inline: max(32px, calc((100vw - 1180px) / 2));
  width: 100%;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.project-card {
  display: grid;
  padding: 24px;
}

.tag-list,
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list {
  margin-top: 18px;
}

.tag-list span {
  color: #657284;
  font-size: 0.76rem;
  font-weight: 650;
  padding: 4px 8px;
}

.project-card a,
.showcase-card a,
.contact-links a {
  color: var(--home-blue);
  font-weight: 800;
}

.project-card a {
  margin-top: 22px;
}

.project-card a::after,
.showcase-card a::after {
  content: " →";
}

.two-column {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.showcase-card,
.tech-card {
  padding: 24px;
}

.card-heading {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.card-heading h2,
.tech-card h2 {
  margin: 0 0 18px;
  text-align: left;
}

.status-dot {
  color: var(--home-green);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-dot::before {
  content: "●";
  margin-right: 6px;
}

.showcase-content {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(220px, 0.95fr) 1fr;
}

.video-placeholder {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(rgba(11, 15, 23, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 15, 23, 0.24) 1px, transparent 1px),
    #101722;
  background-size: 24px 24px;
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  justify-items: center;
  min-height: 158px;
  padding: 22px;
  text-align: center;
}

.play-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #0f172a;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.tech-list span {
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: #263241;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 13px;
}

.stats-strip {
  border-radius: 8px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
}

.stats-strip div {
  align-items: center;
  display: grid;
  gap: 2px;
  justify-items: center;
  min-height: 92px;
  padding: 18px;
  text-align: center;
}

.stats-strip div + div {
  border-left: 1px solid var(--home-line);
}

.stats-strip strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.stats-strip span {
  color: var(--home-muted);
  font-size: 0.86rem;
}

.contact-band {
  border-radius: 8px;
  margin-bottom: 50px;
  text-align: center;
}

.contact-band h2 {
  margin-bottom: 12px;
}

.contact-band p {
  margin-inline: auto;
  max-width: 700px;
}

.contact-links {
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .home-nav {
    grid-template-columns: 1fr auto;
  }

  .home-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .home-links::-webkit-scrollbar {
    display: none;
  }

  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .portrait-placeholder {
    border-radius: 28px 28px 0 0;
    min-height: 340px;
  }

  .portrait-placeholder > div {
    min-height: 300px;
  }

  .service-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-nav {
    gap: 12px;
    padding: 12px 18px;
  }

  .home-brand {
    font-size: 1rem;
  }

  .download-button {
    font-size: 0.78rem;
    min-height: 38px;
    padding: 9px 13px;
  }

  .home-links {
    gap: 16px;
  }

  .hero-inner,
  .home-section,
  .shaded {
    padding-inline: 18px;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 42px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-facts {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .service-grid,
  .featured-grid,
  .showcase-content,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--home-line);
  }
}
