/* ============================================================
   Rewir · Landing styles
   Tokens: design-system/tokens.css (loaded before this file).
   No raw hex / magic spacing here — extend the token file instead.
   ============================================================ */

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* sticky nav clearance for anchor jumps */
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  line-height: var(--lh-body);
  text-wrap: pretty;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  letter-spacing: var(--ls-heading);
  margin: 0;
  color: var(--color-heading);
  line-height: var(--lh-heading);
  text-wrap: balance;
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100%;
  z-index: var(--z-toast);
  background: var(--color-brand);
  color: var(--color-on-dark);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
}
.skip-link:focus-visible { top: var(--sp-4); }

/* Accent words inside headings — large-text-safe coral on light,
   soft coral on dark panels (both AA-large, see design-system/README.md). */
.accent-coral { color: var(--color-accent-display); }
.on-dark .accent-coral, .accent-coral.on-dark { color: var(--color-accent-on-dark); }

.section-lede {
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: var(--sp-4) 0 0;
}
.lede-dark {
  color: var(--color-on-dark-muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  max-width: 52ch;
  margin: var(--sp-4) 0 var(--sp-5);
}

/* ============================================================
   REVEAL ON SCROLL
   Content is fully visible without JS; html.js enables the
   entrance. Animates transform/opacity only; killed by the
   global reduced-motion rule in tokens.css.
   ============================================================ */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--dur-3) var(--ease-out),
    transform var(--dur-3) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   BUTTONS — full state set
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--tap-min);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  cursor: pointer;
  border: none;
  position: relative;
  transition:
    transform var(--dur-1) var(--ease-standard),
    box-shadow var(--dur-1) var(--ease-standard),
    background-color var(--dur-1) var(--ease-standard),
    border-color var(--dur-1) var(--ease-standard),
    color var(--dur-1) var(--ease-standard);
}
.btn-primary {
  background: var(--color-brand);
  color: var(--color-on-dark);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--color-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(31, 61, 52, 0.28);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-btn); }
.btn-secondary {
  background: var(--color-surface);
  color: var(--color-brand);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover { border-color: var(--sage-300); transform: translateY(-1px); }
.btn-secondary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--color-brand);
  padding-inline: var(--sp-4);
}
.btn-ghost:hover { color: var(--color-accent-text); }
.btn-ghost:hover .btn-arrow { transform: translateX(3px); }
.btn-arrow { transition: transform var(--dur-1) var(--ease-standard); }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}
.btn.is-loading { color: transparent; pointer-events: none; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  color: var(--color-on-dark);
  animation: btnSpin 600ms linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--dur-2) var(--ease-standard),
    border-color var(--dur-2) var(--ease-standard);
}
.nav.scrolled {
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--color-border);
}
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-3) var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-lg);
  color: var(--color-brand);
  letter-spacing: -0.02em;
  min-height: var(--tap-min);
}
.brand-mark {
  width: 40px; height: 40px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  padding: 6px; /* clearspace inside the pill ≈ mark width */
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  gap: var(--sp-5);
  margin-left: var(--sp-4);
}
.nav-links a {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  padding: var(--sp-2) 0;
  opacity: 0.85;
  transition: opacity var(--dur-1) var(--ease-standard);
}
.nav-links a:hover { opacity: 1; }
.nav-lang {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-pill);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-label);
  transition: color var(--dur-1) var(--ease-standard);
}
.nav-lang:hover { color: var(--color-text); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  min-height: var(--tap-min);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-pill);
  background: var(--color-brand);
  color: var(--color-on-dark);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--dur-1) var(--ease-standard),
    background-color var(--dur-1) var(--ease-standard);
}
.btn-nav:hover { transform: translateY(-1px); background: var(--color-brand-hover); }
.btn-nav:active { transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: var(--sp-6) 0 var(--sp-9);
  overflow: hidden;
}
.hex-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(166, 182, 138, 0.35) 0 80px, transparent 110px),
    radial-gradient(circle at 88% 12%, rgba(252, 111, 63, 0.14) 0 100px, transparent 150px),
    radial-gradient(circle at 95% 88%, rgba(169, 212, 218, 0.28) 0 120px, transparent 180px);
}
.hex-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'><polygon points='42,2 82,24 82,72 42,94 2,72 2,24' fill='none' stroke='%23A6B68A' stroke-opacity='0.18' stroke-width='1'/></svg>");
  background-size: 84px 96px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-7) var(--gutter) 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-5);
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-soft);
}
.hero h1 {
  font-size: var(--fs-disp);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin-bottom: var(--sp-5);
  max-width: 16ch;
}
.hero .lede {
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0 0 var(--sp-6);
}
.hero-cta {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.hero-promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  max-width: 540px;
}
.hp-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-xs);
  color: var(--color-text);
  line-height: var(--lh-tight);
}
.hp-item div { font-weight: var(--fw-semibold); }
/* Scoped: .hp-icon is also a span — see .strip-item note. */
.hp-item div span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: var(--fw-body);
  margin-top: var(--sp-1);
}
.hp-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--sage-100);
  color: var(--color-brand);
  display: grid;
  place-items: center;
}

