/* ============================================================
   Wend marketing site — shared stylesheet
   Design tokens ported from DesignSystem.swift via tokens.jsx
   Palette: classic (parchment + forest + terra)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --forest: #1C3D2E;
  --forest-light: #2A5A42;
  --forest-deep: #0F2418;
  --terra: #C4622D;
  --terra-light: #E07848;
  --amber: #D4920A;
  --amber-light: #F0AE2A;

  /* Backgrounds */
  --parchment: #F4EFE4;
  --parch-dark: #EDE7D8;
  --card: #FFFFFF;
  --white: #FDFAF5;

  /* Ink */
  --text: #1A1810;
  --text-muted: #7A7060;
  --brown: #7A5C3A;
  --sand: #C8B89A;
  --hair: #E0D8CA;

  /* Accent (single, ship value) */
  --accent: var(--terra);

  /* Type */
  --display: 'Playfair Display', Georgia, serif;
  --ui: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Shadows */
  --shadow-card: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-panel: 0 18px 40px rgba(15,36,24,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-hero: 0 30px 60px rgba(0,0,0,0.4);
  --shadow-phone: 0 30px 80px rgba(15,36,24,0.28), 0 8px 20px rgba(15,36,24,0.18);

  /* Layout */
  --pad-x: 56px;
  --max-w: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }

/* ---------- Base ---------- */
body {
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---------- Type primitives ---------- */
.display      { font-family: var(--display); font-weight: 700; letter-spacing: -1.4px; line-height: 1; }
.display-xxl  { font-size: 132px; line-height: .9; letter-spacing: -3.5px; font-weight: 400; }
.display-xl   { font-size: 96px;  line-height: .96; letter-spacing: -2.5px; font-weight: 700; }
.display-lg   { font-size: 84px;  line-height: 1;   letter-spacing: -2px; font-weight: 400; }
.display-md   { font-size: 64px;  line-height: 1;   letter-spacing: -1.4px; font-weight: 400; }
.display-sm   { font-size: 56px;  line-height: 1.02; letter-spacing: -1.4px; font-weight: 400; font-style: italic; }
.display-xs   { font-size: 32px;  line-height: 1.1; letter-spacing: -.5px; font-weight: 700; }
.display-card { font-size: 22px;  line-height: 1.1; letter-spacing: -.3px; font-weight: 700; }
.italic       { font-style: italic; }
.serif-italic { font-family: var(--display); font-style: italic; }

.body-lg { font-size: 19px; line-height: 1.55; }
.body    { font-size: 17px; line-height: 1.55; }
.body-sm { font-size: 14px; line-height: 1.5; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .25;
  max-width: 60px;
}
.eyebrow.no-rule::after { display: none; }

.micro { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; }
.nano  { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: 120px var(--pad-x); }
.section--tight { padding: 80px var(--pad-x); }
.section + .section { border-top: 1px solid var(--hair); }
.section--dark {
  background: var(--forest);
  color: var(--white);
  border-top: none !important;
}
.section--dark .eyebrow { color: var(--amber-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, color 150ms ease, border-color 150ms ease;
  text-align: center;
}
.btn--primary    { background: var(--accent); color: var(--white); }
.btn--primary:hover  { background: color-mix(in oklch, var(--accent) 92%, black); }
.btn--ghost      { background: transparent; color: var(--text); border: 1px solid rgba(26,24,16,.2); }
.btn--ghost:hover    { border-color: var(--text); }
.btn--ghost.on-dark  { color: var(--white); border-color: rgba(255,255,255,.25); }
.btn--ghost.on-dark:hover { border-color: var(--white); }
.btn--lg         { padding: 12px 22px; font-size: 14px; }

/* App store button (only Apple — Wend is iOS-only) */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--text);
  color: var(--white);
  min-width: 170px;
  transition: transform 150ms ease, background 150ms ease;
}
.store-btn:hover { transform: translateY(-1px); background: #000; }
.store-btn svg { flex-shrink: 0; }
.store-btn .store-btn__text { display: flex; flex-direction: column; line-height: 1.05; }
.store-btn .store-btn__sub  { font-size: 9px; font-weight: 500; letter-spacing: .4px; opacity: .7; text-transform: none; }
.store-btn .store-btn__main { font-size: 15px; font-weight: 600; letter-spacing: -.2px; }
.store-btn.on-dark { background: var(--white); color: var(--text); }

.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- NavBar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: var(--parchment);
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.nav.is-scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 4px 16px rgba(15,36,24,.05);
  border-bottom-color: var(--hair);
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__wordmark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -.5px;
  line-height: 1;
  color: var(--text);
}
.nav__links { display: flex; align-items: center; gap: 28px; font-family: var(--ui); font-size: 13px; font-weight: 500; }
.nav__links a { color: var(--text-muted); transition: color 150ms ease; }
.nav__links a:hover { color: var(--text); }
.nav__cta { white-space: nowrap; }

