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

/* ── "THE ARCHIVE" — warm paper, ink, burnt-sienna stamp ── */
:root {
  --paper:   #FAF6EE;
  --paper-2: #F3EDE0;
  --paper-3: #ECE4D2;
  --card:    #FFFDF8;
  --ink:     #1C1812;
  --sub:     #57503F;   /* body text */
  --dim:     #8A806B;   /* muted labels */
  --faint:   #B3A98E;   /* faintest text */
  --line:    rgba(28,24,18,.16);
  --accent:  #C24B24;
  --accent2: #9A3A1B;
  --tint:    rgba(194,75,36,.09);
  --moss:    #3F6B4F;
  --ochre:   #B98A2F;
  --r:      10px;
  --r-lg:   16px;
  --r-sm:   6px;
  --shadow:    4px 4px 0 var(--ink);
  --shadow-sm: 2px 2px 0 var(--ink);
  --shadow-lg: 6px 6px 0 var(--ink);
  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D8CFBA; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C2B79C; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap    { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.wrap-md { max-width: 880px;  margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 660px;  margin: 0 auto; padding: 0 32px; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ── COMING SOON stamp ── */
.stamp {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); background: var(--card);
  border: 3px double var(--accent); border-radius: var(--r-sm);
  padding: 6px 16px; transform: rotate(-4deg); opacity: .92;
}

/* ── TOP BAR (announcement + nav fixed together) ── */
#topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; flex-direction: column;
}
.announce {
  background: var(--paper-3);
  border-bottom: 1px solid var(--line);
  padding: 9px 20px; text-align: center;
  font-size: 13px; font-weight: 500; color: var(--sub);
  font-family: var(--mono);
  transition: max-height .3s, opacity .3s, padding .3s;
  max-height: 48px; overflow: hidden;
}
.announce.hidden { max-height: 0; opacity: 0; padding: 0; }
.announce strong { color: var(--accent); font-weight: 600; }
.announce a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(194,75,36,.4); }

#nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}
#nav.scrolled {
  background: rgba(250,246,238,.92);
  border-color: var(--ink);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; padding: 0 32px; max-width: 1160px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-a {
  padding: 6px 13px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--sub);
  transition: color .15s, background .15s;
}
.nav-a:hover { color: var(--ink); background: rgba(28,24,18,.05); }
.nav-a.active { color: var(--accent2); }
.nav-btn {
  margin-left: 6px; padding: 8px 20px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; color: var(--paper); border: 1.5px solid var(--ink); cursor: pointer;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.nav-btn:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--accent); }
.nav-btn:active { transform: translate(1px,1px); box-shadow: none; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.mob-menu {
  display: none; flex-direction: column; gap: 3px;
  padding: 10px 18px 18px; background: rgba(250,246,238,.98); border-top: 1px solid var(--line); border-bottom: 1.5px solid var(--ink);
}
.mob-menu.open { display: flex; }
.mob-menu .nav-a { padding: 11px 14px; font-size: 15px; }
.mob-menu .nav-btn { text-align: center; margin: 6px 0 0; padding: 13px; border-radius: 13px; font-size: 15px; }
@media (max-width: 768px) { .nav-links { display: none; } .burger { display: flex; } }

/* ── HERO ── */
#hero {
  position: relative; overflow: hidden;
  padding-top: 110px;
}
.hero-grid { display: none; }

.hero-body {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 32px; padding: 80px 32px 52px; max-width: 900px; margin: 0 auto;
}

/* Badges */
.badge-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 500; white-space: nowrap;
  font-family: var(--mono); letter-spacing: .04em;
}
.badge-ver { background: var(--card); border: 1px solid var(--line); color: var(--dim); }
.dot-green { width: 6px; height: 6px; border-radius: 50%; background: var(--moss); }

/* Headline */
.hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.9rem, 8vw, 5.8rem);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.02; color: var(--ink);
}
.grad { color: var(--accent); font-style: italic; }

.hero-sub { font-size: 18px; color: var(--sub); max-width: 440px; line-height: 1.7; margin: 14px auto 0; text-align: center; }
.hero-sub em { color: var(--ink); font-style: normal; font-weight: 600; }