/* Hero phone */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-phone {
  position: relative;
  width: 100%;
  max-width: 360px;
}
.hero-phone-frame {
  /* Device bezel: hardware black, matches the screenshots' own frame color. */
  position: relative;
  width: 100%;
  aspect-ratio: 1320 / 2868;
  background: var(--color-surface);
  border-radius: 48px;
  border: 8px solid #15201C;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(19, 32, 28, 0.18), 0 8px 16px rgba(19, 32, 28, 0.08);
  transform: rotate(-2deg);
  transition: transform var(--dur-3) var(--ease-standard);
}
.hero-phone:hover .hero-phone-frame { transform: rotate(0deg); }
.hero-phone-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-phone-small { max-width: 280px; margin-inline: auto; }

.float-chip {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border: 1px solid var(--color-border);
  z-index: var(--z-raised);
  max-width: 240px;
  transition: transform var(--dur-2) var(--ease-spring);
}
.float-chip:hover { transform: translateY(-3px); }
.float-chip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-xs);
  color: var(--color-brand);
}
/* Scoped: .fc-dot is also a span — see .strip-item note. */
.float-chip div span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.fc-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.fc-dot-coral { background: var(--coral-500); }
.fc-dot-sage  { background: var(--sage-300); }
.fc-dot-water { background: var(--water-300); }
.chip-1 { top: 8%; left: -48px; }
.chip-2 { top: 46%; right: -44px; }
.chip-3 { bottom: 7%; left: -36px; }

/* ============================================================
   STRIP — quiet capability band (not fake stats)
   ============================================================ */
.strip {
  background: var(--color-brand);
  color: var(--color-on-dark);
  padding: var(--sp-6) 0;
  --focus-color: var(--color-on-dark);
}
.strip-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.strip-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.strip-icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(251, 247, 242, 0.10);
  color: var(--sage-200);
  display: grid;
  place-items: center;
}
.strip-item div { min-width: 0; }
.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-lg);
  color: var(--color-on-dark);
  line-height: var(--lh-subhead);
}
/* Scoped to the text column — a bare ".strip-item span" would also hit
   .strip-icon (a span) and its display:block kills the grid centering. */
.strip-item div span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-on-dark-muted);
  margin-top: var(--sp-1);
  line-height: var(--lh-tight);
}

/* ============================================================
   PROMISE
   ============================================================ */
.promise { padding: var(--section-pad) 0 var(--sp-8); }
.promise-head {
  max-width: 760px;
  margin: 0 auto var(--sp-7);
  text-align: center;
}
.promise-head h2 { font-size: var(--fs-2xl); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.promise-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition:
    transform var(--dur-2) var(--ease-standard),
    box-shadow var(--dur-2) var(--ease-standard);
}
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.promise-card-coral { background: var(--coral-100); border-color: transparent; }
.promise-icon {
  width: 56px; height: 56px;
  background: var(--sage-100);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--color-brand);
}
.promise-card-coral .promise-icon { background: var(--color-surface); }
.promise-card h3 {
  font-size: var(--fs-lg);
  line-height: var(--lh-subhead);
}
.promise-card p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}