/* ---------- Logo mark ---------- */
.logo-mark {
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- TopoLines decorative bg ---------- */
.topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .9;
}
@media (max-width: 768px) {
  .topo { display: none; }
}

/* ---------- SealedNote ---------- */
.sealed-note {
  background: var(--parchment);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0;
  max-width: 540px;
}
.sealed-note__kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.sealed-note__body {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--forest);
}
.sealed-note__attribution {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--accent);
  margin-top: 8px;
}

/* ---------- PhoneFrame ---------- */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 280 / 580;
  border-radius: 38px;
  background: #0c0c0c;
  padding: 8px;
  box-shadow: var(--shadow-phone);
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--parchment);
  position: relative;
}
.phone__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  border-radius: 14px;
  background: #0c0c0c;
  z-index: 5;
}
.phone--w260 { width: 260px; }
.phone--w300 { width: 300px; }

/* Phone screen content stubs (placeholder — replace with real PNG exports) */
.screen-stub {
  position: absolute;
  inset: 0;
  padding: 36px 18px 18px;
  display: flex;
  flex-direction: column;
  font-family: var(--ui);
}
.screen-stub__kicker {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--accent);
  text-transform: uppercase;
}
.screen-stub__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.5px;
  line-height: 1.05;
  color: var(--text);
  margin-top: 6px;
}
.screen-stub__title em { font-style: italic; font-weight: 400; color: var(--accent); }
.screen-stub__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--brown);
  margin-top: 6px;
  line-height: 1.4;
}
.screen-stub__divider { height: 1px; background: var(--hair); margin: 14px 0 10px; }
.screen-stub__row {
  display: flex; align-items: flex-start; gap: 10px; padding: 8px 0;
  border-bottom: 1px solid rgba(224,216,202,.6);
  font-size: 11px; color: var(--text);
}
.screen-stub__row:last-child { border-bottom: none; }
.screen-stub__time {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: .8px;
  width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
}
.screen-stub__row-body { flex: 1; line-height: 1.35; }
.screen-stub__row-body strong { font-weight: 600; }
.screen-stub__row-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 10px;
  color: var(--brown);
  margin-top: 2px;
  line-height: 1.3;
}

/* ============================================================
   App UI mockups — recreations of in-app surfaces
   Sized for phone-screen widths (~262px content width inside frame)
   Tokens match DesignSystem.swift exactly.
   ============================================================ */

.app-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--parchment);
  overflow: hidden;
}

/* Stretchy header photo (290pt in app — proportional in mockup) */
.app-hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 280 / 200;
  background: var(--sand);
  flex-shrink: 0;
  overflow: hidden;
}
.app-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.app-hero-photo__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,36,24,.45));
  pointer-events: none;
}
.app-hero-photo__back {
  position: absolute; top: 12px; left: 12px;
  width: 28px; height: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.app-hero-photo__save {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--terra);
}
.app-hero-photo__caption {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  color: var(--white);
}
.app-hero-photo__country {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: .9;
}
.app-hero-photo__city {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.6px;
  margin-top: 3px;
}

