:root {
  --cream: #f4f1e8;
  --cream-shade: #e9e5d9;
  --green-tint: #e3eddb;
  --green-tint-soft: #eaf1e2;
  --forest: #3b6a3a;
  --green-ink: #1f3a22;
  --ink: #0e1a12;
  --ink-soft: #2a2f2a;
  --muted: #696f6a;
  --gold: #f5a623;
  --dark: var(--green-ink);
  --dark-raised: var(--forest);
  --white: var(--cream);
  --mist: var(--cream-shade);
  --lime: var(--green-tint);
  --coral: var(--forest);
  --coral-dark: var(--green-ink);
  --line: rgb(14 26 18 / 10%);
  --line-dark: rgb(244 241 232 / 18%);
  --on-dark-muted: rgb(244 241 232 / 68%);
  --font-ui: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-voice: ui-serif, "New York", "Iowan Old Style", Georgia, serif;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-space: clamp(76px, 10vw, 148px);
  --header: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 30;
  --z-dropdown: 40;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  background: var(--green-tint);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: calc(var(--z-dropdown) + 1);
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.page-progress {
  position: fixed;
  z-index: calc(var(--z-sticky) + 1);
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: calc(var(--page-progress, 0) * 100%);
  height: 100%;
  background: var(--coral);
}

.section-shell,
.nav-shell,
.hero-shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-white {
  position: relative;
  background: var(--white);
}

.section-heading h2,
.live-copy h2,
.pricing-promise h2,
.cta-copy h2,
.legal-title {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-family: var(--font-voice);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.section-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 0;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 240ms var(--ease-out),
    background-color 240ms var(--ease-out),
    color 240ms var(--ease-out);
}

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

.button span,
.text-link span {
  transition: transform 240ms var(--ease-out);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.button-coral {
  background: var(--forest);
  color: #fff;
}

.button-coral:hover {
  background: var(--green-ink);
}

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

.button-light:hover {
  background: var(--green-tint);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: var(--white);
  font-weight: 700;
  text-decoration-color: var(--coral);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link-dark {
  color: var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  z-index: var(--z-sticky);
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  background: rgb(244 241 232 / 92%);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background-color 260ms ease;
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    background: rgb(244 241 232 / 82%);
    backdrop-filter: saturate(125%) blur(14px);
  }
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-left: auto;
}

.primary-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: var(--forest);
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 38%, rgb(59 106 58 / 16%), transparent 31%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 76%, var(--cream-shade) 100%);
  color: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(to top, rgb(31 58 34 / 5%), transparent);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: min(940px, 100svh);
  padding-top: calc(var(--header) + clamp(70px, 10vh, 118px));
  padding-bottom: clamp(38px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 44px clamp(36px, 5vw, 84px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 28px;
}

.hero h1 {
  max-width: 10.8ch;
  margin: 0;
  font-size: clamp(3.2rem, 6.9vw, 5.6rem);
  font-family: var(--font-voice);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.93;
}

.hero-line {
  display: block;
}

.hero-line-primary {
  animation: hero-copy-arrive 620ms 60ms var(--ease-out) both;
}

.hero-accent {
  color: var(--ink);
  font-size: 1.03em;
  animation: hero-copy-arrive 620ms 150ms var(--ease-out) both;
}

.hero-highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-inline: 0.02em;
  padding: 0 0.1em 0.06em;
  color: var(--cream);
  white-space: nowrap;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0.1em -0.04em 0.01em;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-highlight-wipe 540ms 410ms var(--ease-out) both;
}

.hero-lede {
  max-width: 42ch;
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.55;
  animation: hero-copy-arrive 560ms 600ms var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 32px;
  animation: hero-copy-arrive 520ms 680ms var(--ease-out) both;
}

.hero .text-link {
  color: var(--green-ink);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  align-self: end;
}

.swing-arc {
  overflow: visible;
  pointer-events: none;
}

.hero-arc {
  position: absolute;
  z-index: 0;
  top: calc(var(--header) + 20px);
  left: 50%;
  width: calc(100vw + 160px);
  max-width: none;
  height: calc(100% - var(--header) - 68px);
  overflow: hidden;
  transform: translateX(-50%);
}

.hero-arc path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.arc-ghost {
  stroke: rgb(59 106 58 / 16%);
  stroke-width: 2;
  animation: hero-arc-ghost-arrive 420ms 420ms var(--ease-out) both;
}

.arc-live {
  stroke: var(--coral);
  stroke-width: 3;
  animation: hero-arc-draw 1090ms 520ms var(--ease-out) both;
}

.phone {
  position: relative;
  overflow: hidden;
  padding: 7px;
  background: #0a0e0c;
  border-radius: 42px;
  box-shadow: 0 18px 38px rgb(0 0 0 / 35%);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 35px;
}

.phone-hero {
  position: absolute;
  z-index: 1;
  width: clamp(220px, 21vw, 300px);
}

.phone-motion {
  top: 0;
  right: 0;
  transform: rotate(1.5deg);
  animation: hero-phone-motion-arrive 720ms 520ms var(--ease-out) both;
}

.phone-report {
  z-index: 2;
  left: 1%;
  bottom: -2%;
  width: clamp(195px, 18vw, 255px);
  transform: rotate(-2.5deg);
  animation: hero-phone-report-arrive 720ms 720ms var(--ease-out) both;
}

.proof-rail {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-rail span {
  flex: 1;
  padding: 20px clamp(10px, 2vw, 26px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.proof-rail span:first-child {
  padding-left: 0;
  text-align: left;
}

.proof-rail span:last-child {
  padding-right: 0;
  border-right: 0;
  text-align: right;
}

.proof-rail strong {
  color: var(--forest);
  font-weight: 600;
}

/* Process */
.process {
  padding-block: clamp(88px, 8vw, 104px);
}

.process-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.process-heading h2 {
  max-width: 11ch;
}

.process-heading p {
  margin: 0 0 6px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 72px);
  margin: clamp(48px, 4.5vw, 58px) 0 0;
  padding: 0;
  list-style: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--green-tint));
}

.process-line li {
  position: relative;
}

.process-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 30px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
}