/* ============================================================
   GENERIC TWO-COL
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.two-col.reverse .two-col-left  { order: 2; }
.two-col.reverse .two-col-right { order: 1; }
.two-col h2 { font-size: var(--fs-2xl); }

/* ============================================================
   DISCOVER LOOP
   ============================================================ */
.discover {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 100%);
}
.loop-steps {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.loop-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--sp-4);
  align-items: flex-start;
}
.loop-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-on-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-sm);
}
.loop-step h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-1);
}
.loop-step p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}
.discover-art {
  position: relative;
  background: radial-gradient(circle at 50% 50%, var(--color-bg) 0%, transparent 70%);
  display: flex;
  justify-content: center;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission { padding: var(--section-pad) 0; }
.bullet-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.bullet-list li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--sage-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F3D34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4 10-10'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.bullet-list li strong { color: var(--color-text); font-weight: var(--fw-bold); }

.mission-card-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--color-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-2);
}
.m-eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--color-text-muted);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
}
.m-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: var(--sp-3);
  align-items: center;
  background: var(--color-bg);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--color-border-soft);
}
.m-card-primary {
  background: var(--color-accent-soft);
  border-color: var(--coral-200);
}
.m-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.m-icon-coral { background: var(--coral-500); }
.m-icon-water { background: var(--water-300); }
.m-icon-sage { background: var(--sage-100); }
.m-body { display: flex; flex-direction: column; gap: 2px; }
.m-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
}
.m-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--color-brand);
  line-height: var(--lh-subhead);
}
.m-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.m-progress {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-1);
  min-width: 80px;
}
.m-progress-bar {
  width: 70px;
  height: 6px;
  background: var(--green-50);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.m-progress-bar span {
  display: block;
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--r-pill);
}
.m-progress-text {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  font-variant-numeric: var(--num-tabular);
  color: var(--color-brand);
}

/* ============================================================
   GANG
   ============================================================ */
.gang {
  padding: var(--section-pad) 0;
  background: var(--sage-100);
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 253, 248, 0.6) 0 60%, transparent 70%);
}
.gang-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-7);
}
.gang-head h2 { font-size: var(--fs-2xl); }
.gang-head .section-lede { margin-inline: auto; }
.gang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.gang-illustration {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--color-border-soft);
  display: flex;
  justify-content: center;
}

/* Gang mock card */
.gang-mock {
  background: var(--color-surface);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-3);
}
.gang-mock-header { border-bottom: 1px solid var(--color-border); padding-bottom: var(--sp-4); }
.gang-mock-title {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  justify-content: space-between;
}
.gang-mock-title strong {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-lg);
  color: var(--color-brand);
}
.lock {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
}
.lock svg { flex: 0 0 auto; }
.gang-mock-event {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--color-accent-soft);
  border-radius: var(--r-sm);
}
.gang-mock-event-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.gang-mock-event-head strong {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-md);
  color: var(--color-brand);
}
.event-time {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
}
.event-meta {
  margin: var(--sp-1) 0 var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.event-rsvp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
}
.rsvp-counts { font-size: var(--fs-xs); font-weight: var(--fw-semibold); }
.c-go { color: var(--color-brand); }
.c-maybe { color: var(--color-text-muted); }
.rsvp-buttons { display: flex; gap: var(--sp-2); }
.rsvp-btn {
  flex: 1;
  min-height: var(--tap-min);
  padding: var(--sp-2) 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    border-color var(--dur-1) var(--ease-standard),
    color var(--dur-1) var(--ease-standard),
    transform var(--dur-1) var(--ease-standard);
}
.rsvp-btn:hover { border-color: var(--sage-300); color: var(--color-brand); }
.rsvp-btn:active { transform: scale(0.98); }
.rsvp-btn.rsvp-go {
  background: var(--color-brand);
  color: var(--color-on-dark);
  border-color: var(--color-brand);
}
.gang-mock-note {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  background: var(--sage-100);
  font-size: var(--fs-xs);
  color: var(--color-text-strong);
  line-height: 1.5;
}
.gang-mock-note p { margin: 0; }

/* ============================================================
   OBSERVE
   ============================================================ */