/* Fact pills row */
.app-fact-pills {
  display: flex;
  gap: 6px;
  padding: 10px 14px 10px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--hair);
}
.app-fact-pills::-webkit-scrollbar { display: none; }
.app-fact-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--parch-dark);
  border: 0.5px solid var(--hair);
  border-radius: 999px;
  padding: 5px 11px;
  align-items: center;
  min-width: 60px;
}
.app-fact-pill__label {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.app-fact-pill__value {
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.1px;
  line-height: 1.2;
  margin-top: 1px;
}

/* Editorial overview card */
.app-overview {
  margin: 10px 14px 0;
  padding: 12px 14px;
  background: var(--card);
  border-radius: 12px;
  border: 0.5px solid var(--hair);
}
.app-overview__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.3px;
  color: var(--text);
  line-height: 1.1;
}
.app-overview__title em { font-style: italic; font-weight: 400; color: var(--terra); }
.app-overview__body {
  font-family: var(--ui);
  font-weight: 300;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text);
  margin-top: 6px;
}

/* 6-tab pill bar (matches DestinationDetail picker) */
.app-tabs {
  display: flex;
  gap: 5px;
  padding: 12px 14px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.app-tabs::-webkit-scrollbar { display: none; }
.app-tab {
  flex-shrink: 0;
  font-family: var(--ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: -.1px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 0.5px solid var(--hair);
  color: var(--text);
  background: transparent;
  white-space: nowrap;
}
.app-tab--active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  font-weight: 600;
}

/* Section eyebrow inside an app screen */
.app-eyebrow {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--terra);
  padding: 12px 14px 4px;
}

/* Neighbourhood quick pick card */
.app-nb-card {
  display: flex;
  margin: 6px 14px 10px;
  background: var(--card);
  border-radius: 16px;
  border: 0.5px solid var(--hair);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.app-nb-card__photo {
  width: 84px;
  flex-shrink: 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.app-nb-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.app-nb-card__body { padding: 10px 12px; flex: 1; min-width: 0; }
.app-nb-card__name {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.1px;
}
.app-nb-card__vibe {
  font-family: var(--ui);
  font-weight: 300;
  font-size: 10px;
  line-height: 1.4;
  color: var(--text);
  margin-top: 3px;
}
.app-nb-card__personas {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.app-nb-card__persona {
  font-family: var(--ui);
  font-size: 8.5px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 999px;
  border: 0.5px solid var(--hair);
  color: var(--text);
  background: var(--parchment);
}

/* Featured highlight ("DON'T MISS") */
.app-featured {
  margin: 6px 14px 10px;
  padding: 12px 14px;
  background: var(--card);
  border-radius: 16px;
  border: 0.5px solid rgba(212,146,10,.3);
  border-left: 3px solid var(--amber);
}
.app-featured__eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--amber);
}
.app-featured__eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--amber);
}
.app-featured__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.3px;
  color: var(--text);
  margin-top: 5px;
  line-height: 1.15;
}
.app-featured__body {
  font-family: var(--ui);
  font-weight: 300;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--text);
  margin-top: 5px;
}

/* Featured eat ("EAT THIS FIRST") */
.app-eat {
  margin: 6px 14px 14px;
  padding: 12px 14px;
  background: var(--card);
  border-radius: 16px;
  border: 0.5px solid var(--hair);
  border-left: 3px solid var(--terra);
}
.app-eat__eyebrow {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--terra);
}
.app-eat__name {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-top: 4px;
  line-height: 1.2;
}
.app-eat__atmosphere {
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  color: var(--brown);
  margin-top: 4px;
  line-height: 1.4;
}
.app-eat__order {
  font-family: var(--ui);
  font-weight: 300;
  font-size: 10.5px;
  color: var(--text);
  margin-top: 6px;
  line-height: 1.45;
}

