/* ============ FONTS ============ */
/* Anta — regular */
@font-face {
  font-family: 'Anta';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anta-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Anta';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anta-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Plus Jakarta Sans — variable font, weights 400–700 */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Geist Mono — variable font, weights 400–500 */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/geist-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/geist-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============ TOKENS ============ */
:root {
  --c-bg: #F1ECE0;
  --c-bgAlt: #E8E1D2;
  --c-surface: #FBF7EE;
  --c-ink: #0F2027;
  --c-inkSoft: #3D5560;
  --c-inkMuted: #7A8B92;
  --c-accent: #319689;
  --c-accentDeep: #1F6E63;
  --c-accentSoft: #CFE3DD;
  --c-accentTint: #E6F0EC;
  --c-line: #D9D2C2;
  --c-danger: #B05656;
  --c-warm: #E8C9A6;
  --c-pp: #D8CFE8;
  --c-dn: #E8D785;
  --c-ak: #A8DCD0;
  --c-et: #B7DCC9;
  --c-sr: #E8C4C4;
  --c-mc: #C9D8E8;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
  --font-logo: 'Anta', system-ui, sans-serif;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
p a { color: inherit; text-decoration: underline; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--c-accent); color: var(--c-surface); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 18px 32px;
  background: var(--c-bgAlt);
  border-bottom: 1px solid var(--c-line);
  transition: padding 200ms ease, background 200ms ease;
}
.nav--scrolled {
  padding: 10px 32px;
  background: color-mix(in oklch, var(--c-bgAlt) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-accentDeep);
  font-family: var(--font-logo);
  font-weight: 400; font-size: 20px;
  letter-spacing: 0.01em;
}
.brand__mark {display: flex;}
.brand--small { font-size: 14px; gap: 6px; }
.nav__links { display: flex; gap: 32px; font-size: 14.5px; color: var(--c-inkSoft); }
.nav__links a:hover { color: var(--c-ink); }
.nav__cta { display: flex; gap: 14px; align-items: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 180ms ease;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--primary {
  background: var(--c-accent); color: #fff;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.15) inset, 0 8px 24px -10px color-mix(in oklch, var(--c-accent) 60%, transparent);
}
.btn--primary:hover { background: var(--c-accentDeep); transform: translateY(-1px); }
.btn--ghost { color: var(--c-ink); border: 1px solid var(--c-line); background: transparent; }
.btn--ghost:hover { background: var(--c-surface); border-color: var(--c-inkMuted); }

/* ============ STORE BADGES ============ */
.store-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-buttons--center { justify-content: center; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  min-height: 56px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.55);
}
.store-btn:hover { background: #1a1a1a; transform: translateY(-1px); }
.store-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--c-accent) 35%, transparent), 0 8px 24px -14px rgba(0, 0, 0, 0.55);
}
.store-btn__icon { width: 26px; height: 28px; flex-shrink: 0; display: block; }
.store-btn--apple .store-btn__icon { width: 22px; height: 26px; }
.store-btn__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-align: left;
}
.store-btn__top {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 4px;
}
.store-btn__main {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.05;
}

/* ============ TYPE ============ */
.display {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.6vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.display--sm { font-size: clamp(40px, 5vw, 68px); }
.display__accent { color: var(--c-accent); }
.h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.h2--sm { font-size: clamp(28px, 3.4vw, 40px); }
.h2--inverse { color: var(--c-surface); }
.h3 {
  font-size: 28px; font-weight: 600;
  line-height: 1.15; letter-spacing: -0.022em;
  margin: 0 0 12px; text-wrap: balance;
}
.h3-sm {
  font-size: 22px; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.02em;
  margin: 0 0 10px; text-wrap: balance;
}
.lede {
  font-size: 18px; line-height: 1.55;
  color: var(--c-inkSoft);
  margin: 0 0 32px; max-width: 56ch;
  text-wrap: pretty;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }
.lede--inverse { color: color-mix(in oklch, var(--c-surface) 80%, transparent); }
.kicker {
  display: inline-block;
  font-family: var(--font-mono), var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-accentDeep); margin-bottom: 18px;
}
.kicker--inverse { color: color-mix(in oklch, var(--c-accentSoft) 90%, transparent); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px; color: var(--c-inkSoft);
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--c-accent) 22%, transparent);
}

/* ============ LAYOUT ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: 120px 32px; }
.section--tight { padding: 80px 32px; }
.section--alt {
  background: var(--c-bgAlt);
  max-width: none;
  padding-left: 32px; padding-right: 32px;
}
.section--alt > *,
.section--problem > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--problem {
  background: var(--c-surface);
  max-width: none;
  padding-left: 32px; padding-right: 32px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.section__head { margin-bottom: 56px; max-width: 720px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ HERO ============ */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 60px 32px 100px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