/* CTA buttons */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.btn-main {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 34px; border-radius: var(--r); font-size: 16px; font-weight: 700; color: var(--paper);
  background: var(--ink);
  border: 1.5px solid var(--ink); cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s; letter-spacing: -.01em;
}
.btn-main:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--accent); }
.btn-main:active { transform: translate(1px,1px); box-shadow: none; }
.btn-main:disabled { opacity: .6; cursor: default; transform: none; box-shadow: var(--shadow); }
.btn-accent { background: var(--accent); }
.btn-accent:hover { background: var(--accent2); box-shadow: 6px 6px 0 var(--ink); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 24px; border-radius: var(--r); font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--ink); color: var(--ink);
  background: transparent;
  transition: background .2s, transform .15s, box-shadow .15s;
}
.btn-ghost:hover { background: var(--card); transform: translate(-1px,-1px); box-shadow: var(--shadow-sm); }
.btn-ghost svg { width: 16px; height: 16px; }

/* Platform chips */
.platforms { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.plat {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 9px; font-size: 13px; font-weight: 500;
  font-family: var(--mono);
  background: var(--card); border: 1px solid var(--line); color: var(--dim);
  transition: border-color .2s, color .2s;
}
.plat:hover { border-color: var(--ink); color: var(--sub); }

/* Social proof */
.proof {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 11px 20px; border-radius: var(--r);
  background: var(--card); border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
}
.avs { display: flex; }
.av {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--card);
  border: 2px solid var(--card); margin-left: -9px;
}
.av:first-child { margin-left: 0; }
.stars { display: flex; gap: 1px; color: var(--ochre); font-size: 13px; }
.proof-txt { font-size: 13px; color: var(--dim); }
.proof-txt strong { color: var(--ink); }