/* ============================================================
   Standalone surfaces (used as proof-points outside phone frames)
   ============================================================ */

/* Field Note dispatch card (FieldNoteCard recreation, full-size) */
.field-note-card {
  background: var(--card);
  border-radius: 20px;
  border: 0.5px solid var(--hair);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15,36,24,.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.field-note-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,36,24,.10);
}
.field-note-card__photo {
  aspect-ratio: 16 / 10;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.field-note-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.field-note-card__body {
  padding: 18px 22px 20px;
}
.field-note-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.field-note-card__eyebrow .terra { color: var(--terra); }
.field-note-card__eyebrow .divider {
  display: inline-block;
  width: 10px;
  height: 1px;
  background: var(--sand);
  vertical-align: middle;
}
.field-note-card__eyebrow .muted { color: var(--text-muted); }
.field-note-card__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.3px;
  color: var(--text);
  margin-top: 12px;
}
.field-note-card__dek {
  font-family: var(--ui);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin-top: 12px;
}
.field-note-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}
.field-note-card__avatar {
  width: 24px; height: 24px;
  border-radius: 12px;
  background: var(--brown);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.field-note-card__author-text {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--text-muted);
}
.field-note-card__author-text strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 4px;
}

/* Standalone "DON'T MISS" highlight card — bigger version of in-app one */
.lg-featured {
  background: var(--card);
  border-radius: 20px;
  border: 0.5px solid var(--hair);
  border-left: 4px solid var(--amber);
  padding: 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(15,36,24,.06);
}
.lg-featured__eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
}
.lg-featured__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--amber);
}
.lg-featured__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.5px;
  color: var(--text);
  margin-top: 8px;
  line-height: 1.1;
}
.lg-featured__body {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-top: 14px;
}
.lg-featured__why {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--brown);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}

/* Standalone sealed note — refined for proof gallery */
.sealed-note-large {
  background: var(--parchment);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--terra);
  padding: 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sealed-note-large__kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--terra);
}
.sealed-note-large__body {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--forest);
  margin-top: 16px;
  flex: 1;
}
.sealed-note-large__attribution {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--text-muted);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sealed-note-large__attribution .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--sand);
  vertical-align: middle;
}

/* Big phone for hero — wider, taller */
.phone--large {
  width: 360px;
  aspect-ratio: 360 / 750;
}

/* Hero re-layout for single big phone */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  padding: 32px var(--pad-x) 100px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 720px;
}
.hero-grid .phone {
  margin-left: auto;
}

@media (max-width: 1199px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; padding-bottom: 80px; }
  .phone--large { width: 320px; margin: 0 auto; }
  .hero-grid .phone { margin: 0 auto; }
}

/* Section: gallery of proof points (3-up) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 1199px) { .proof-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Section header pattern (eyebrow + big heading + lede) */
.section-head {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: end;
}
.section-head__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -1.4px;
  color: var(--text);
  margin-top: 18px;
}
.section-head__title em { font-style: italic; }
.section-head__lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--brown);
}
@media (max-width: 1199px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section-head__title { font-size: 48px; }
}
@media (max-width: 768px) {
  .section-head__title { font-size: 36px; letter-spacing: -.8px; }
}

