:root {
  --ink: #10110f;
  --paper: #f1f3ee;
  --white: #ffffff;
  --muted: #686b65;
  --line: #cfd3cb;
  --signal: #c9ff38;
  --blue: #3155ff;
  --cyan: #57d6c7;
  --orange: #ff7557;
  --yellow: #f1d64f;
  --shell: 1200px;
  --header-height: 56px;
  color-scheme: light;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(241, 243, 238, 0.95);
  border-color: rgba(16, 17, 15, 0.13);
  backdrop-filter: saturate(150%) blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-size: 15px;
  font-weight: 730;
  line-height: 1;
}

.brand-mark {
  margin-right: 5px;
  color: var(--signal);
  font-size: 20px;
  font-weight: 850;
}

.site-header.is-scrolled .brand-mark,
.footer-brand .brand-mark {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 12px;
  font-weight: 580;
}

.site-nav a,
.header-action {
  transition: opacity 160ms ease;
}

.site-nav a:hover,
.header-action:hover {
  opacity: 0.56;
}

.header-action {
  justify-self: end;
  font-size: 12px;
  font-weight: 680;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 700px;
  height: calc(100svh - 36px);
  max-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(1) contrast(1.22);
}

.hero-grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 18%;
  left: max(32px, calc((100vw - var(--shell)) / 2));
  width: min(850px, calc(100% - 64px));
}

.hero-words {
  max-width: 850px;
}

