/* ============================================================
   Sincere-ly — landing site
   Palette taken straight from the brand mark: a teal→coral
   gradient heart with a navy wordmark on warm paper.
   Teal  = primary / trust / positive   Coral = warm accent
   Navy  = ink & dark band              Cream = canvas
   Display: Fraunces (warm optical serif) · Body: Hanken Grotesk
   ============================================================ */

:root {
  /* Surfaces */
  --canvas:       #F4EEE5;
  --canvas-deep:  #EAE1D0;
  --paper:        #FFFFFF;
  --paper-warm:   #FBF6EE;
  --ink:          #16314A;
  --ink-soft:     #5C6A77;
  --ink-faint:    #9aa4ad;

  /* Brand accents (sampled from the logo) */
  --teal:         #1A7480;
  --teal-deep:    #0E5862;
  --teal-soft:    #2E8893;
  --coral:        #E2786F;
  --coral-deep:   #C5564C;
  --blush:        #FBE9E3;

  /* Lines */
  --line:         #E5DDCD;
  --line-soft:    #EEE7D9;

  --shadow-sm:   0 1px 2px rgba(22,49,74,.05), 0 6px 16px -8px rgba(22,49,74,.14);
  --shadow-md:   0 2px 6px rgba(22,49,74,.07), 0 20px 44px -18px rgba(22,49,74,.28);
  --shadow-lg:   0 4px 10px rgba(22,49,74,.08), 0 40px 80px -28px rgba(22,49,74,.36);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  --wrap: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --brand-grad: linear-gradient(120deg, #15707A 0%, #4F8A84 48%, #E47971 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.62;
  font-size: 17px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

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

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

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

::selection { background: var(--teal); color: var(--paper); }

:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 28px;
}

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

.skip-link {
  position: absolute; left: 14px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: 8px; z-index: 10000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 600; font-size: .96rem;
  letter-spacing: .005em;
  padding: 14px 26px; border-radius: 999px;
  border: 0; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--paper);
  box-shadow: 0 8px 20px -8px rgba(14,88,98,.7);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -8px rgba(14,88,98,.78);
}
.btn-primary:active { transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,238,229,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244,238,229,.94);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { display: block; line-height: 0; }
.brand-word {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.34rem; letter-spacing: -0.02em;
}
.brand-ly { color: var(--coral); font-style: italic; }

.site-nav { display: flex; gap: 30px; margin-left: auto; }
.site-nav a {
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .18s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { padding: 11px 22px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px;
  transition: transform .26s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 28px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.mobile-nav a {
  font-size: 1.05rem; font-weight: 500; padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:last-child {
  border: 0; margin-top: 14px; align-self: flex-start;
}
.mobile-nav[hidden] { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 70px 0 96px; overflow: hidden; }

.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-glow-a {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(226,120,111,.34), transparent 68%);
  top: -180px; right: -120px;
}
.hero-glow-b {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(26,116,128,.32), transparent 68%);
  bottom: -200px; left: -150px;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: var(--teal-deep);
  background: rgba(26,116,128,.1);
  padding: 7px 15px; border-radius: 999px;
  margin-bottom: 26px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(26,116,128,.55);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26,116,128,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(26,116,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,116,128,0); }
}

.hero-title {
  font-size: clamp(2.9rem, 6.4vw, 4.7rem);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 1.18rem; color: var(--ink-soft);
  max-width: 30em; margin-bottom: 30px;
}

.hero-cta { margin-bottom: 22px; }

.hero-cta-note, .hero-badge-note {
  font-size: .85rem; color: var(--ink-soft); margin-top: 11px;
}