/* ---------- Photo-led phone screens (magazine treatment) ---------- */
.screen-photo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--parchment);
}
.screen-photo__hero {
  position: relative;
  width: 100%;
  height: 58%;
  background: var(--sand);
  overflow: hidden;
  flex-shrink: 0;
}
.screen-photo__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.screen-photo__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 14px 12px;
  background: linear-gradient(180deg, rgba(15,36,24,0) 35%, rgba(15,36,24,.6) 80%, rgba(15,36,24,.85) 100%);
  color: var(--white);
}
.screen-photo--full .screen-photo__hero { height: 100%; }
.screen-photo--full .screen-photo__hero-overlay { padding: 32px 16px 22px; }
.screen-photo__kicker {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber-light);
  opacity: .95;
}
.screen-photo__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.04;
  letter-spacing: -.3px;
  margin-top: 4px;
  color: var(--white);
}
.screen-photo--full .screen-photo__title { font-size: 22px; }
.screen-photo__title em { font-style: italic; font-weight: 400; color: var(--amber-light); }
.screen-photo__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  line-height: 1.35;
  margin-top: 6px;
  opacity: .9;
}
.screen-photo__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  background: var(--parchment);
  overflow: hidden;
}
.screen-photo__row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(224,216,202,.55);
}
.screen-photo__row:last-child { border-bottom: none; }
.screen-photo__row-time {
  font-family: var(--mono);
  font-size: 8.5px;
  color: var(--text-muted);
  letter-spacing: .6px;
  width: 32px;
  flex-shrink: 0;
}
.screen-photo__row-thumb {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sand);
}
.screen-photo__row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.screen-photo__row-text { flex: 1; min-width: 0; line-height: 1.2; }
.screen-photo__row-place {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: -.1px;
  color: var(--text);
}
.screen-photo__row-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 9.5px;
  color: var(--brown);
  margin-top: 1px;
  line-height: 1.25;
}
.screen-photo__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.screen-photo__chip {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,98,45,.12);
  padding: 3px 7px;
  border-radius: 999px;
}
.screen-photo__avatar {
  position: absolute;
  bottom: -22px;
  left: 14px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: var(--terra);
  border: 3px solid var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.screen-photo__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.3px;
  color: var(--text);
  margin-top: 32px;
}
.screen-photo__name-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  color: var(--brown);
  margin-top: 2px;
  line-height: 1.3;
}
.screen-photo__detail-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(224,216,202,.55);
  font-family: var(--ui);
  font-size: 10px;
  color: var(--text);
}
.screen-photo__detail-row:last-child { border-bottom: none; }
.screen-photo__detail-label {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.screen-photo__detail-value {
  font-family: var(--display);
  font-style: italic;
  font-size: 10.5px;
  color: var(--text);
  text-align: right;
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  padding-bottom: 100px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px var(--pad-x) 0;
  align-items: center;
  min-height: 700px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(196, 98, 45, .12);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__pill-dot { width: 6px; height: 6px; border-radius: 3px; background: var(--accent); }
.hero__pill-text {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 96px;
  line-height: .96;
  margin: 0;
  letter-spacing: -2.5px;
  color: var(--text);
}
.hero__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero__lead {
  font-family: var(--ui);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 480px;
  margin-top: 28px;
}
.hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust { margin-top: 36px; display: flex; gap: 28px; align-items: center; }
.hero__trust-stack { display: flex; }
.hero__trust-stack > span {
  width: 32px; height: 32px; border-radius: 16px;
  border: 2px solid var(--parchment);
}
.hero__trust-stack > span + span { margin-left: -8px; }
.hero__trust-text-line1 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
}
.hero__trust-text-line2 {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Phone stage — three overlapping phones */
.phone-stage {
  position: relative;
  height: 720px;
}
.phone-stage__halo {
  position: absolute;
  inset: 40px;
  background: radial-gradient(circle at 50% 40%, rgba(196,98,45,.18), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.phone-stage__phone--left   { position: absolute; top: 60px; left: -20px; transform: rotate(-6deg); z-index: 1; }
.phone-stage__phone--center { position: absolute; top: 0;     left: 130px; z-index: 3; }
.phone-stage__phone--right  { position: absolute; top: 80px; right: -10px; transform: rotate(5deg); z-index: 2; }

/* ---------- Press strip ---------- */
.press {
  padding: 32px var(--pad-x);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--parchment);
}
.press__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.press__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--text-muted);
  text-transform: uppercase;
  flex-shrink: 0;
}
.press__logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-muted);
  letter-spacing: -.3px;
}
.press__logo--italic { font-style: italic; }