.observe { padding: var(--section-pad) 0; }
.observe-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.o-stat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
}
.o-icon {
  width: 48px; height: 48px;
  background: var(--sage-100);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--color-brand);
}
.o-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-md);
  color: var(--color-brand);
}
.o-stat p {
  margin: var(--sp-1) 0 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.observe-art { display: flex; justify-content: center; }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy { padding: var(--sp-8) 0 var(--section-pad); }
.privacy-card {
  background: var(--color-brand);
  color: var(--color-on-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  position: relative;
  overflow: hidden;
  --focus-color: var(--color-on-dark);
}
.privacy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(166, 182, 138, 0.18) 0 200px, transparent 280px);
  pointer-events: none;
}
.privacy-card h2 { font-size: var(--fs-2xl); }
.on-dark { color: var(--color-on-dark); }
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.privacy-list li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--color-on-dark-muted);
  line-height: var(--lh-body);
}
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 17px; height: 17px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DDE6CF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='11' width='18' height='11' rx='2'/><path d='M7 11V7a5 5 0 0110 0v4'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.privacy-art {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(166, 182, 138, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.p-radius {
  position: absolute;
  width: 90%; height: 90%;
  border: 2px dashed rgba(166, 182, 138, 0.5);
  border-radius: 50%;
}
.p-fog {
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(circle at 50% 50%, rgba(252, 248, 240, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.p-home {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--color-surface);
  display: grid;
  place-items: center;
  color: var(--color-brand);
  box-shadow: var(--shadow-3);
  z-index: var(--z-raised);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--color-bg-deep);
}
.pricing-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-7);
}
.pricing-head h2 { font-size: var(--fs-2xl); }
.pricing-head .section-lede { margin-inline: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  max-width: 920px;
  margin-inline: auto;
}
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
}
.price-card-featured {
  background: var(--color-brand);
  border-color: transparent;
  color: var(--color-on-dark);
  --focus-color: var(--color-on-dark);
}
.price-card-featured .price-name,
.price-card-featured .price-amount,
.price-card-featured .price-features li { color: var(--color-on-dark); }
.price-card-featured .price-features li strong { color: var(--color-on-dark); }
.price-card-featured .price-tag { color: var(--color-on-dark-muted); }
.price-card-featured .price-features li::before {
  background-color: var(--coral-400);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313201C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4 10-10'/></svg>");
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: var(--sp-6);
  background: var(--coral-400);
  color: var(--n-900);
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-xs);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-pill);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.price-name {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-xl);
  color: var(--color-brand);
}
.price-amount {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-xl);
  font-variant-numeric: var(--num-tabular);
  color: var(--color-brand);
  letter-spacing: -0.02em;
}
.price-amount .period {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
  margin-left: var(--sp-1);
}
.price-card-featured .price-amount .period { color: var(--color-on-dark-soft); }
.price-tag {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: var(--sp-2) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.price-features li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.5;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: var(--sage-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F3D34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4 10-10'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.price-features li strong { font-weight: var(--fw-bold); color: var(--color-brand); }
.price-card .btn { width: 100%; margin-top: var(--sp-2); }
/* Inverted CTA on the dark featured card — green-on-green has no presence. */
.price-card-featured .btn-primary {
  background: var(--color-on-dark);
  color: var(--color-brand);
  box-shadow: none;
}
.price-card-featured .btn-primary:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(5, 28, 22, 0.35);
}
.price-fine {
  font-size: var(--fs-xs);
  color: var(--color-on-dark-soft);
  text-align: center;
  margin-top: var(--sp-1);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-pad) 0; }