/* Marquee */
.marquee { width: 100%; overflow: hidden; mask-image: linear-gradient(90deg,transparent,black 10%,black 90%,transparent); -webkit-mask-image: linear-gradient(90deg,transparent,black 10%,black 90%,transparent); }
.marquee-inner { display: flex; gap: 10px; width: max-content; animation: scroll 32s linear infinite; }
.m-tag { padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 500; white-space: nowrap; font-family: var(--mono); background: transparent; border: 1px solid var(--line); color: var(--dim); }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* App mockup — dark interior kept, framed like an archival photo */
.mock-wrap { position: relative; z-index: 10; max-width: 680px; margin: 0 auto; padding: 0 32px 96px; }
.mock {
  border-radius: 14px; overflow: hidden;
  background: #060616; border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(3,3,12,.9); }
.tls { display: flex; gap: 6px; }
.tl { width: 10px; height: 10px; border-radius: 50%; }
.mock-title { flex: 1; display: flex; justify-content: center; }
.mock-pill { height: 21px; padding: 0 14px; border-radius: 6px; display: flex; align-items: center; font-size: 10px; font-family: monospace; background: rgba(91,82,240,.12); color: #818cf8; border: 1px solid rgba(91,82,240,.2); }
.mock-val { font-size: 10px; font-family: monospace; padding: 2px 8px; border-radius: 5px; background: rgba(16,185,129,.1); color: #34d399; border: 1px solid rgba(16,185,129,.18); }
.mock-body { display: flex; height: 272px; }
.mock-side { width: 145px; flex-shrink: 0; border-right: 1px solid rgba(255,255,255,.05); background: rgba(3,3,12,.7); padding: 7px 0; display: flex; flex-direction: column; gap: 2px; }
.s-item { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; margin: 0 5px; border-radius: 8px; font-size: 10px; font-weight: 500; }
.s-item.on { background: rgba(91,82,240,.18); color: #a5b4fc; }
.s-item.off { color: #30305a; }
.s-badge { font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 999px; }
.s-div { height: 1px; background: rgba(255,255,255,.04); margin: 5px 10px; }
.s-head { padding: 5px 10px 2px; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #202048; }
.s-row { display: flex; align-items: center; justify-content: space-between; padding: 2px 10px; font-size: 9px; color: #282860; }
.s-dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.mock-main { flex: 1; display: flex; flex-direction: column; background: rgba(5,5,18,.8); }
.mock-search { display: flex; align-items: center; gap: 7px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
.s-bar { flex: 1; height: 23px; border-radius: 6px; padding: 0 10px; display: flex; align-items: center; font-size: 9px; background: rgba(255,255,255,.04); color: #2a2a60; border: 1px solid rgba(255,255,255,.05); }
.v-tgl { display: flex; gap: 3px; }
.v-btn { width: 18px; height: 18px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 8px; }
.v-btn.a { background: rgba(91,82,240,.22); color: #818cf8; }
.v-btn.b { color: #252560; }
.mock-grid-wrap { flex: 1; overflow: hidden; padding: 9px; }
.igrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.icard { border-radius: 8px; overflow: hidden; background: rgba(10,10,28,.9); border: 1px solid rgba(255,255,255,.07); }
.ibar { height: 2px; }
.ithumb { display: flex; align-items: center; justify-content: center; font-size: 21px; padding: 10px 0 5px; }
.iinfo { padding: 0 6px 7px; }
.iname { font-size: 8px; font-weight: 700; color: #d0d0f0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.irow { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.icond { font-size: 7px; font-weight: 700; padding: 2px 5px; border-radius: 999px; }
.iprice { font-size: 9px; font-weight: 700; font-family: monospace; color: #34d399; }

/* ── STATS BAR ── */
#stats {
  background: var(--paper-2); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
@media(min-width:600px){ .stats-grid{ grid-template-columns:repeat(4,1fr); } }
.s-stat { text-align: center; }
.s-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; letter-spacing: -.02em; line-height: 1;
  color: var(--ink);
}
.s-lbl { font-size: 14px; color: var(--dim); font-weight: 500; margin-top: 6px; }

/* ── STORY ── */
#story {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--paper);
}
.story-layout { display: grid; gap: 72px; align-items: center; }
@media(min-width:1024px){ .story-layout{ grid-template-columns:1fr 1fr; } }
.eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--accent2); margin-bottom: 18px; }
.h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; color: var(--ink); line-height: 1.06; font-size: clamp(2rem,3.8vw,3.1rem); letter-spacing: -.02em; margin-bottom: 28px; }
.story-body { color: var(--sub); font-size: 16px; display: flex; flex-direction: column; gap: 16px; line-height: 1.72; }
.story-body em { color: var(--ink); font-style: normal; font-weight: 600; }
.stat-cards { display: flex; flex-direction: column; gap: 14px; }
.sc {
  display: flex; align-items: center; gap: 20px; padding: 20px 22px; border-radius: var(--r);
  background: var(--card); border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.sc:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.sc-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-num { font-family: 'Fraunces', Georgia, serif; font-size: 22px; font-weight: 700; }
.sc-label { font-size: 15px; font-weight: 700; color: var(--ink); }
.sc-sub { font-size: 13px; color: var(--dim); margin-top: 2px; }

/* ── FEATURES ── */
#features {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--paper-2);
  border-top: 1.5px solid var(--ink);
}
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-sub { font-size: 17px; color: var(--sub); max-width: 500px; margin: 16px auto 0; line-height: 1.65; }
.feat-grid { display: grid; gap: 16px; }
@media(min-width:640px){  .feat-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:1024px){ .feat-grid{ grid-template-columns:1fr 1fr 1fr; } }
.fc {
  padding: 26px; border-radius: var(--r);
  background: var(--card); border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  position: relative; overflow: hidden;
}
.fc:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.fc-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon svg { width: 21px; height: 21px; }
.fc-name { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.fc-tag { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-top: 2px; }
.fc-body { font-size: 14px; color: var(--sub); line-height: 1.65; }

/* ── REVIEWS ── */
#reviews {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--paper);
  border-top: 1.5px solid var(--ink);
}
.rev-grid { display: grid; gap: 16px; margin-top: 52px; }
@media(min-width:640px){  .rev-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:1024px){ .rev-grid{ grid-template-columns:1fr 1fr 1fr; } }
.rc {
  padding: 26px; border-radius: var(--r);
  background: var(--card); border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.rc:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.rc-body { font-size: 14px; color: var(--sub); line-height: 1.72; flex: 1; font-style: italic; }
.rc-foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.rav { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--card); flex-shrink: 0; }
.rc-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.rc-role { font-size: 12px; color: var(--dim); margin-top: 2px; }
.rating-row { display: inline-flex; align-items: center; gap: 14px; padding: 11px 24px; border-radius: 999px; background: var(--card); border: 1.5px solid var(--ink); box-shadow: var(--shadow-sm); }
.rc-quote { font-size: 48px; line-height: 1; color: rgba(194,75,36,.25); font-family: 'Fraunces', Georgia, serif; margin-bottom: -10px; }

/* ── FAQ ── */
.faq-sec { margin-top: 96px; }
.faq-list { max-width: 660px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 9px; }
.fi {
  border-radius: var(--r-sm); overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  transition: border-color .2s;
}
.fi.open { border-color: var(--accent); }
.fi-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
}
.fi-q { font-size: 15px; font-weight: 600; color: var(--sub); transition: color .2s; }
.fi.open .fi-q { color: var(--ink); }
.fi-ic {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--dim);
  transition: background .2s, color .2s, transform .3s; font-size: 14px; font-weight: 700; line-height: 1;
}
.fi.open .fi-ic { background: var(--tint); color: var(--accent); transform: rotate(45deg); }
.fi-body { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.16,1,.3,1); }
.fi-a { padding: 0 22px 18px; font-size: 14px; color: var(--sub); line-height: 1.7; }

/* ── PRICING → WAITLIST ── */
#pricing {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--paper-2);
  border-top: 1.5px solid var(--ink);
}
.p-grid { display: none; }

.p-card {
  max-width: 460px; margin: 0 auto; position: relative; border-radius: var(--r-lg); padding: 40px 36px 36px;
  background: var(--card);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 24px;
}
.p-stamp {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%) rotate(-4deg); white-space: nowrap;
  font-family: var(--mono); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .16em;
  padding: 8px 22px; border-radius: var(--r-sm);
  background: var(--paper); color: var(--accent);
  border: 3px double var(--accent);
}
.p-tier { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--accent2); }
.p-price { text-align: center; padding: 6px 0 2px; }
.p-row { display: flex; align-items: flex-end; justify-content: center; gap: 5px; margin: 10px 0 5px; }
.p-dollar { font-family: 'Fraunces', Georgia, serif; font-size: 26px; font-weight: 700; color: var(--dim); align-self: flex-start; padding-top: 12px; }
.p-num { font-family: 'Fraunces', Georgia, serif; font-size: 82px; font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.p-per { font-size: 15px; font-weight: 600; color: var(--dim); padding-bottom: 12px; }
.p-note { font-size: 12px; color: var(--dim); }
.form { display: flex; flex-direction: column; gap: 14px; }
.fl { display: block; font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: var(--dim); margin-bottom: 7px; }
.fi-inp {
  width: 100%; padding: 13px 16px; border-radius: 8px; font-size: 14px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s; font-family: inherit;
}
.fi-inp:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--tint); }
.fi-inp::placeholder { color: var(--faint); }
.fh { font-size: 12px; color: var(--dim); margin-top: 5px; text-align: center; }
.f-err { padding: 12px 16px; border-radius: 8px; background: rgba(194,75,36,.08); color: var(--accent2); border: 1px solid var(--accent); font-size: 14px; }
.notify-done {
  text-align: center; font-size: 15px; font-weight: 600; color: var(--moss);
  padding: 18px 16px; border-radius: var(--r);
  background: rgba(63,107,79,.08); border: 1.5px solid var(--moss);
}
.p-div { border: none; border-top: 1px solid var(--line); }
.feat-check { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.fci { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--sub); line-height: 1.3; }
.ck { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; background: rgba(63,107,79,.14); color: var(--moss); }
.p-fine { font-size: 12px; text-align: center; color: var(--dim); }

/* Comparison table */
.cmp-sec { margin-top: 80px; }
.cmp-title { text-align: center; font-family: 'Fraunces', Georgia, serif; font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 28px; letter-spacing: -.01em; }
.tbl-wrap { overflow-x: auto; border-radius: var(--r); border: 1.5px solid var(--ink); background: var(--card); box-shadow: var(--shadow); }
table.cmp { width: 100%; border-collapse: collapse; }
table.cmp th, table.cmp td { padding: 13px 18px; text-align: center; font-size: 14px; }
table.cmp th { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--dim); background: var(--paper-3); border-bottom: 1.5px solid var(--ink); }
table.cmp th:first-child, table.cmp td:first-child { text-align: left; }
table.cmp td { color: var(--sub); border-bottom: 1px solid var(--line); }
table.cmp tr:last-child td { border-bottom: none; }
table.cmp tr:hover td { background: rgba(28,24,18,.02); }
table.cmp .m-col { color: var(--ink); font-weight: 700; background: var(--tint); }
table.cmp th.m-col { color: var(--accent2); background: var(--tint); }
.cy { color: var(--moss); font-size: 16px; }
.cn { color: var(--faint); font-size: 16px; }
.cp { color: var(--ochre); font-size: 13px; font-weight: 700; }
.cmp-foot { text-align: center; font-size: 12px; color: var(--dim); margin-top: 12px; }