/* ---------- Feature grid ---------- */
.features__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.features__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  margin-top: 20px;
  letter-spacing: -1.4px;
  color: var(--text);
}
.features__heading em { font-style: italic; }
.features__intro {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--brown);
  max-width: 360px;
  text-align: right;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  min-height: 280px;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.feature-card--hero { grid-column: span 3; min-height: 320px; }
.feature-card--last { grid-column: span 3; }
.feature-card--mid  { grid-column: span 2; }
.feature-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--accent);
  text-transform: uppercase;
}
.feature-card__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.5px;
  line-height: 1.1;
  margin-top: 14px;
}
.feature-card--hero .feature-card__title { font-size: 32px; }
.feature-card__body {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--brown);
  line-height: 1.45;
  margin-top: 10px;
  max-width: 360px;
}
.feature-card--hero .feature-card__body { font-size: 17px; }
.feature-card__glyph {
  align-self: flex-end;
  margin-top: 16px;
  opacity: .9;
}

/* ---------- Compare table (dark forest panel) ---------- */
.compare__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.compare__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  margin-top: 20px;
  letter-spacing: -1.4px;
  color: var(--white);
}
.compare__heading em { font-style: italic; color: var(--accent); }
.compare__lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(253,250,245,.75);
  margin-top: 24px;
  max-width: 420px;
}
.compare__rows {
  background: rgba(253,250,245,.04);
  border-radius: 4px;
  border: 1px solid rgba(253,250,245,.08);
  padding: 4px 0;
}
.compare__row {
  display: grid;
  grid-template-columns: 32px 1fr 1fr;
  gap: 16px;
  padding: 18px 24px;
  align-items: center;
}
.compare__row + .compare__row {
  border-top: 1px solid rgba(253,250,245,.08);
}
.compare__check {
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compare__pos {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.compare__neg {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: rgba(253,250,245,.45);
}

/* ---------- Final CTA (centered) ---------- */
.final-cta {
  padding: 120px var(--pad-x);
  background: var(--parchment);
  text-align: center;
  border-top: 1px solid var(--hair);
}
.final-cta__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: 84px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto;
}
.final-cta__heading em { font-style: italic; color: var(--accent); }
.final-cta__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.final-cta__small {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ---------- How It Works hero ---------- */
.hiw-hero {
  padding: 60px var(--pad-x) 80px;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.hiw-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}
.hiw-hero__rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hiw-hero__rule .micro:first-child { color: var(--accent); }
.hiw-hero__rule .micro:last-child  { color: var(--text-muted); }
.hiw-hero__rule .line {
  height: 1px;
  flex: 1;
  background: var(--hair);
  max-width: 80px;
}
.hiw-hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 96px;
  line-height: .96;
  margin: 0;
  letter-spacing: -2.5px;
  color: var(--text);
}
.hiw-hero__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.hiw-hero__lead {
  font-family: var(--ui);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 580px;
  margin-top: 28px;
}

/* ---------- HIW Step rows ---------- */
.step {
  padding: 120px var(--pad-x);
  background: var(--parchment);
  border-top: 1px solid var(--hair);
}
.step__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.step--reverse .step__inner { grid-template-columns: 320px 1fr; }
.step__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.step__halo {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(196,98,45,.13), transparent 60%);
  pointer-events: none;
}
.step__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.step__numeral {
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}
.step__kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.step__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.02;
  margin: 0;
  letter-spacing: -1.4px;
  color: var(--text);
  font-style: italic;
}
.step__body {
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 540px;
}
.step__detail {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
}
.step__detail li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--ui);
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.step__detail-num {
  width: 16px;
  padding-top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.step .sealed-note { margin-top: 28px; }

/* ---------- FAQ (dark panel) ---------- */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.faq__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  margin-top: 20px;
  letter-spacing: -1.2px;
  color: var(--white);
}
.faq__heading em { font-style: italic; color: var(--accent); }
.faq details {
  padding: 24px 0;
  border-top: 1px solid rgba(253,250,245,.1);
}
.faq details:first-of-type { border-top: none; padding-top: 0; }
.faq summary {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -.3px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--mono);
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: rgba(253,250,245,.78);
  margin-top: 12px;
  line-height: 1.55;
  max-width: 580px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 64px var(--pad-x) 32px;
  border-top: 1px solid var(--hair);
  background: var(--parchment);
  color: var(--text);
  font-family: var(--ui);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  margin-top: 16px;
  line-height: 1.4;
  max-width: 280px;
  color: var(--text);
}
.footer__col-head {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--text);
  opacity: .85;
  transition: opacity 150ms ease;
}
.footer__col a:hover { opacity: 1; color: var(--accent); }
.footer__store { margin-top: 24px; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__copy, .footer__legal {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .4px;
}
.footer__legal a {
  color: inherit;
  margin: 0 4px;
  transition: color 150ms ease;
}
.footer__legal a:hover { color: var(--text); }

/* ---------- Legal pages (privacy, terms) ---------- */
.legal {
  background: var(--parchment);
  padding: 64px var(--pad-x) 120px;
}
.legal__container {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 20px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.6px;
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 16px;
}
.legal h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal p { margin-bottom: 16px; line-height: 1.65; color: var(--text); }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: color-mix(in oklch, var(--accent) 80%, black); }
.legal ul { margin: 0 0 16px 0; padding-left: 24px; list-style: disc; }
.legal ul li { margin-bottom: 8px; line-height: 1.6; }
.legal__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.legal__intro {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--brown);
  margin-bottom: 32px;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.legal table th, .legal table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--hair);
  vertical-align: top;
}
.legal table th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--parch-dark);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--stagger-1 { transition-delay: 80ms; }
.reveal--stagger-2 { transition-delay: 160ms; }
.reveal--stagger-3 { transition-delay: 240ms; }

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