.hero__copy { max-width: 560px; }
.cta-row { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.cta-row--center { justify-content: center; }
.trust-row {
  display: flex; gap: 14px; align-items: center;
  font-size: 13.5px; color: var(--c-inkMuted);
  flex-wrap: wrap;
}
.trust-row--center { justify-content: center; }
.trust { display: inline-flex; align-items: center; gap: 6px; }
.trust-sep {
  width: 3px; height: 3px;
  background: var(--c-inkMuted);
  border-radius: 50%; opacity: 0.5;
}
.hero__visual {
  position: relative; height: 720px;
  display: flex; align-items: center; justify-content: center;
}
.hero__phone-stack { position: relative; width: 100%; height: 100%; }
.phone-back {
  position: absolute; top: 30px; right: 8%;
  transform: rotate(4deg) scale(0.78);
  filter: blur(0.4px); opacity: 0.65;
}
.phone-front {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 2;
}
@media (min-width: 764px) {
  .phone-back {
    position: absolute; top: 60px; right: -2%;
    transform: rotate(6deg) scale(0.78);
  }
  .phone-front {
    position: absolute; top: 0; left: 32%;
    transform: translateX(-50%) rotate(-3deg);
  }
}
.hero__chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--c-ink); z-index: 4;
  box-shadow: 0 14px 32px -16px rgba(15, 32, 39, 0.18);
}
.hero__chip--1 { top: 30px; left: -8px; color: var(--c-accentDeep); }
.hero__chip--2 { bottom: 90px; right: -8px; }
@media (max-width: 764px) {
  .hero__chip--2 { right: 8px; }
}