/* ── CTA ── */
#cta {
  padding: 130px 0; position: relative; overflow: hidden;
  background: var(--paper-3);
  border-top: 1.5px solid var(--ink);
}
.cta-grid { display: none; }
.cta-inner { position: relative; z-index: 10; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; max-width: 780px; margin: 0 auto; padding: 0 32px; }
.cta-h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; color: var(--ink); line-height: 1.06; font-size: clamp(2.2rem,5vw,3.8rem); letter-spacing: -.02em; }
.cta-sub { font-size: 18px; color: var(--sub); max-width: 460px; line-height: 1.6; }
.cta-fine { font-size: 13px; color: var(--dim); font-family: var(--mono); }

/* ── FOOTER ── */
footer { background: var(--paper-3); border-top: 1.5px solid var(--ink); }
.foot-main { padding: 60px 0; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(min-width:768px){ .foot-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.fl-name { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 16px; color: var(--ink); }
.ft { font-size: 14px; color: var(--sub); line-height: 1.5; }
.fc-copy { font-size: 12px; color: var(--dim); margin-top: 14px; }
.fh-col { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); margin-bottom: 16px; }
.flinks { display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: 14px; color: var(--sub); transition: color .15s; }
.flinks a:hover { color: var(--accent2); }
.foot-bar { border-top: 1px solid var(--line); padding: 18px 0; }
.foot-bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.fb-txt { font-size: 12px; color: var(--dim); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { font-size: 11px; padding: 3px 10px; border-radius: 999px; font-weight: 500; font-family: var(--mono); }
.chip-g { background: rgba(63,107,79,.10); color: var(--moss); border: 1px solid rgba(63,107,79,.3); }
.chip-i { background: var(--tint); color: var(--accent2); border: 1px solid rgba(194,75,36,.3); }

/* ── HOW IT WORKS ── */
#how {
  padding: 100px 0; position: relative; overflow: hidden;
  background: var(--paper);
}
.how-grid { display: grid; gap: 16px; margin-top: 56px; }
@media(min-width:768px){ .how-grid{ grid-template-columns: 1fr 1fr 1fr; } }
.how-step {
  position: relative; padding: 36px 32px; border-radius: var(--r);
  background: var(--card); border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.how-step:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.how-num {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.how-num::before {
  content: attr(data-n); width: 26px; height: 26px; border-radius: 50%;
  background: var(--tint); border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--accent); flex-shrink: 0;
  line-height: 1;
}
.how-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.how-h { font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; margin-bottom: 10px; }
.how-p { font-size: 14px; color: var(--sub); line-height: 1.7; }
.how-arrow {
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; z-index: 2;
  background: var(--paper); border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 12px;
}
@media(max-width:767px){ .how-arrow { display: none; } }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 24px;
  padding: 22px 32px; border-radius: var(--r);
  background: var(--card); border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  margin-top: 52px;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--sub); white-space: nowrap; }
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--moss); }
.trust-sep { width: 1px; height: 18px; background: var(--line); }
@media(max-width:640px){ .trust-sep { display: none; } }