/* ============================================================
   Responsive — break at 1199 / 768
   ============================================================ */
@media (max-width: 1199px) {
  :root { --pad-x: 32px; }
  .hero__inner,
  .step__inner,
  .step--reverse .step__inner,
  .compare__layout,
  .faq__layout,
  .features__head,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero__inner { gap: 56px; padding-top: 32px; }
  .hero__title { font-size: 72px; letter-spacing: -1.8px; }
  .hiw-hero__title { font-size: 72px; }
  .features__heading,
  .compare__heading,
  .faq__heading { font-size: 48px; }
  .final-cta__heading { font-size: 64px; }
  .features__intro { text-align: left; }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card,
  .feature-card--hero,
  .feature-card--last,
  .feature-card--mid {
    grid-column: span 1;
  }
  .feature-card--hero {
    grid-column: span 2;
  }
  .phone-stage { height: auto; min-height: 600px; }
  .step__inner, .step--reverse .step__inner { grid-template-columns: 1fr; gap: 40px; }
  .step--reverse .step__phone-wrap { order: 2; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; }
  .section, .step, .final-cta, .features__head + .features__grid + * { padding-left: 24px; padding-right: 24px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .nav { padding: 14px 24px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__cta { display: inline-flex; }

  .hero__title { font-size: 48px; letter-spacing: -1px; }
  .hiw-hero__title { font-size: 48px; }
  .features__heading,
  .compare__heading,
  .faq__heading,
  .step__title { font-size: 36px; letter-spacing: -.8px; }
  .final-cta__heading { font-size: 44px; letter-spacing: -1.2px; }
  .legal h1 { font-size: 40px; }
  .legal h2 { font-size: 24px; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--hero { grid-column: span 1; }

  .compare__row {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
  .compare__neg {
    grid-column: 1 / -1;
    padding-left: 44px;
    margin-top: 6px;
  }

  .press__inner { gap: 20px; }
  .press__logo { font-size: 14px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .phone-stage { display: flex; justify-content: center; min-height: auto; }
  .phone-stage__phone--left, .phone-stage__phone--right { display: none; }
  .phone-stage__phone--center { position: static; transform: none; }
}