.process-line li:nth-child(2) .process-dot {
  background: var(--forest);
  color: #fff;
}

.process-line li:nth-child(3) .process-dot {
  background: var(--green-tint);
  color: var(--ink);
}

.process-line h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.15;
}

.process-line p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
}

.import-note {
  margin: clamp(32px, 3vw, 40px) 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Live Range */
.live-range {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background:
    radial-gradient(circle at 75% 52%, rgb(59 106 58 / 38%), transparent 28%),
    var(--dark);
  color: var(--white);
}

.live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: clamp(52px, 8vw, 130px);
  align-items: center;
}

.live-copy h2 {
  max-width: 12ch;
}

.live-copy > p:not(.section-label) {
  max-width: 47ch;
  margin: 26px 0 0;
  color: var(--on-dark-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.mini-wave {
  display: inline-block;
  width: 22px;
  height: 12px;
  background: linear-gradient(90deg, transparent 0 10%, currentColor 10% 18%, transparent 18% 32%, currentColor 32% 42%, transparent 42% 56%, currentColor 56% 64%, transparent 64% 100%);
  clip-path: polygon(0 43%, 14% 43%, 14% 12%, 27% 12%, 27% 72%, 42% 72%, 42% 0, 58% 0, 58% 100%, 72% 100%, 72% 27%, 86% 27%, 86% 56%, 100% 56%, 100% 66%, 0 66%);
}

.range-sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(42px, 6vw, 70px);
  color: var(--on-dark-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.range-sequence::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 1px;
  background: var(--line-dark);
}

.range-sequence span,
.range-sequence strong {
  position: relative;
}

.range-sequence span::after,
.range-sequence strong::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -21px;
  width: 11px;
  height: 11px;
  background: var(--dark);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.range-sequence .is-complete {
  color: var(--lime);
}

.range-sequence .is-active,
.range-sequence strong {
  color: var(--gold);
}

.range-sequence strong {
  font-size: 1rem;
}

.waveform {
  height: 86px;
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.6vw, 8px);
  margin-top: 30px;
  color: var(--lime);
}

.waveform i {
  flex: 1;
  height: 46%;
  min-width: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  animation: wave 1.25s ease-in-out infinite alternate;
}

.waveform i:nth-child(3n) {
  height: 82%;
  animation-delay: -0.8s;
}

.waveform i:nth-child(4n) {
  height: 28%;
  animation-delay: -0.35s;
}

.waveform i:nth-child(n + 14) {
  background: var(--gold);
  animation-duration: 950ms;
}

.live-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.live-benefits strong,
.live-benefits span {
  display: block;
}

.live-benefits strong {
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.live-benefits span {
  color: var(--on-dark-muted);
  font-size: 0.76rem;
}

.range-visual {
  position: relative;
  min-height: 660px;
}

.phone-live {
  position: absolute;
  right: 3%;
  bottom: -18%;
  width: min(100%, 345px);
  transform: rotate(2deg);
}

.range-distance {
  position: absolute;
  z-index: 2;
  top: 15%;
  right: -8%;
  display: grid;
  justify-items: center;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.range-distance i {
  display: block;
  width: 1px;
  height: 74px;
  margin-block: 8px;
  border-left: 1px dashed var(--lime);
}

/* Analysis story */
.analysis-story {
  padding-top: clamp(80px, 7vw, 96px);
  overflow: hidden;
}

.story-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(44px, 8vw, 130px);
  align-items: end;
  padding-bottom: clamp(56px, 6vw, 72px);
}

.story-intro > p {
  max-width: 43ch;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.55vw, 1.25rem);
}

.story-track {
  position: relative;
  background: linear-gradient(to bottom, var(--white), var(--mist) 48%, var(--white));
}

.story-arc {
  position: absolute;
  z-index: 0;
  top: 22%;
  left: 0;
  width: 100%;
  height: 34%;
  overflow: visible;
}

.story-arc path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 4px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 10 15;
}