/* ── UTILS ── */
.z10 { position: relative; z-index: 10; }
.tc  { text-align: center; }
.rel { position: relative; }
@media(max-width:640px){
  #hero { padding-top: 100px; }
  .hero-body { padding: 60px 24px 40px; gap: 24px; }
  #story, #features, #reviews, #pricing, #cta { padding: 80px 0; }
  .wrap, .wrap-md { padding: 0 20px; }
}

/* ── SECTION DIVIDERS ── */
.sec-div { height: 1.5px; margin: 0; background: var(--ink); border: none; }

/* ── FEATURE GRID: 2-col featured first row ── */
.fc.fc-wide {
  grid-column: span 2;
  flex-direction: row; align-items: flex-start; gap: 24px;
}
.fc.fc-wide .fc-icon { width: 52px; height: 52px; flex-shrink: 0; margin-top: 3px; }
@media(max-width:639px){ .fc.fc-wide { grid-column: span 1; flex-direction: column; } }

/* ── EYEBROW PILL ── */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 16px; border-radius: 999px; font-size: 11px; font-weight: 600;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em;
  background: var(--tint); border: 1px solid var(--accent);
  color: var(--accent2); margin-bottom: 18px;
}

/* ── BETTER STATS ── */
.s-stat { position: relative; padding: 28px 24px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); transition: border-color .3s, transform .3s; }
.s-stat:hover { border-color: var(--ink); transform: translateY(-3px); }

/* ── PLATFORM CHIPS ENHANCED ── */
.plat svg { width: 14px; height: 14px; }

/* ── MOBILE TOUCH TARGETS ── */
@media(max-width:640px){
  .btn-main, .btn-ghost { width: 100%; justify-content: center; }
  .cta-row { flex-direction: column; }
  .fc.fc-wide { grid-column: span 1; }
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero { padding: 150px 0 60px; text-align: center; }
.page-hero .h2 { margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: var(--sub); max-width: 560px; margin: 0 auto; line-height: 1.65; }