.eyebrow,
.section-label {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.section-label.light,
.eyebrow.light {
  color: var(--signal);
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 86px;
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-words > p:not(.eyebrow) {
  max-width: 730px;
  margin-bottom: 34px;
  color: #e3e5df;
  font-size: 27px;
  font-weight: 520;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 680;
  transition: transform 160ms ease, background-color 160ms ease;
}

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

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

.button-signal:hover {
  background: #d8ff6b;
}

.button-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 640;
}

.button-link span,
.button span,
.contact a span,
.site-footer a span:last-child {
  display: inline-block;
  margin-left: 5px;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - var(--shell)) / 2));
  bottom: 28px;
  left: max(32px, calc((100vw - var(--shell)) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-index span {
  padding: 18px 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.hero-index b {
  margin-right: 12px;
  color: var(--signal);
  font-size: 10px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.intro {
  padding-top: 154px;
  padding-bottom: 148px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 72px;
  align-items: end;
}

.intro h2,
.services-heading h2,
.featured-copy h2,
.smartplan h2,
.approach h2,
.contact h2 {
  margin-bottom: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.intro h2 span,
.approach h2 span,
.contact h2 span {
  color: #969b92;
}

.intro-grid > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.intro-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 86px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.intro-facts span {
  padding: 10px 13px;
  color: #3d403b;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 660;
}

.services {
  padding: 138px 0 150px;
  background: var(--white);
}

.services-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  column-gap: 70px;
  margin-bottom: 90px;
}

.services-heading .section-label {
  grid-column: 1 / -1;
}

.services-heading h2 {
  font-size: 56px;
}

.services-heading > p:last-child {
  align-self: end;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.motion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  gap: 14px;
  margin-bottom: 92px;
}

.motion-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.motion-card {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  isolation: isolate;
}

.motion-card-main {
  min-height: 614px;
}

.motion-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.motion-card video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.75) saturate(0.55) contrast(1.08);
  transform: scale(1.015);
  transition: filter 400ms ease, transform 700ms ease;
}

.motion-card:hover video,
.motion-card:focus-visible video {
  filter: grayscale(0.12) saturate(0.92) contrast(1.04);
  transform: scale(1.045);
}

.motion-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 29px 30px 28px;
  background: rgba(16, 17, 15, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.motion-caption p {
  margin-bottom: 12px;
  color: #c6c9c2;
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.motion-caption p span {
  margin-right: 9px;
  color: var(--signal);
}

.motion-caption h3 {
  max-width: 590px;
  margin-bottom: 19px;
  font-size: 38px;
  font-weight: 680;
  line-height: 1.06;
}

.motion-caption b {
  font-size: 12px;
  font-weight: 650;
}

.motion-caption b span {
  margin-left: 4px;
}

.motion-caption-compact {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 16px;
  padding: 20px 21px;
}

.motion-caption-compact p {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.motion-caption-compact h3 {
  margin-bottom: 0;
  font-size: 23px;
  line-height: 1.12;
}

.motion-caption-compact > b {
  align-self: end;
  color: var(--signal);
  font-size: 18px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(260px, 1.05fr) minmax(250px, 0.95fr) minmax(180px, 228px) 34px;
  gap: 24px;
  align-items: center;
  min-height: 158px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.service-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--service-color, var(--signal));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 240ms ease;
}

.service-row:hover::before,
.service-row:focus-visible::before {
  transform: scaleY(1);
}

.service-row:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.service-media { --service-color: #d4ff64; }
.service-restoration { --service-color: #d9e2ff; }
.service-vision { --service-color: #bde8e2; }
.service-knowledge { --service-color: #ffe1d8; }
.service-voice { --service-color: #f5edb2; }
.service-trust { --service-color: #dcd6ff; }
.service-geo { --service-color: #cad9c4; }

.service-index {
  color: var(--blue);
  font-size: 11px;
  font-weight: 760;
}

.service-title p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.service-title h3 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 680;
  line-height: 1.15;
}

.service-copy {
  min-width: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-arrow {
  justify-self: end;
  font-size: 19px;
}

.service-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 228px;
  height: 130px;
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(16, 17, 15, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.94);
  transition: opacity 180ms ease, transform 220ms ease;
}

.service-row:hover .service-visual,
.service-row:focus-visible .service-visual {
  opacity: 1;
  transform: scale(1);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.featured-service {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.featured-copy {
  position: relative;
  z-index: 4;
  padding-top: 132px;
  text-align: center;
}

.featured-copy h2 {
  max-width: 960px;
  margin: 0 auto 26px;
  font-size: 60px;
}

.featured-copy > p:not(.section-label) {
  max-width: 660px;
  margin: 0 auto 32px;
  color: #aeb2aa;
  font-size: 18px;
  line-height: 1.5;
}

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

.featured-screen {
  position: absolute;
  right: 50%;
  bottom: -146px;
  width: min(880px, 74vw);
  padding: 12px 12px 0;
  color: var(--ink);
  background: #d8dbd4;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.68);
  transform: translateX(50%);
}

.featured-screen.reveal {
  transform: translateX(50%) translateY(24px);
}

.featured-screen.reveal.is-visible {
  transform: translateX(50%) translateY(0);
}

.screen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 15px;
  background: var(--white);
  border-radius: 5px 5px 0 0;
  font-size: 10px;
  font-weight: 700;
}

.screen-bar i {
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
}

.featured-screen > img {
  width: 100%;
  height: 445px;
  object-fit: cover;
  object-position: center;
  border-top: 10px solid #eceee9;
}

.screen-data {
  position: absolute;
  top: 78px;
  right: -75px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 28px;
  width: 224px;
  padding: 24px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.screen-data span {
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.screen-data b {
  font-size: 20px;
  line-height: 1;
}

.smartplan {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: var(--signal);
}

.smartplan-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  min-height: 880px;
}

.smartplan-copy {
  position: relative;
  z-index: 4;
  padding: 100px 0;
}

.partner-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
}

.partner-label span,
.partner-label b {
  padding: 7px 9px;
  border: 1px solid rgba(16, 17, 15, 0.35);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 760;
  text-transform: uppercase;
}

.partner-label b {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.smartplan h2 {
  margin-bottom: 28px;
  font-size: 78px;
}

.smartplan-lead {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 23px;
  font-weight: 580;
  line-height: 1.35;
}

.smartplan-copy > p:not(.smartplan-lead) {
  max-width: 520px;
  margin-bottom: 34px;
  color: #45483f;
  font-size: 15px;
  line-height: 1.55;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.smartplan-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.plan-grid {
  position: absolute;
  inset: 90px -120px 90px 0;
  border: 1px solid rgba(16, 17, 15, 0.24);
}

.plan-grid span,
.plan-grid i {
  position: absolute;
  display: block;
  background: rgba(16, 17, 15, 0.2);
}

.plan-grid span {
  top: 0;
  bottom: 0;
  width: 1px;
}

.plan-grid span:nth-child(1) { left: 16.66%; }
.plan-grid span:nth-child(2) { left: 33.33%; }
.plan-grid span:nth-child(3) { left: 50%; }
.plan-grid span:nth-child(4) { left: 66.66%; }
.plan-grid span:nth-child(5) { left: 83.33%; }
.plan-grid span:nth-child(6) { left: 100%; }

.plan-grid i {
  right: 0;
  left: 0;
  height: 1px;
}

.plan-grid i:nth-of-type(1) { top: 16.66%; }
.plan-grid i:nth-of-type(2) { top: 33.33%; }
.plan-grid i:nth-of-type(3) { top: 50%; }
.plan-grid i:nth-of-type(4) { top: 66.66%; }
.plan-grid i:nth-of-type(5) { top: 83.33%; }

.plan-screen {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  width: 690px;
  padding: 12px;
  background: #d7d9d3;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(44, 52, 24, 0.3);
  transform: translateY(-50%) rotate(-2deg);
}

.plan-screen > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 39px;
  padding: 0 12px;
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.plan-screen > div i {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.plan-screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-top: 10px solid #eceee9;
}

.approach {
  padding: 150px 0;
  background: var(--paper);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.approach h2 {
  margin-bottom: 30px;
  font-size: 50px;
}

.approach-copy > p:not(.section-label) {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.52;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.approach-steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.approach-steps li > span {
  padding-top: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 760;
}

.approach-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.approach-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact {
  padding: 150px 0;
  color: var(--white);
  background: var(--ink);
}

.contact h2 {
  max-width: 1000px;
  margin-bottom: 56px;
  font-size: 66px;
}

.contact a {
  display: inline-block;
  padding-bottom: 8px;
  color: var(--signal);
  border-bottom: 1px solid currentColor;
  font-size: 20px;
  font-weight: 650;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding: 0 32px;
  color: #5f635c;
  background: #e6e9e2;
  font-size: 12px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer > a:last-child {
  justify-self: end;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero h1 { font-size: 74px; }
  .hero-words > p:not(.eyebrow) { max-width: 620px; }
  .motion-grid { grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); }
  .motion-card-main { min-height: 560px; }
  .motion-card { min-height: 273px; }
  .motion-caption h3 { font-size: 34px; }
  .motion-caption-compact h3 { font-size: 21px; }
  .service-row { grid-template-columns: 44px minmax(250px, 1fr) minmax(240px, 0.8fr) 28px; }
  .service-visual { display: none; }
  .smartplan-inner { grid-template-columns: 0.85fr 1.15fr; gap: 35px; }
  .plan-screen { left: 2%; width: 610px; }
  .screen-data { right: -25px; }
}

@media (max-width: 760px) {
  .section-shell {
    width: calc(100% - 40px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 52px;
    padding: 0 20px;
  }

  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .menu-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
    border-radius: 4px;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 52px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100svh - 52px);
    padding: 40px 20px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .nav-open .site-nav {
    display: grid;
    align-content: start;
    gap: 6px;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 25px;
    font-weight: 650;
  }

  .nav-open .site-header {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--line);
  }

  .nav-open .site-header .brand-mark {
    color: var(--blue);
  }

  .nav-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-open .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .hero {
    min-height: 700px;
    height: calc(100svh - 30px);
    max-height: 850px;
  }

  .hero-media {
    object-position: 55% center;
    opacity: 0.45;
  }

  .hero-copy {
    top: 15%;
    left: 20px;
    width: calc(100% - 40px);
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 49px;
  }

  .hero-words > p:not(.eyebrow) {
    max-width: 360px;
    margin-bottom: 28px;
    font-size: 20px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-index {
    right: 20px;
    bottom: 26px;
    left: 20px;
    grid-template-columns: 1fr;
  }

  .hero-index span {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .scroll-cue {
    display: none;
  }

  .intro {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .intro-grid,
  .services-heading,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro h2,
  .featured-copy h2,
  .approach h2,
  .contact h2 {
    font-size: 41px;
    line-height: 1.06;
  }

  .services-heading h2 {
    font-size: 37px;
    line-height: 1.07;
  }

  .intro-grid > p {
    font-size: 17px;
  }

  .intro-facts {
    margin-top: 56px;
  }

  .services {
    padding: 96px 0 104px;
  }

  .services-heading {
    margin-bottom: 60px;
  }

  .services-heading .section-label {
    grid-column: auto;
    margin-bottom: 0;
  }

  .services-heading > p:last-child {
    font-size: 16px;
  }

  .motion-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 68px;
  }

  .motion-stack {
    grid-template-rows: none;
    gap: 12px;
  }

  .motion-card,
  .motion-card-main {
    min-height: 310px;
  }

  .motion-card-main {
    min-height: 440px;
  }

  .motion-caption,
  .motion-caption-compact {
    display: block;
    padding: 21px 20px 20px;
  }

  .motion-caption h3,
  .motion-caption-compact h3 {
    margin-bottom: 13px;
    font-size: 27px;
  }

  .motion-caption-compact h3 {
    max-width: calc(100% - 42px);
  }

  .motion-caption-compact > b {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }

  .service-row {
    grid-template-columns: 34px 1fr 24px;
    gap: 8px 10px;
    min-height: 0;
    padding: 28px 0;
  }

  .service-index {
    align-self: start;
    padding-top: 4px;
  }

  .service-title {
    min-width: 0;
  }

  .service-title h3 {
    font-size: 22px;
  }

  .service-copy {
    grid-column: 2 / 4;
    margin-top: 5px;
    font-size: 14px;
  }

  .service-arrow {
    align-self: start;
    padding-top: 18px;
  }

  .featured-service {
    min-height: 820px;
  }

  .featured-copy {
    padding-top: 98px;
  }

  .featured-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .featured-screen {
    bottom: -72px;
    width: 480px;
    padding: 8px 8px 0;
  }

  .featured-screen > img {
    height: 260px;
  }

  .screen-data {
    top: 68px;
    right: 18px;
    width: 150px;
    gap: 10px 15px;
    padding: 16px;
  }

  .screen-data b {
    font-size: 16px;
  }

  .smartplan {
    min-height: 970px;
  }

  .smartplan-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 970px;
  }

  .smartplan-copy {
    padding: 90px 0 40px;
  }

  .smartplan h2 {
    font-size: 60px;
  }

  .smartplan-lead {
    font-size: 20px;
  }

  .smartplan-visual {
    min-height: 360px;
  }

  .plan-grid {
    inset: 0 -100px 20px -20px;
  }

  .plan-screen {
    top: 45%;
    left: -18px;
    width: 470px;
  }

  .approach {
    padding: 100px 0;
  }

  .contact {
    padding: 104px 0;
  }

  .contact h2 {
    margin-bottom: 42px;
  }

  .contact a {
    font-size: 17px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
    min-height: 110px;
    padding: 24px 20px;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 44px; }
  .hero-words > p:not(.eyebrow) { font-size: 19px; }
  .intro h2,
  .featured-copy h2,
  .approach h2,
  .contact h2 { font-size: 38px; }
  .services-heading h2 { font-size: 35px; }
  .smartplan h2 { font-size: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media { display: none; }
}