/* Waitlist form */
.waitlist {
  display: flex; gap: 9px; flex-wrap: wrap;
  position: relative;
}
.waitlist input[type="email"] {
  flex: 1 1 220px;
  font-family: inherit; font-size: 1rem;
  padding: 14px 18px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.waitlist input::placeholder { color: #9aa0a6; }
.waitlist input:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(26,116,128,.16);
}
.waitlist .btn { flex: 0 0 auto; }

.form-msg {
  flex-basis: 100%;
  font-size: .88rem; font-weight: 500;
  min-height: 0; margin: 0;
  transition: min-height .2s var(--ease);
}
.form-msg:not(:empty) { min-height: 1.4em; margin-top: 4px; }
.form-msg.is-ok    { color: var(--teal-deep); }
.form-msg.is-error { color: var(--coral-deep); }

/* Interest choice — beta tester vs notify at launch */
.waitlist .interest {
  flex-basis: 100%;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 2px; padding: 0; border: 0;
}
.interest-opt {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  font-size: .9rem; font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.interest-opt input { margin: 0; accent-color: var(--teal); }
.interest-opt:hover { border-color: var(--teal); }
.interest-opt:has(input:checked) {
  border-color: var(--teal);
  background: rgba(26,116,128,.08);
}
.interest-opt:has(input:focus-visible) {
  box-shadow: 0 0 0 4px rgba(26,116,128,.16);
}

/* Light variant for the dark final-CTA form */
.waitlist-lg .interest { justify-content: center; }
.waitlist-lg .interest-opt {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}
.waitlist-lg .interest-opt input { accent-color: #fff; }
.waitlist-lg .interest-opt:hover { border-color: #fff; }
.waitlist-lg .interest-opt:has(input:checked) {
  border-color: #fff;
  background: rgba(255,255,255,.18);
}

/* App Store badge */
.hero-badge {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-top: 26px;
}
.appstore-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--paper);
  padding: 10px 20px; border-radius: 14px;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease);
}
.appstore-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.appstore-apple { width: 24px; height: 28px; fill: currentColor; }
.appstore-text { display: flex; flex-direction: column; line-height: 1.12; }
.appstore-text small { font-size: .64rem; letter-spacing: .02em; opacity: .82; }
.appstore-text strong { font-size: 1.16rem; font-weight: 600; letter-spacing: -.01em; }
.appstore-badge.is-soon { opacity: .9; }
.appstore-badge-light {
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--line);
}

/* ---------- Hero device ---------- */
.hero-device {
  position: relative; justify-self: center;
  display: flex; align-items: center; justify-content: center;
}

.phone {
  position: relative; width: 290px;
  background: #14202b;
  border-radius: 44px;
  padding: 11px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px #2c3b48;
}
.phone-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 24px;
  background: #14202b; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  background: var(--canvas);
  border-radius: 34px;
  padding: 44px 16px 18px;
  min-height: 540px;
  display: flex; flex-direction: column; gap: 14px;
}

.app-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 2px;
}
.app-bar-title {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.05rem;
}
.app-bar-lock { color: var(--teal); display: flex; }

/* ---------- Result card ---------- */
.result-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.rc-top { margin-bottom: 12px; }
.rc-recency {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600;
  color: var(--teal-deep);
  background: rgba(26,116,128,.12);
  padding: 5px 11px; border-radius: 999px;
}
.rc-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: pulse-teal 2.8s var(--ease) infinite;
}
@keyframes pulse-teal {
  0%   { box-shadow: 0 0 0 0 rgba(26,116,128,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(26,116,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,116,128,0); }
}
.rc-status {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.42rem; color: var(--teal);
  letter-spacing: -0.02em; line-height: 1.12;
}
.rc-panel {
  font-size: .82rem; color: var(--ink-soft);
  margin-top: 4px; margin-bottom: 14px;
}
.rc-facts {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line-soft);
}
.rc-facts > div {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.rc-facts dt { font-size: .82rem; color: var(--ink-soft); }
.rc-facts dd {
  font-size: .85rem; font-weight: 600; text-align: right;
}
.rc-facts .rc-not dd { color: var(--coral-deep); }
.rc-share {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 13px;
  border-top: 1px dashed var(--line);
  font-size: .78rem;
}
.rc-share-who { color: var(--ink-soft); }
.rc-share-who strong { color: var(--ink); }
.rc-share-exp {
  color: var(--coral-deep); font-weight: 600;
  background: var(--blush);
  padding: 3px 9px; border-radius: 999px;
}

.app-actions { display: flex; gap: 8px; margin-top: auto; }
.app-pill {
  flex: 1; text-align: center;
  font-size: .82rem; font-weight: 600;
  padding: 11px 8px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--ink-soft);
}
.app-pill-primary {
  background: var(--teal); color: var(--paper); border-color: var(--teal);
}