.story-steps {
  position: relative;
  z-index: 1;
}

.story-step {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.7fr);
  gap: clamp(58px, 10vw, 160px);
  align-items: center;
  padding-block: clamp(56px, 6vw, 80px);
}

.story-reverse .story-copy {
  order: 2;
}

.story-reverse .phone {
  order: 1;
}

.story-copy {
  max-width: 520px;
}

.story-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-marker::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(59 106 58 / 10%);
}

.marker-coral {
  color: var(--coral-dark);
}

.story-copy h3 {
  max-width: 12ch;
  margin: 20px 0 22px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-family: var(--font-voice);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.story-copy > p:not(.micro-copy) {
  max-width: 43ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.micro-copy {
  margin: 24px 0 0;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.story-copy blockquote {
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 2px solid var(--coral);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-family: var(--font-voice);
  font-weight: 400;
  line-height: 1.35;
}

.story-copy cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-story {
  width: min(100%, 320px);
  justify-self: center;
  transition: transform 700ms var(--ease-out);
}

.story-step.is-active .story-left {
  transform: rotate(-2deg) translateY(-10px);
}

.story-step.is-active .story-right {
  transform: rotate(2deg) translateY(-10px);
}

.checkpoint-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 26px;
  padding-bottom: clamp(72px, 7vw, 96px);
  color: var(--muted);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 700;
  text-transform: uppercase;
}

.checkpoint-strip i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.checkpoint-strip span {
  white-space: nowrap;
}

.checkpoint-strip .is-focus {
  color: var(--coral-dark);
}

/* Pricing */
.pricing {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.pricing-grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr) minmax(200px, 0.44fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.pricing-promise h2 {
  max-width: 9ch;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
}

.pricing-promise h2 strong {
  display: block;
  color: var(--green-tint);
  font-size: 1.65em;
  line-height: 0.78;
}

.pricing-promise > p:not(.section-label) {
  max-width: 39ch;
  margin: 26px 0 30px;
  color: var(--on-dark-muted);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 64px 64px;
  align-items: center;
}

.compare-head {
  padding-bottom: 14px;
  color: var(--on-dark-muted);
  font-size: 0.78rem;
  text-align: center;
  text-transform: uppercase;
}

.compare-head .pro-label {
  color: var(--green-tint);
}

.compare-row {
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.compare-row > span strong,
.compare-row > span small {
  display: block;
}

.compare-row > span strong {
  font-size: 1rem;
}

.compare-row > span small {
  margin-top: 3px;
  color: var(--on-dark-muted);
  font-size: 0.8rem;
}

.compare-row b {
  text-align: center;
}

.compare-row .check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  justify-self: center;
  background: var(--green-tint);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.85rem;
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--on-dark-muted);
  font-size: 0.78rem;
}

.phone-pricing {
  width: 300px;
  transform: rotate(3deg) translateY(19%);
}

/* FAQ */
.faq {
  padding-block: var(--section-space);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.1fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header) + 44px);
}

.faq-heading h2 {
  max-width: 10ch;
}

.faq-list {
  border-bottom: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 2px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  transition: transform 320ms var(--ease-out);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 2px;
  background: var(--coral-dark);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 62ch;
  margin: -2px 46px 24px 2px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background: linear-gradient(120deg, var(--green-tint) 0%, var(--cream) 52%, var(--cream-shade) 100%);
  color: var(--ink);
}

.cta-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
}

.cta-copy {
  max-width: 710px;
  padding-block: 80px;
}