.faq-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-7);
}
.faq-head h2 { font-size: var(--fs-2xl); }
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  padding: var(--sp-5);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B23F14' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--dur-2) var(--ease-standard);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-body {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}
.faq-body p { margin: 0; }
.faq-body strong { color: var(--color-text); font-weight: var(--fw-bold); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: var(--sp-8) 0 var(--section-pad); }
.final-card {
  background: linear-gradient(135deg, var(--coral-50) 0%, var(--sage-100) 100%);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-7) var(--sp-7) 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-6);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.final-illustration {
  width: 100%;
  max-width: 460px;
  height: auto;
  margin-left: -20px;
  /* The artwork ships on its own off-white paper; feather it into the
     card gradient so the rectangle edge never shows. */
  mask-image: radial-gradient(115% 115% at 42% 46%, #000 52%, transparent 76%);
  -webkit-mask-image: radial-gradient(115% 115% at 42% 46%, #000 52%, transparent 76%);
}
.final-text h2 { font-size: var(--fs-3xl); line-height: 1.04; }
.final-text p {
  margin: var(--sp-4) 0 var(--sp-6);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--color-text);
  max-width: 42ch;
}
.final-buttons {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  flex-wrap: wrap;
}
.store-badge-link {
  display: inline-flex;
  line-height: 0;
  border-radius: var(--r-sm);
  transition: transform var(--dur-1) var(--ease-standard);
}
.store-badge-link:hover { transform: translateY(-2px); }
.store-badge { height: 56px; width: auto; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--color-brand);
  color: var(--color-on-dark-muted);
  padding: var(--sp-8) 0 var(--sp-5);
  --focus-color: var(--color-on-dark);
}
.brand-light { color: var(--color-on-dark); }
.foot-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(251, 247, 242, 0.1);
}
.foot-brand p {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--color-on-dark-soft);
  line-height: var(--lh-body);
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.foot-cols h5 {
  color: var(--color-on-dark);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.foot-cols a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  font-size: var(--fs-sm);
  color: var(--color-on-dark-muted);
  transition: color var(--dur-1) var(--ease-standard);
}
.foot-cols a { display: flex; }
.foot-cols a:hover { color: var(--color-on-dark); }
.foot-bottom {
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--color-on-dark-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: var(--sp-6); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding-top: var(--sp-5); }
  .hero h1 { max-width: none; }
  .hero-phone { max-width: 300px; margin-inline: auto; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: var(--sp-6); }
  .two-col.reverse .two-col-left { order: 1; }
  .two-col.reverse .two-col-right { order: 2; }
  .gang-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .pricing-grid { grid-template-columns: 1fr; }
  .privacy-card, .final-card { grid-template-columns: 1fr; padding: var(--sp-6); }
  .privacy-art { max-width: 320px; margin-inline: auto; }
  .final-illustration { margin: 0; max-width: 320px; }
  .foot-inner { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
}
@media (max-width: 720px) {
  /* The hero chips annotate the phone on wide screens; below this width
     they would cover it — the strip right below carries the same content. */
  .float-chip { display: none; }
  .hero-promise { grid-template-columns: 1fr; gap: var(--sp-3); }
}
@media (max-width: 640px) {
  .promise-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; gap: var(--sp-4); }
  .foot-cols { grid-template-columns: 1fr; gap: var(--sp-5); }
  .btn-nav { padding-inline: var(--sp-4); }
}

/* ============================================================
   V2 LAYER — fog-of-war hero, connected bands, scrollytelling,
   pricing toggle, drawn final scene. (Merged from landing-v2.css
   when v2 became the main landing, 2026-06-10.)
   ============================================================ */
/* ============================================================
   Rewir · Landing v2 layer
   Loads AFTER design-system/tokens.css + landing.css.
   Adds: fog-of-war hero, connected (overlapping) section bands,
   scrollytelling discovery loop, pricing period toggle, drawn
   final scene. Everything animates transform/opacity only and
   dies under the global reduced-motion kill switch.
   ============================================================ */

/* ------------------------------------------------------------
   Nav: reading-progress hairline
   ------------------------------------------------------------ */