.device-tag {
  position: absolute;
  font-size: .8rem; font-weight: 600;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.device-tag-a { top: 64px; left: -52px; color: var(--teal-deep); }
.device-tag-b { bottom: 96px; right: -56px; color: var(--coral-deep); }
.device-tag::before {
  content: ""; display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; margin-right: 7px;
  vertical-align: middle;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section-kicker {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.section-kicker-light { color: #8fc6cc; }

.section-head {
  max-width: 36em; margin: 0 auto 56px; text-align: center;
}
.section-head-left { margin-inline: 0; text-align: left; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.95rem);
}
.section-sub {
  font-size: 1.1rem; color: var(--ink-soft); margin-top: 16px;
}

/* ============================================================
   WHY BAND
   ============================================================ */
.why {
  padding: 96px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.why .section-kicker { text-align: center; }
.why-statement {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  line-height: 1.26; letter-spacing: -0.02em;
  text-align: center; max-width: 19em; margin: 0 auto 64px;
}
.why-statement em { font-style: italic; color: var(--coral-deep); }
.why-statement .hl { color: var(--teal); }

.why-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stat {
  padding: 28px 26px;
  background: var(--canvas);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}
.stat-num {
  display: block;
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.9rem; color: var(--teal);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.stat-label { font-size: .96rem; color: var(--ink-soft); }

/* ============================================================
   VALUES
   ============================================================ */
.values { padding: 100px 0; }

.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 38px 32px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(26,116,128,.12); color: var(--teal-deep);
  margin-bottom: 22px;
}
.value-icon svg { width: 28px; height: 28px; }
.value-card:nth-child(2) .value-icon { background: var(--blush); color: var(--coral-deep); }
.value-card h3 {
  font-size: 1.4rem; margin-bottom: 10px;
}
.value-card p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 100px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.steps {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; counter-reset: step;
}
.step {
  padding: 0 26px;
  border-left: 1px solid var(--line);
  position: relative;
}
.step:first-child { padding-left: 0; border-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  display: inline-block;
  font-family: "Fraunces", serif; font-style: italic;
  font-size: 2.6rem; font-weight: 500;
  color: var(--coral); opacity: .9;
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.step h3 { font-size: 1.28rem; margin-bottom: 9px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   CARD FEATURE / HONESTY
   ============================================================ */
.card-feature { padding: 104px 0; }
.card-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.card-feature-copy .section-title { margin-bottom: 4px; }

.fact-list {
  list-style: none; padding: 0; margin-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.fact-list li {
  display: grid; grid-template-columns: 9.5em 1fr;
  gap: 16px; align-items: baseline;
  padding: 16px 4px;
  border-top: 1px solid var(--line);
}
.fact-list li:last-child { border-bottom: 1px solid var(--line); }
.fact-key {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.06rem; color: var(--teal-deep);
}
.fact-val { color: var(--ink-soft); font-size: .98rem; }

.card-feature-visual { display: flex; justify-content: center; }
.result-card-lg {
  width: 100%; max-width: 380px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.result-card-lg::before {
  content: ""; position: absolute; inset: -22px -22px auto auto;
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(26,116,128,.32), transparent 70%);
  filter: blur(26px); z-index: -1;
}
.result-card-lg .rc-status { font-size: 1.7rem; }
.rc-honest-note {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: .84rem; color: var(--ink-soft);
  font-style: italic;
}

/* ============================================================
   PRIVACY (dark navy band)
   ============================================================ */
.privacy {
  padding: 104px 0;
  background: var(--ink);
  color: var(--canvas);
  position: relative; overflow: hidden;
}
.privacy::before {
  content: ""; position: absolute;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,116,128,.42), transparent 68%);
  filter: blur(70px); top: -160px; right: -120px;
}
.privacy::after {
  content: ""; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,120,111,.26), transparent 68%);
  filter: blur(70px); bottom: -200px; left: -100px;
}
.privacy .section-head { position: relative; }
.privacy .section-title { color: var(--paper); }
.privacy .section-sub { color: #b9c3cd; }

.privacy-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.privacy-item {
  padding: 30px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.privacy-item:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.privacy-item h3 {
  font-size: 1.2rem; color: var(--paper); margin-bottom: 9px;
  display: flex; align-items: center; gap: 9px;
}
.privacy-item h3::before {
  content: ""; width: 9px; height: 9px; border-radius: 3px;
  background: var(--coral); flex-shrink: 0;
}
.privacy-item:nth-child(even) h3::before { background: var(--teal-soft); }
.privacy-item p { color: #aeb8c2; font-size: .96rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; }
.faq-wrap {
  display: grid; grid-template-columns: .8fr 1.4fr;
  gap: 56px; align-items: start;
}
.faq .section-head { margin-bottom: 0; }

.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; cursor: pointer; list-style: none;
  padding: 22px 4px;
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: 1.18rem; letter-spacing: -0.01em;
  transition: color .18s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--teal); }
.faq-icon {
  position: relative; flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--teal); border-radius: 2px;
  transition: transform .26s var(--ease);
}
.faq-icon::before { inset: 10px 0; height: 2.4px; }
.faq-icon::after  { inset: 0 10px; width: 2.4px; }
.faq-list details[open] .faq-icon::after { transform: scaleY(0); }
.faq-list details[open] summary { color: var(--teal); }
.faq-body {
  padding: 0 4px 24px;
  color: var(--ink-soft); font-size: 1rem;
  max-width: 44em;
}
.faq-list details[open] .faq-body {
  animation: faq-in .32s var(--ease);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.get-app {
  position: relative; overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(155deg, var(--teal) 0%, var(--teal-deep) 70%, #0a4047 100%);
  color: var(--paper);
  text-align: center;
}
.get-app-glow {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,120,111,.4), transparent 64%);
  top: -280px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.get-app-inner { position: relative; max-width: 620px; }
.get-app-title {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  color: var(--paper);
}
.get-app-sub {
  font-size: 1.12rem; color: #cfe4e3;
  margin: 16px auto 32px; max-width: 32em;
}
.waitlist-lg { justify-content: center; }
.waitlist-lg input[type="email"] {
  flex: 1 1 260px; border-color: transparent;
}
.waitlist-lg .btn-primary {
  background: var(--coral); color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.45);
}
.waitlist-lg .btn-primary:hover { background: var(--coral-deep); }
.waitlist-lg .form-msg.is-ok { color: #e7f3f2; }
.waitlist-lg .form-msg.is-error { color: #ffd9d2; }

.get-app-badge { margin-top: 30px; display: flex; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--canvas-deep);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-tag {
  font-family: "Fraunces", serif; font-style: italic;
  color: var(--ink-soft); margin-top: 12px; font-size: 1.02rem;
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .18s var(--ease);
}
.footer-nav a:hover { color: var(--teal); }

.footer-base {
  display: flex; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; align-items: flex-end;
  padding-top: 28px;
}
.footer-disclaimer {
  font-size: .82rem; color: var(--ink-soft);
  max-width: 40em;
}
.footer-legal {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: .85rem; color: var(--ink-soft);
}
.footer-legal a:hover { color: var(--teal); }

/* ============================================================
   ANIMATION — load reveal + scroll reveal
   ============================================================ */
.load {
  opacity: 0;
  transform: translateY(22px);
  animation: load-in .8s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes load-in {
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1; transform: translateY(0);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 620px; }
  .hero-device { order: -1; }
  .device-tag-a { left: -20px; }
  .device-tag-b { right: -24px; }

  .faq-wrap { grid-template-columns: 1fr; gap: 28px; }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .why-stats { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .step { padding: 0 22px; }
  .step:nth-child(odd) { padding-left: 0; border-left: 0; }

  .card-feature-grid { grid-template-columns: 1fr; gap: 44px; }
  .card-feature-visual { order: -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  .hero { padding: 48px 0 72px; }
  .why, .values, .how, .card-feature, .privacy, .faq { padding: 72px 0; }
  .get-app { padding: 84px 0; }

  .hero-title { font-size: clamp(2.5rem, 11vw, 3.2rem); }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 0 0 0 22px; border-left: 1px solid var(--line); }
  .step:first-child { padding-left: 22px; border-left: 1px solid var(--line); }
  .privacy-grid { grid-template-columns: 1fr; }

  .device-tag-a { top: 24px; left: -8px; }
  .device-tag-b { bottom: 60px; right: -8px; }

  .waitlist .btn { flex: 1 1 100%; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}