/* ============ PHONE / SCREENS ============ */
.phone {
  width: 320px; background: var(--c-surface);
  border-radius: 44px; padding: 12px;
  border: 1px solid var(--c-line);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.5) inset,
    0 30px 60px -30px rgba(15, 32, 39, 0.35),
    0 80px 100px -60px rgba(15, 32, 39, 0.3);
  position: relative;
}
.phone__notch {
  position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #0F2027;
  border-radius: 999px; z-index: 5;
}
.phone__screen {
  background: #F1ECE0;
  border-radius: 32px;
  height: 640px; overflow: hidden;
  position: relative;
}
.feat__visual .phone {
  transform: scale(0.78);
}
@media (max-width: 764px) {
  .phone {
    width: 100%;
  }

  .feat__visual .phone {
    transform: scale(0.95);
  }
}
.screen { padding: 50px 18px 16px; font-size: 12px; color: #0F2027; height: 100%; }
.screen__topbar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 10px; align-items: center;
  margin-bottom: 18px;
}
.screen__topbar--simple { grid-template-columns: 1fr auto; }
.icon-btn {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; color: #0F2027;
}
.screen__title { font-weight: 600; font-size: 14px; }
.screen__date { font-size: 11px; color: #7A8B92; }
.screen__h1 {
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 8px 0 4px;
}
.screen__sub { font-size: 11px; color: #7A8B92; }
.screen__name { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; }
.screen__hero { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.screen__tabs {
  display: flex; gap: 22px;
  border-bottom: 1px solid rgba(15,32,39,0.08);
  padding-bottom: 8px; margin-bottom: 14px;
}
.screen__tab { font-size: 13px; color: #7A8B92; font-weight: 500; position: relative; padding-bottom: 6px; }
.screen__tab--active { color: #319689; }
.screen__tab--active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -9px;
  height: 2px; background: #319689; border-radius: 2px;
}
.screen__caption { font-size: 11px; color: #7A8B92; margin-bottom: 10px; }
.screen__cta {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: #5C9080; color: #fff;
  padding: 14px; border-radius: 14px;
  text-align: center; font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.04em;
  color: #2A4A52; background: #DFE6E9;
  flex-shrink: 0;
}
.avatar--pp { background: var(--c-pp); color: #5B4A8A; }
.avatar--dn { background: var(--c-dn); color: #6B5A18; }
.avatar--ak { background: var(--c-ak); color: #1F5E55; }
.avatar--et { background: var(--c-et); color: #2D6446; }
.avatar--sr { background: var(--c-sr); color: #8A4747; }
.avatar--mc { background: var(--c-mc); color: #3D567A; }
.avatar--warm { background: var(--c-warm); color: #6B4A1F; }
.card { background: rgba(255,255,255,0.85); border-radius: 14px; padding: 12px 14px; margin-bottom: 10px; }
.card--accent { background: #DDEDE7; }
.card--danger { background: #F5DCDC; }
.card__label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: #7A8B92; margin-bottom: 6px; display: block; }
.card__label--accent { color: #1F6E63; }
.card__label--danger { color: #8B3A3A; }
.card__label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.card__count { font-size: 11px; color: #7A8B92; }
.card__body { font-size: 11.5px; line-height: 1.45; color: #0F2027; }
.card__list { font-size: 11.5px; line-height: 1.5; }
.card__list li { padding-left: 14px; position: relative; margin-bottom: 4px; }
.card__list li::before { content: ''; width: 4px; height: 4px; background: #0F2027; border-radius: 50%; position: absolute; left: 4px; top: 7px; }
.card__list--accent li::before { background: #1F6E63; }
.card__list--danger { color: #8B3A3A; }
.card__list--danger li::before { background: #8B3A3A; }
.people-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.person-row { background: rgba(255,255,255,0.85); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.person-row__text { flex: 1; }
.person-row__name { font-weight: 600; font-size: 13px; }
.person-row__date { font-size: 11px; color: #7A8B92; }
.chev { color: #B5C0C5; font-size: 16px; }
.fab {
  position: absolute; bottom: 22px; right: 22px;
  width: 48px; height: 48px; border-radius: 50%;
  background: #5C9080; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 300;
  box-shadow: 0 12px 24px -10px rgba(31,110,99,0.5);
}
.badge { font-size: 10px; padding: 4px 9px; border-radius: 999px; background: #DDEDE7; color: #1F6E63; font-weight: 600; }

/* ============ PROBLEM ============ */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 32px; }
.problem-card__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--c-inkMuted); margin-bottom: 24px; }
.problem-card__title { font-size: 20px; font-weight: 600; letter-spacing: -0.018em; margin-bottom: 10px; }
.problem-card__desc { font-size: 15px; color: var(--c-inkSoft); line-height: 1.55; }

/* ============ FEATURES ============ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 20px; }
.feat { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 36px; display: flex; flex-direction: column; min-width: 0; }
.feat--lg {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px; align-items: center;
  padding: 48px;
  background: var(--c-accentTint);
  border-color: color-mix(in oklch, var(--c-accent) 22%, transparent);
}
.feat--privacy { background: var(--c-ink); color: var(--c-surface); border-color: var(--c-ink); position: relative; overflow: hidden; }
.feat--privacy .feat__num { color: color-mix(in oklch, var(--c-surface) 60%, transparent); }
.feat--privacy .h3-sm { color: var(--c-surface); }
.feat--privacy .feat__desc { color: color-mix(in oklch, var(--c-surface) 80%, transparent); }
.feat__copy { padding-right: 16px; }
.feat__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--c-inkMuted); margin-bottom: 24px; }
.feat__desc { font-size: 15px; color: var(--c-inkSoft); line-height: 1.55; margin-bottom: 20px; }
.feat__bullets { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--c-ink); }
.feat__bullets li { display: flex; align-items: center; gap: 10px; }
.feat__bullets svg { color: var(--c-accent); }
.feat__visual { display: flex; justify-content: center; align-items: center; height: 100%; min-height: 480px; }
.mini-mock { background: var(--c-bg); border-radius: var(--r-md); padding: 20px; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.mini-mock__line { height: 8px; background: color-mix(in oklch, var(--c-inkMuted) 35%, transparent); border-radius: 4px; }
.mini-mock__line--ink { background: var(--c-accent); }
.mini-prep { background: var(--c-bg); border-radius: var(--r-md); padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.mini-prep__row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--c-inkSoft); }
.mini-prep__row svg { color: var(--c-accent); }
.lock-badge {
  margin-top: auto; width: 64px; height: 64px;
  background: color-mix(in oklch, var(--c-surface) 12%, transparent);
  color: var(--c-surface);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in oklch, var(--c-surface) 18%, transparent);
}

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; position: relative; }
.step { padding: 32px 28px; position: relative; }
.step__num { font-size: 64px; line-height: 1; color: var(--c-accent); margin-bottom: 16px; font-weight: 500; }
.step__connector { position: absolute; top: 56px; left: calc(28px + 50px); right: -8px; height: 1px; background: var(--c-line); }
.step:last-child .step__connector { display: none; }
.step__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.step__desc { font-size: 15px; color: var(--c-inkSoft); line-height: 1.55; }

/* ============ BENEFITS ============ */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--c-line); border-left: 1px solid var(--c-line); }
.benefit { padding: 36px 36px 36px 32px; border-right: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); position: relative; }
.benefit__rule { position: absolute; left: 0; top: 36px; width: 3px; height: 22px; background: var(--c-accent); }
.benefit__title { font-size: 26px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 10px; text-wrap: balance; }
.benefit__desc { font-size: 15px; color: var(--c-inkSoft); line-height: 1.55; }

/* ============ PRIVACY ============ */
.section--privacy { padding: 80px 32px; }
.privacy-card {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--c-ink); color: var(--c-surface);
  border-radius: var(--r-2xl); padding: 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}
.privacy-card::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, color-mix(in oklch, var(--c-accent) 28%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-list { display: flex; flex-direction: column; gap: 14px; }
.privacy-list__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: color-mix(in oklch, var(--c-surface) 6%, transparent);
  border-radius: var(--r-md);
  font-size: 16px; color: var(--c-surface);
}
.privacy-list__check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* ============ AUDIENCE ============ */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 880px; margin: 0 auto; }
.chip { padding: 12px 22px; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 999px; font-size: 15px; transition: all 180ms ease; }
.chip:hover { border-color: var(--c-accent); color: var(--c-accentDeep); transform: translateY(-1px); }

/* ============ TESTIMONIAL ============ */
.quote-card { max-width: 840px; margin: 0 auto; text-align: center; padding: 56px 48px; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-2xl); position: relative; }
.quote-card__mark { font-size: 96px; line-height: 0.6; color: var(--c-accent); margin-bottom: 12px; font-weight: 600; }
.quote-card__text { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; line-height: 1.3; letter-spacing: -0.022em; margin-bottom: 32px; text-wrap: balance; }
.quote-card__attrib { display: inline-flex; align-items: center; gap: 12px; }
.quote-card__name { font-weight: 600; font-size: 14px; text-align: left; }
.quote-card__role { font-size: 13px; color: var(--c-inkMuted); text-align: left; }

/* ============ FAQ ============ */
.faq { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--c-line); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; text-align: left; font-size: 18px; font-weight: 500; letter-spacing: -0.012em; }
.faq__plus { font-size: 24px; font-weight: 300; color: var(--c-accent); width: 30px; text-align: center; }
.faq__a { padding: 0 0 24px 0; font-size: 16px; color: var(--c-inkSoft); line-height: 1.6; max-width: 60ch; display: none; }
.faq__item.is-open .faq__a { display: block; }
.faq__item.is-open .faq__plus::before { content: '–'; }
.faq__item:not(.is-open) .faq__plus::before { content: '+'; }
.faq__plus { font-size: 0; }
.faq__plus::before { font-size: 24px; }

/* ============ FINAL ============ */
.final { padding: 140px 32px; text-align: center; }
.final__inner { max-width: 720px; margin: 0 auto; }
.final .display { margin-bottom: 24px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--c-line); padding: 64px 32px 40px; background: var(--c-bgAlt); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; margin-bottom: 64px; }
.footer__tag { font-size: 14px; color: var(--c-inkSoft); margin-top: 14px; max-width: 30ch; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--c-line); color: var(--c-inkSoft); transition: color 160ms ease, border-color 160ms ease; }
.footer__social a:hover { color: var(--c-ink); border-color: var(--c-ink); }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer__col-h { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 14px; }
.footer__cols a { display: block; font-size: 14px; color: var(--c-inkSoft); padding: 5px 0; }
.footer__cols a:hover { color: var(--c-ink); }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; font-size: 13px; color: var(--c-inkMuted); padding-top: 24px; border-top: 1px solid var(--c-line); }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; background: color-mix(in oklch, var(--c-ink) 50%, transparent); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px; }
.modal.is-open { display: flex; animation: fadeIn 200ms ease; }
body.modal-open { overflow: hidden; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 40px; max-width: 480px; width: 100%; position: relative; animation: rise 240ms cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; font-size: 20px; color: var(--c-inkMuted); display: flex; align-items: center; justify-content: center; }
.modal__close:hover { background: var(--c-bgAlt); }
.waitlist-form { display: flex; gap: 8px; margin: 24px 0 16px; }
.waitlist-form input { flex: 1; padding: 14px 18px; border-radius: 999px; border: 1px solid var(--c-line); background: var(--c-bg); font-size: 15px; font-family: inherit; color: var(--c-ink); outline: none; }
.waitlist-form input:focus { border-color: var(--c-accent); box-shadow: 0 0 0 4px color-mix(in oklch, var(--c-accent) 18%, transparent); }
.success { text-align: center; padding: 16px 0 8px; display: none; }
.modal.is-success .success { display: block; }
.modal.is-success .modal__form-wrap { display: none; }
.success__check { width: 56px; height: 56px; border-radius: 50%; background: var(--c-accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 600px; }
  .three-col, .feat-grid, .steps, .footer__cols { grid-template-columns: 1fr; }
  .feat--lg { grid-template-columns: 1fr; padding: 32px; }
  .feat--lg .feat__visual { min-height: 400px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .privacy-card { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .footer__top { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
  .step__connector { display: none; }
}
@media (max-width: 640px) {
  .nav { padding: 14px 18px; }
  .nav--scrolled { padding: 8px 18px; }
  .hero { padding: 32px 18px 60px; }
  .section { padding: 64px 18px; }
  .privacy-card { padding: 32px 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .waitlist-form { flex-direction: column; gap: 12px; }
  .waitlist-form .btn { width: 100%; justify-content: center; }
}