.nav-progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: var(--color-accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* ------------------------------------------------------------
   HERO v2 — fog-of-war canvas behind, choreographed load
   ------------------------------------------------------------ */
.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: var(--sp-6) 0 var(--sp-9);
}
.fog-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-v2 .hero-inner { position: relative; }
.fog-hint {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.fog-hint svg { flex: 0 0 auto; color: var(--sage-400); }
@media (hover: none) { .fog-hint { display: none; } }

/* Load choreography — JS-gated so no-JS users see everything. */
html.js .hero-v2 .eyebrow,
html.js .hero-v2 h1,
html.js .hero-v2 .lede,
html.js .hero-v2 .hero-cta,
html.js .hero-v2 .hero-promise,
html.js .hero-v2 .fog-hint {
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise var(--dur-3) var(--ease-out) both;
}
html.js .hero-v2 h1            { animation-delay: 80ms; }
html.js .hero-v2 .lede         { animation-delay: 160ms; }
html.js .hero-v2 .hero-cta     { animation-delay: 240ms; }
html.js .hero-v2 .hero-promise { animation-delay: 320ms; }
html.js .hero-v2 .fog-hint     { animation-delay: 400ms; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

html.js .hero-v2 .hero-phone-frame {
  opacity: 0;
  transform: translateY(28px) rotate(-6deg);
  animation: phoneSettle 560ms var(--ease-out) 150ms both;
}
@keyframes phoneSettle { to { opacity: 1; transform: translateY(0) rotate(-2deg); } }
html.js .hero-v2 .float-chip {
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  animation: chipPop 420ms var(--ease-spring) both;
}
html.js .hero-v2 .chip-1 { animation-delay: 520ms; }
html.js .hero-v2 .chip-2 { animation-delay: 640ms; }
html.js .hero-v2 .chip-3 { animation-delay: 760ms; }
@keyframes chipPop { to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------
   Connected bands — sections overlap the previous one like
   layered cards; the page reads as one continuous trail.
   ------------------------------------------------------------ */
.band {
  position: relative;
  z-index: var(--band-z, 1); /* set inline per section, ascending down the page */
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  margin-top: calc(-1 * var(--r-lg));
}
.band-strip { background: var(--color-brand); }
.band-cream { background: var(--color-bg); }
.band-sage  { background: var(--sage-100); }
.band-deep  { background: var(--color-bg-deep); }

.strip.band-strip { padding-top: calc(var(--sp-6) + var(--r-lg)); padding-bottom: calc(var(--sp-6) + var(--r-lg)); }

/* ------------------------------------------------------------
   SCROLLYTELLING — sticky phone + steps + drawn trail
   ------------------------------------------------------------ */
.scrolly { padding-bottom: var(--section-pad); }
.scrolly-head { max-width: 720px; margin-bottom: var(--sp-7); }
.scrolly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.scrolly-phone {
  position: sticky;
  top: 96px;
  display: flex;
  justify-content: center;
}
.scrolly-phone .hero-phone { max-width: 300px; }
.scrolly-phone .hero-phone-frame { transform: none; }
.scrolly-screens { position: absolute; inset: 0; }
.scrolly-screens img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease-standard);
}
.scrolly-screens img.is-active { opacity: 1; }

.scrolly-steps {
  position: relative;
  padding-left: var(--sp-7);
}
/* The trail: a quiet track + a coral line that draws with scroll. */
.scrolly-track, .scrolly-line {
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: var(--r-pill);
}
.scrolly-track { background: var(--color-border); }
.scrolly-line {
  background: var(--color-accent);
  transform-origin: 50% 0;
  transform: scaleY(0);
}
.scrolly-step {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
}
.scrolly-step:last-child { min-height: 52vh; }
.step-node {
  position: absolute;
  left: calc(-1 * var(--sp-7) + 2px);
  top: 50%;
  width: 20px; height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  display: grid;
  place-items: center;
  transition:
    border-color var(--dur-2) var(--ease-standard),
    background-color var(--dur-2) var(--ease-standard),
    transform var(--dur-2) var(--ease-spring);
}
.step-node::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background-color var(--dur-2) var(--ease-standard);
}
.scrolly-step.is-active .step-node {
  border-color: var(--color-accent);
  transform: scale(1.15);
}
.scrolly-step.is-active .step-node::after { background: var(--color-accent); }
.scrolly-step .step-kicker {
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--dur-2) var(--ease-standard);
}
.scrolly-step.is-active .step-kicker { color: var(--color-accent-text); }
.scrolly-step h3 { font-size: var(--fs-xl); }
.scrolly-step p {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  max-width: 46ch;
}
.scrolly-step { opacity: 0.45; transition: opacity var(--dur-3) var(--ease-standard); }
.scrolly-step.is-active { opacity: 1; }

/* ------------------------------------------------------------
   PRICING — period toggle
   ------------------------------------------------------------ */