.cta-copy > img {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 14px;
}

.cta-copy h2 {
  max-width: 10ch;
}

.cta-copy p {
  max-width: 38ch;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.cta-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-arc path {
  fill: none;
  stroke: rgb(59 106 58 / 32%);
  stroke-width: 2px;
  stroke-dasharray: 0.02 0.025;
  stroke-dashoffset: calc(1 - var(--cta-progress, 0));
  vector-effect: non-scaling-stroke;
}

.phone-cta {
  width: min(100%, 360px);
  align-self: end;
  justify-self: center;
  transform: rotate(6deg) translateY(18%);
  transition: transform 700ms var(--ease-out);
}

.final-cta:hover .phone-cta {
  transform: rotate(3deg) translateY(14%);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--on-dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 0.72fr;
  gap: clamp(34px, 5vw, 78px);
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: 50px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 29ch;
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.site-footer nav,
.footer-download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer nav strong,
.footer-download > strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: var(--on-dark-muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--cream);
}

.footer-download .text-link {
  color: var(--cream);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.76rem;
}

/* Legal and support pages */
.legal-page {
  background: var(--white);
}

.legal-page .site-header {
  position: sticky;
}

.legal-page .nav-shell > .text-link {
  margin-left: auto;
  padding-block: 6px;
  color: var(--green-ink);
}

.legal-shell {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(60px, 9vw, 110px) var(--gutter) clamp(80px, 10vw, 130px);
}

.legal-article {
  max-width: 72ch;
}

.legal-meta {
  margin: 0 0 22px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-title {
  max-width: 12ch;
  margin-bottom: 24px;
}

.legal-lede {
  max-width: 62ch;
  margin: 0 0 clamp(48px, 7vw, 76px);
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2.3vw, 1.55rem);
  line-height: 1.45;
}

.legal-article h2 {
  margin: 38px 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-family: var(--font-voice);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-article h3 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
}

.legal-article p,
.legal-article li {
  color: var(--ink-soft);
}

.legal-article p {
  margin: 0 0 24px;
}

.legal-article ul,
.legal-article ol {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding-left: 1.35em;
}

.legal-article a {
  color: var(--forest);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-article a:hover {
  color: var(--coral-dark);
}

.support-action {
  margin-bottom: 26px;
}

.legal-footer {
  padding-block: 34px;
  background: var(--dark);
  color: var(--on-dark-muted);
}

.legal-footer .section-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-footer a {
  color: var(--cream);
  font-size: 0.86rem;
  text-decoration: none;
}

.legal-footer p {
  margin: 0;
  font-size: 0.78rem;
}

@keyframes hero-copy-arrive {
  from { opacity: 0; transform: translateY(0.22em); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-highlight-wipe {
  to { transform: scaleX(1); }
}

@keyframes hero-arc-ghost-arrive {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-arc-draw {
  from { stroke-dasharray: 2000 2000; stroke-dashoffset: 2000; }
  99% { stroke-dasharray: 2000 2000; stroke-dashoffset: 0; }
  to { stroke-dasharray: none; stroke-dashoffset: 0; }
}

@keyframes hero-phone-motion-arrive {
  from { opacity: 0; transform: translate3d(24px, 26px, 0) rotate(4deg) scale(0.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(1.5deg) scale(1); }
}

@keyframes hero-phone-report-arrive {
  from { opacity: 0; transform: translate3d(-18px, 30px, 0) rotate(-5deg) scale(0.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-2.5deg) scale(1); }
}

@keyframes wave {
  0% { transform: scaleY(0.35); }
  100% { transform: scaleY(1); }
}

@media (max-width: 1040px) {
  .hero-shell {
    grid-template-columns: minmax(0, 0.88fr) minmax(370px, 1fr);
  }

  .hero-visual {
    min-height: 560px;
  }

  .pricing-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .phone-pricing {
    display: none;
  }

  .range-distance {
    right: -3%;
  }
}

@media (max-width: 820px) {
  :root { --header: 66px; }

  .nav-toggle {
    position: relative;
    z-index: calc(var(--z-dropdown) + 1);
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle > span:not(.sr-only) {
    position: absolute;
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform 260ms var(--ease-out);
  }

  .nav-toggle > span:nth-child(2) { transform: translateY(-4px); }
  .nav-toggle > span:nth-child(3) { transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }

  .primary-nav {
    position: absolute;
    z-index: var(--z-dropdown);
    inset: var(--header) 0 auto;
    height: calc(100svh - var(--header));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 90px var(--gutter);
    background: var(--dark);
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    transition:
      clip-path 420ms var(--ease-out),
      visibility 0s 420ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    clip-path: inset(0);
    transition-delay: 0s;
  }

  .menu-open .site-header {
    height: 100svh;
    background: var(--dark);
    backdrop-filter: none;
  }

  .menu-open .nav-shell {
    height: var(--header);
  }

  .primary-nav a {
    font-size: clamp(2rem, 8vw, 3.3rem);
    font-weight: 600;
    letter-spacing: -0.035em;
  }

  .primary-nav.is-open a,
  .menu-open .brand,
  .menu-open .nav-toggle {
    color: var(--cream);
  }

  .nav-cta { display: none; }

  .hero-arc {
    top: 520px;
    width: calc(100vw + 96px);
    height: 160px;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: calc(var(--header) + 68px);
    gap: 24px;
  }

  .hero-copy {
    max-width: 680px;
    padding-bottom: 0;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 580px;
    justify-self: center;
  }

  .proof-rail {
    flex-wrap: wrap;
  }

  .proof-rail span,
  .proof-rail span:first-child,
  .proof-rail span:last-child {
    flex-basis: 50%;
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .proof-rail span:nth-child(2) { border-right: 0; }
  .proof-rail span:nth-last-child(-n + 2) { border-bottom: 0; }

  .live-grid,
  .story-intro,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .live-grid { gap: 30px; }
  .range-visual { min-height: 550px; }
  .phone-live { right: 8%; width: 300px; }
  .range-distance { right: 2%; }

  .story-intro { gap: 30px; }
  .story-intro > p { max-width: 54ch; }
  .story-step { min-height: 620px; gap: 50px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pricing-promise h2 { max-width: 11ch; }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 { max-width: 12ch; }

  .cta-grid { min-height: 760px; }
  .cta-copy { padding: 80px 0 0; }
  .phone-cta { width: 310px; justify-self: end; }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-download { display: none; }
}

@media (max-width: 600px) {
  :root { --section-space: 82px; }

  body { font-size: 16px; }

  .section-heading h2,
  .live-copy h2,
  .pricing-promise h2,
  .cta-copy h2,
  .legal-title {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-lede { max-width: 34ch; }
  .hero-actions { align-items: flex-start; flex-direction: column; }

  .hero-visual {
    min-height: 500px;
    margin-top: 10px;
  }

  .phone-motion {
    width: min(70vw, 285px);
    right: -5%;
  }

  .phone-report {
    width: min(58vw, 235px);
    left: -4%;
  }

  .proof-rail { margin-top: 12px; }
  .proof-rail span { font-size: 0.78rem; }

  .process-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-heading p { margin: 0; }

  .process { padding-block: 68px; }

  .process-line {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-line::before {
    top: 22px;
    bottom: 22px;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-line li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .process-dot { margin: 0; }

  .range-sequence {
    gap: 6px;
    font-size: 0.65rem;
  }

  .waveform { gap: 3px; }

  .live-benefits {
    grid-template-columns: 1fr;
  }

  .range-visual { min-height: 480px; }
  .phone-live { right: auto; left: 50%; width: 255px; transform: translateX(-50%) rotate(2deg); }
  .range-distance { right: 3%; }

  .story-step,
  .story-reverse {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 56px;
  }

  .story-reverse .story-copy,
  .story-reverse .phone {
    order: initial;
  }

  .story-copy h3 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .phone-story { width: min(74vw, 270px); }
  .story-arc { top: 33%; height: 40%; }

  .checkpoint-strip {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
    padding-bottom: 64px;
  }

  .checkpoint-strip i { display: none; }

  .pricing-grid { gap: 52px; }
  .pricing-promise h2 strong { display: inline; margin-right: 6px; }
  .compare-head,
  .compare-row { grid-template-columns: 1fr 42px 42px; }

  .faq-list summary { min-height: 66px; gap: 18px; }
  .faq-list details p { margin-right: 10px; }

  .final-cta,
  .cta-grid { min-height: 740px; }
  .cta-copy h2 { max-width: 9ch; }
  .phone-cta { width: 260px; justify-self: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }

  .legal-footer .section-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.85rem; }
  .phone-report { left: -10%; }
  .phone-motion { right: -11%; }
  .range-sequence { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .range-sequence::after,
  .range-sequence span::after,
  .range-sequence strong::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual,
  .phone-cta,
  .story-step .phone {
    transform: none !important;
  }

  .arc-live {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .cta-arc path { stroke-dashoffset: 0; }
}