.period-toggle {
  display: inline-flex;
  gap: var(--sp-1);
  margin: var(--sp-5) auto 0;
  padding: var(--sp-1);
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
}
.period-toggle button {
  min-height: 40px;
  padding: var(--sp-2) var(--sp-5);
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    background-color var(--dur-2) var(--ease-standard),
    color var(--dur-2) var(--ease-standard);
}
.period-toggle button[aria-pressed="true"] {
  background: var(--color-brand);
  color: var(--color-on-dark);
}
.pricing[data-period="yearly"] .only-monthly { display: none; }
.pricing[data-period="monthly"] .only-yearly { display: none; }
.price-amount { display: inline-block; }
html.js .price-amount.swap { animation: amountSwap var(--dur-2) var(--ease-out); }
@keyframes amountSwap {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   FAQ — smooth open/close where the platform allows it
   ------------------------------------------------------------ */
@supports (interpolate-size: allow-keywords) {
  .faq { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    height: 0;
    overflow: clip;
    transition:
      height var(--dur-3) var(--ease-standard),
      content-visibility var(--dur-3) allow-discrete;
  }
  .faq-item[open]::details-content { height: auto; }
}

/* ------------------------------------------------------------
   FINAL v2 — dark panel with a scene drawn from brand
   primitives (no raster artwork, nothing to clash with).
   ------------------------------------------------------------ */
.final-v2 { padding: var(--sp-8) 0 var(--section-pad); }
.final-v2-card {
  background: var(--color-brand);
  color: var(--color-on-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  position: relative;
  overflow: hidden;
  --focus-color: var(--color-on-dark);
}
.final-v2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 88%, rgba(166, 182, 138, 0.16) 0 220px, transparent 300px);
  pointer-events: none;
}
.final-v2-card h2 { font-size: var(--fs-3xl); line-height: 1.05; }
.final-v2-card .final-copy {
  margin: var(--sp-4) 0 var(--sp-6);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--color-on-dark-muted);
  max-width: 44ch;
}
.final-scene { position: relative; }
.final-scene svg { width: 100%; height: auto; display: block; }
/* The walk route draws itself when the panel scrolls into view. */
.final-scene .scene-route {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1100ms var(--ease-standard) 200ms;
}
.final-v2-card.is-visible .scene-route { stroke-dashoffset: 0; }
.final-scene .scene-pin {
  opacity: 0;
  transform: translateY(-6px);
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition:
    opacity var(--dur-2) var(--ease-out) 1150ms,
    transform var(--dur-3) var(--ease-spring) 1150ms;
}
.final-v2-card.is-visible .scene-pin { opacity: 1; transform: none; }
.final-scene .scene-hex {
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease-standard);
}
.final-v2-card.is-visible .scene-hex { opacity: 1; }
.final-v2-card.is-visible .scene-hex:nth-of-type(1) { transition-delay: 150ms; }
.final-v2-card.is-visible .scene-hex:nth-of-type(2) { transition-delay: 260ms; }
.final-v2-card.is-visible .scene-hex:nth-of-type(3) { transition-delay: 370ms; }
.final-v2-card.is-visible .scene-hex:nth-of-type(4) { transition-delay: 480ms; }
.final-v2-card.is-visible .scene-hex:nth-of-type(5) { transition-delay: 590ms; }
.final-v2-card.is-visible .scene-hex:nth-of-type(6) { transition-delay: 700ms; }
.final-v2-card.is-visible .scene-hex:nth-of-type(7) { transition-delay: 810ms; }
.final-v2-card.is-visible .scene-hex:nth-of-type(8) { transition-delay: 920ms; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .scrolly-grid { gap: var(--sp-6); }
}
@media (max-width: 860px) {
  .scrolly-grid { grid-template-columns: 1fr; }
  .scrolly-phone {
    position: sticky;
    top: 72px;
    z-index: 2;
  }
  .scrolly-phone .hero-phone { max-width: 200px; }
  .scrolly-step { min-height: 56vh; }
  .final-v2-card { grid-template-columns: 1fr; padding: var(--sp-6); }
  .final-scene { max-width: 360px; margin-inline: auto; }
  .band { border-radius: var(--r-md) var(--r-md) 0 0; margin-top: calc(-1 * var(--r-md)); }
}
@media (max-width: 640px) {
  .scrolly-phone .hero-phone { max-width: 170px; }
  .scrolly-step { min-height: 50vh; }
}
