/* ════════════════════════════════════════════════════════════
   Workfied — Landing (2026)  ·  Energetic indigo · single typeface (Geist)
   Warm-white surfaces, vivid indigo accent, bold modern SaaS rhythm.
   ════════════════════════════════════════════════════════════ */
:root {
  /* Surfaces — cool near-white */
  --bg:   #FFFFFF;
  --bg2:  #F6F7FD;   /* indigo-tinted section */
  --bg3:  #EEF0FB;
  --paper: #FBFBFE;

  /* Ink */
  --ink:  #14141C;
  --ink2: #4A4A58;
  --ink3: #666673;
  --ghost:#AEAEBA;
  --ondark:  #ECECF6;
  --ondark2: rgba(255,255,255,.62);
  --ondark3: rgba(255,255,255,.42);

  /* Lines */
  --line:  #ECECF3;
  --line2: #DFDFEA;
  --line3: #CFCFDE;

  /* Brand indigo ramp (Workfied logo) */
  --i50:  #EFF0FE;
  --i100: #E2E3FD;
  --i200: #C6C9FB;
  --i300: #A0A4FA;
  --i400: #757BFA;
  --i500: #565DEC;
  --i600: #464DE1;   /* primary */
  --i700: #2F35C9;
  --i800: #232999;
  --ink-deep: #0D0D17;   /* dark sections */

  /* Supporting status hues (used sparingly inside app mocks) */
  --green: #1F8A52; --greenBg: #E7F6ED; --greenLine:#BEE6CD;
  --red:   #D14A30; --redBg:   #FCECE8; --redLine:  #F4CFC5;
  --amber: #C77A12; --amberBg: #FBF1DE;
  --violet:#6D4AAA; --violetBg:#F1ECF9;
  --sky:   #2273C9; --skyBg:   #E8F1FC;

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --r-sm: 10px; --r-md: 14px; --r-lg: 18px; --r-xl: 26px;

  --sh-1: 0 1px 2px rgba(20,20,28,.05), 0 1px 3px rgba(20,20,28,.05);
  --sh-2: 0 4px 12px rgba(20,20,28,.06), 0 16px 40px rgba(30,30,80,.08);
  --sh-3: 0 20px 60px rgba(35,35,90,.16), 0 8px 20px rgba(20,20,28,.08);
  --sh-i: 0 10px 30px rgba(70,77,225,.30);

  --grad: linear-gradient(135deg, #565DEC 0%, #757BFA 100%);
  --grad-deep: linear-gradient(140deg, #2F35C9 0%, #565DEC 60%, #757BFA 100%);

  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 16px; line-height: 1.55; letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: var(--i100); color: var(--i800); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(20,20,40,.16); border-radius: 10px; border: 2px solid transparent; background-clip: padding-box; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }

/* ── Type ─────────────────────────────────────────────── */
.display { font-size: clamp(44px, 6.6vw, 82px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.98; text-wrap: balance; margin: 0; }
.h1 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 600; letter-spacing: -0.034em; line-height: 1.06; text-wrap: balance; margin: 0; }
.h2 { font-size: clamp(25px, 3vw, 36px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.14; text-wrap: balance; margin: 0; }
.h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.018em; line-height: 1.3; margin: 0; }
.lead { font-size: clamp(17px, 1.55vw, 20px); color: var(--ink2); line-height: 1.58; text-wrap: pretty; margin: 0; }
.small { font-size: 13.5px; color: var(--ink3); margin: 0; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ink-accent { color: var(--i600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--i600);
}
.eyebrow::before { content: ""; width: 16px; height: 2px; border-radius: 2px; background: var(--i500); }
.eyebrow.center { justify-content: center; }
.eyebrow.plain::before { display: none; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 20px; height: 46px; border-radius: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.012em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .12s ease, box-shadow .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--i600); color: #fff; box-shadow: var(--sh-i); }
.btn-primary:hover { background: var(--i500); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2A2A38; transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line2); }
.btn-outline:hover { border-color: var(--i300); color: var(--i700); }
.btn-ghost { background: transparent; color: var(--ink2); }
.btn-ghost:hover { color: var(--i700); background: var(--i50); }
.btn-lg { height: 52px; padding: 0 24px; font-size: 16px; border-radius: 13px; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ── Nav ──────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.78); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--line); transition: background .25s ease, border-color .25s ease; }
.nav.scrolled { background: rgba(255,255,255,.86); }
.nav-in { display: flex; align-items: center; gap: 30px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 650; font-size: 18px; letter-spacing: -0.025em; }
.brand-logo { height: 23px; width: auto; display: block; }
.footer .brand-logo { height: 25px; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-i); }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a { padding: 8px 13px; border-radius: 9px; font-size: 14.5px; font-weight: 500; color: var(--ink2); transition: color .12s, background .12s; white-space: nowrap; }
.nav-links a:hover { color: var(--i700); background: var(--i50); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 880px) { .nav-links { display: none; } .nav-in { justify-content: space-between; } .nav-cta .btn-ghost { display: none; } }

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 104px 0; }
.section.tight { padding: 60px 0; }
.section.alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }

/* ── Hero ─────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 72px 0 0; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
/* concentrated colour glow anchored to the BOTTOM, dissolving upward */
.hero-glow { position: absolute; left: 0; right: 0; bottom: 0; height: 560px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 90% at 50% 118%, rgba(70,77,225,.62) 0%, rgba(86,93,236,.30) 40%, rgba(86,93,236,0) 68%),
    radial-gradient(40% 80% at 14% 116%, rgba(117,123,250,.50) 0%, rgba(117,123,250,0) 62%),
    radial-gradient(40% 80% at 86% 116%, rgba(117,123,250,.50) 0%, rgba(117,123,250,0) 62%),
    linear-gradient(180deg, rgba(86,93,236,0) 30%, rgba(86,93,236,.12) 70%, rgba(70,77,225,.30) 100%);
}
.hero-grid-lines { display: none; }
.hero-in { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 110px; }
.hero h1 { margin-top: 26px; max-width: 14ch; }
.hero .lead { margin-top: 24px; max-width: 600px; }

/* ── Hero component tiles (TaskZen-style) ─────────────── */
.hero-cards { width: 100%; max-width: 1080px; margin: 60px auto 0; display: grid; grid-template-columns: 1fr 1.18fr 1fr; gap: 20px; align-items: end; text-align: left; }
.htile { background: #fff; border: 1px solid var(--line2); border-radius: 22px; box-shadow: var(--sh-3); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.htile.mid { transform: translateY(-24px); }
.htile-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14.5px; font-weight: 600; letter-spacing: -0.012em; color: var(--ink); }
.htile-h .meta { font-size: 11.5px; font-weight: 500; color: var(--ink3); }
.htile-h .dots3 { color: var(--ghost); letter-spacing: 2px; font-size: 18px; line-height: 0; }
.htile .big { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; }
.htile .big span { font-size: 14px; font-weight: 500; color: var(--ink3); letter-spacing: -0.01em; }
.htile-btn { margin-top: 2px; height: 40px; border-radius: 11px; border: 1px solid var(--line2); background: #fff; color: var(--ink); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: border-color .15s, color .15s; }
.htile-btn:hover { border-color: var(--i300); color: var(--i700); }
@media (max-width: 980px) { .hero-cards { grid-template-columns: 1fr; max-width: 420px; gap: 16px; } .htile.mid { transform: none; } }

/* mini month-bar chart */
.mbars { display: flex; align-items: flex-end; gap: 6px; height: 118px; }
.mcol { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; height: 100%; justify-content: flex-end; }
.mcol .mb { width: 100%; border-radius: 5px 5px 2px 2px; background: var(--i100); height: var(--h); position: relative; }
.mcol.hot .mb { background: var(--grad); box-shadow: 0 6px 14px rgba(70,77,225,.28); }
.mcol .mlab { font-size: 9.5px; color: var(--ink3); }
.mcol .mtip { position: absolute; top: -23px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 6px; white-space: nowrap; }
.mcol .mtip::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); border: 4px solid transparent; border-top-color: var(--ink); }

/* legend rows */
.htile-legend { display: flex; flex-direction: column; gap: 11px; }
.leg { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink2); }
.leg .ld { width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; }
.leg .lv { margin-left: auto; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.htile .ch-gauge { justify-content: center; }

.pill { display: inline-flex; align-items: center; gap: 9px; padding: 6px 15px 6px 7px; border-radius: 999px; border: 1px solid var(--line2); background: #fff; font-size: 13.5px; font-weight: 500; color: var(--ink2); box-shadow: var(--sh-1); }
.pill .tag { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; background: var(--i50); color: var(--i700); border: 1px solid var(--i100); padding: 3px 9px; border-radius: 999px; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--i500); box-shadow: 0 0 0 4px rgba(86,93,236,.18); }

/* waitlist */
.wl-block { display: flex; flex-direction: column; align-items: center; }
.wl-form { display: flex; gap: 10px; max-width: 470px; width: 100%; }
.wl-form input { flex: 1; min-width: 0; height: 52px; padding: 0 18px; border: 1px solid var(--line2); border-radius: 13px; font: 500 15.5px var(--font); letter-spacing: -0.01em; color: var(--ink); background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; }
.wl-form input::placeholder { color: var(--ink3); font-weight: 400; }
.wl-form input:focus { border-color: var(--i500); box-shadow: 0 0 0 4px var(--i100); }
.wl-form.err input { border-color: var(--red); box-shadow: 0 0 0 4px var(--redBg); }
.wl-done { display: none; align-items: center; gap: 10px; height: 52px; padding: 0 20px; border-radius: 13px; background: var(--i50); border: 1px solid var(--i200); color: var(--i800); font-size: 15px; font-weight: 600; }
.wl-block.done .wl-form { display: none; }
.wl-block.done .wl-done { display: inline-flex; }
.wl-note { margin-top: 13px; }
.wl-note b { color: var(--i700); font-weight: 600; }

/* store badges */
.stores { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.store { display: flex; align-items: center; gap: 12px; padding: 9px 20px 9px 16px; border-radius: 13px; min-height: 56px; background: var(--ink); color: #fff; border: 1px solid var(--ink); transition: transform .14s ease; }
.store:hover { transform: translateY(-2px); }
.store .s-ic { display: flex; align-items: center; flex-shrink: 0; }
.store .s-txt { display: flex; flex-direction: column; }
.store .s-top { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: .62; line-height: 1.4; }
.store .s-name { font-size: 16.5px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }

/* ── Marquee / ritual strip ───────────────────────────── */
.marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee-track { display: flex; width: max-content; }
.mq-set { display: flex; gap: 10px; padding-right: 10px; }
@media (prefers-reduced-motion: no-preference) { .marquee-track { animation: mq 38s linear infinite; } .marquee:hover .marquee-track { animation-play-state: paused; } }
@keyframes mq { to { transform: translateX(-50%); } }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line2); background: #fff; font-size: 13.5px; font-weight: 500; color: var(--ink2); white-space: nowrap; }
.chip .cdot { width: 6px; height: 6px; border-radius: 50%; background: var(--i400); }

/* ── Problem cards ────────────────────────────────────── */
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .g3 { grid-template-columns: 1fr; } }
.pcard { border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff; padding: 30px; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.pcard:hover { border-color: var(--line2); box-shadow: var(--sh-2); transform: translateY(-3px); }
.pcard .pic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; background: var(--i50); color: var(--i600); border: 1px solid var(--i100); }
.pcard h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.018em; margin: 0; }
.pcard p { margin: 0; color: var(--ink2); font-size: 15px; line-height: 1.55; text-wrap: pretty; }
.pcard .pstat { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--i700); }

/* ── How it works flow ────────────────────────────────── */
.flow { display: grid; grid-template-columns: 1fr 44px 1fr 44px 1fr; gap: 16px; align-items: center; margin-top: 52px; }
.flow-col { min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.flow-k { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--ink3); justify-content: center; }
.flow-k b { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--i600); color: #fff; font-size: 12px; font-weight: 700; }
.flow-arrow { display: flex; align-items: center; justify-content: center; color: var(--i400); }
@media (max-width: 940px) { .flow { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } .flow-arrow { transform: rotate(90deg); } }

/* ── Metrics / results band ───────────────────────────── */
.metrics { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; margin-top: 52px; }
@media (max-width: 920px) { .metrics { grid-template-columns: 1fr; } }
.metric-card { border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 30px; background: rgba(255,255,255,.04); }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
@media (max-width: 760px) { .kpi-row { grid-template-columns: 1fr; gap: 14px; } }
.kpi { border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 26px 24px; background: rgba(255,255,255,.04); }
.kpi .n { font-size: clamp(40px, 5vw, 56px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(120deg,#fff,#C6C9FB); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi .l { margin-top: 12px; font-size: 14.5px; color: var(--ondark2); line-height: 1.45; }

/* ── Bento features ───────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 52px; }
.bcard { border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff; padding: 30px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.bcard:hover { border-color: var(--line2); box-shadow: var(--sh-2); }
.bcard h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.018em; margin: 0; }
.bcard p { margin: 0; color: var(--ink2); font-size: 15px; line-height: 1.55; text-wrap: pretty; }
.b-3 { grid-column: span 3; } .b-2 { grid-column: span 2; } .b-6 { grid-column: span 6; }
@media (max-width: 940px) { .b-3, .b-2 { grid-column: span 6; } }

/* ── Intelligence spotlight (top of product section) ── */
.intel { grid-column: span 6; background: var(--ink-deep); border-color: #23233a; color: #fff; padding: 0; }
.intel-in { display: grid; grid-template-columns: 1.02fr 1.18fr; gap: 0; }
@media (max-width: 860px) { .intel-in { grid-template-columns: 1fr; } }
.intel-l { padding: 34px 34px 36px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.intel-l .eyebrow { color: var(--i300); }
.intel-l h3 { font-size: clamp(23px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.026em; line-height: 1.12; color: #fff; margin: 0; text-wrap: balance; }
.intel-l p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ondark2); text-wrap: pretty; }
.intel-meter { margin-top: 4px; }
.intel-meter .mt { display: flex; justify-content: space-between; align-items: baseline; font-size: 12.5px; color: var(--ondark2); margin-bottom: 9px; }
.intel-meter .mt b { color: #fff; font-weight: 600; font-size: 14px; }
.intel-bar { height: 10px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.intel-bar i { display: block; height: 100%; width: var(--w, 87%); border-radius: 99px; background: var(--grad); box-shadow: 0 0 16px rgba(117,123,250,.6); transform-origin: left; }
@keyframes intelGrow { from { transform: scaleX(0); } }
@media (prefers-reduced-motion: no-preference) { .in .intel-bar i { animation: intelGrow 1.3s cubic-bezier(.4,0,.1,1); } }

.intel-r { padding: 28px; border-left: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, rgba(117,123,250,.07), rgba(117,123,250,0)); display: flex; flex-direction: column; gap: 11px; }
@media (max-width: 860px) { .intel-r { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); } }
.intel-r .cap { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ondark2); margin-bottom: 3px; }
.intel-r .cap span { display: inline-flex; align-items: center; gap: 6px; }
.intel-r .cap .lvdot { width: 6px; height: 6px; border-radius: 50%; background: var(--i400); box-shadow: 0 0 0 4px rgba(117,123,250,.22); }
.insight { display: flex; align-items: flex-start; gap: 12px; padding: 13px 15px; border-radius: 13px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); }
.insight .ii { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(117,123,250,.18); color: var(--i300); }
.insight .it { font-size: 13.5px; line-height: 1.45; color: var(--ondark); letter-spacing: -0.008em; }
.insight .it b { color: #fff; font-weight: 600; }
.insight .src { font-size: 11px; color: var(--ondark3); margin-top: 3px; }
.insight .conf { margin-left: auto; align-self: center; font-size: 11px; font-weight: 600; color: var(--i300); white-space: nowrap; }

/* ── Use cases ────────────────────────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.uc { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; padding: 26px; display: flex; flex-direction: column; gap: 9px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.uc:hover { border-color: var(--i200); box-shadow: var(--sh-2); transform: translateY(-3px); }
.uc .ic { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 6px; background: var(--i50); color: var(--i600); border: 1px solid var(--i100); display: flex; align-items: center; justify-content: center; }
.uc h3 { font-size: 17.5px; font-weight: 600; letter-spacing: -0.016em; margin: 0; }
.uc p { margin: 0; font-size: 14.5px; color: var(--ink2); line-height: 1.55; text-wrap: pretty; }
@media (max-width: 880px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .uc-grid { grid-template-columns: 1fr; } }

/* ── Audiences ────────────────────────────────────────── */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.aud { border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px; background: #fff; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s, box-shadow .2s; }
.aud:hover { border-color: var(--i200); box-shadow: var(--sh-2); }
.aud .who { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; padding: 5px 12px; border-radius: 999px; background: var(--i50); color: var(--i700); border: 1px solid var(--i100); font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.aud h3 { font-size: 19px; margin: 0; font-weight: 600; letter-spacing: -0.018em; line-height: 1.25; }
.aud ul { margin: 2px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.aud li { font-size: 14.5px; color: var(--ink2); display: flex; gap: 10px; align-items: baseline; }
.aud li svg { color: var(--i500); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 880px) { .aud-grid { grid-template-columns: 1fr; } }

/* ── Privacy band ─────────────────────────────────────── */
.priv { border: 1px solid var(--line2); border-radius: var(--r-xl); background: linear-gradient(165deg, #FBFBFE, var(--bg2)); padding: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.priv-list { display: flex; flex-direction: column; }
.priv-item { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.priv-item:last-child { border-bottom: 0; }
.priv-item .ic { width: 38px; height: 38px; border-radius: 11px; background: #fff; border: 1px solid var(--line2); color: var(--i600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.priv-item h4, .priv-item h3 { margin: 0; font-size: 15.5px; font-weight: 600; letter-spacing: -0.014em; }
.priv-item p { margin: 3px 0 0; font-size: 14px; color: var(--ink2); line-height: 1.5; }
@media (max-width: 820px) { .priv { grid-template-columns: 1fr; } }

/* ── Pricing ──────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 800px; margin: 52px auto 0; }
.price { border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff; padding: 34px; display: flex; flex-direction: column; }
.price.hot { border-color: var(--i300); box-shadow: 0 0 0 4px var(--i50), var(--sh-2); position: relative; }
.price .tier { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink3); }
.price.hot .tier { color: var(--i700); }
.price .amt { font-size: 50px; font-weight: 600; letter-spacing: -0.04em; margin: 16px 0 2px; }
.price .amt span { font-size: 17px; font-weight: 500; color: var(--ink3); letter-spacing: -0.01em; }
.price ul { list-style: none; margin: 22px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink2); align-items: baseline; }
.price li svg { color: var(--i600); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 44px auto 0; display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; font-size: 17px; font-weight: 550; letter-spacing: -0.016em; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 18px; height: 18px; flex-shrink: 0; background: var(--i600); -webkit-mask: no-repeat center / 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask: no-repeat center / 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 24px; color: var(--ink2); font-size: 15px; line-height: 1.68; max-width: 660px; text-wrap: pretty; }
.faq .a b { color: var(--ink); font-weight: 600; }

/* ── CTA band ─────────────────────────────────────────── */
.cta-band { border-radius: var(--r-xl); background: var(--ink-deep); color: #fff; padding: clamp(44px, 6vw, 80px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 118%, rgba(86,93,236,.55), rgba(86,93,236,0) 70%); pointer-events: none; }
.cta-band .grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(70% 80% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(70% 80% at 50% 0%, #000, transparent 75%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: var(--ondark2); }
.cta-band .wl-form input { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #fff; }
.cta-band .wl-form input::placeholder { color: rgba(255,255,255,.45); }
.cta-band .wl-form input:focus { border-color: var(--i400); box-shadow: 0 0 0 4px rgba(86,93,236,.3); }
.cta-band .wl-done { background: rgba(86,93,236,.22); border-color: rgba(117,123,250,.5); color: #DDDEFB; }
.cta-band .wl-note { color: var(--ondark3); }
.cta-band .wl-note b { color: var(--i300); }
.cta-band .store { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }

/* ── Footer ───────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; background: var(--bg2); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 36px; }
.footer h5, .footer .fh { margin: 0 0 16px; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14px; color: var(--ink2); }
.footer ul a:hover { color: var(--i700); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ── Reveal on scroll — visible by default; animate only when scrolled in ─ */
@keyframes revealIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revealIn .7s cubic-bezier(.2,.7,.2,1) both; }
  .reveal.in[data-d="1"] { animation-delay: .08s; }
  .reveal.in[data-d="2"] { animation-delay: .16s; }
  .reveal.in[data-d="3"] { animation-delay: .24s; }
}

/* ════════ Waitlist confirmation modal + error line ════════ */
.wl-error { color: var(--red); font-weight: 500; margin-top: 12px; }
.wf-overlay { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(15,15,28,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.wf-overlay.open { opacity: 1; pointer-events: auto; }
.wf-modal { width: 100%; max-width: 440px; background: #fff; border-radius: 22px; box-shadow: 0 24px 60px rgba(20,20,40,.4); padding: 38px 34px 32px; text-align: center; position: relative; transform: translateY(12px) scale(.98); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.wf-overlay.open .wf-modal { transform: none; }
.wf-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 9px; border: 0; background: transparent; color: var(--ghost); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.wf-close:hover { background: var(--bg2); color: var(--ink2); }
.wf-check { width: 62px; height: 62px; border-radius: 50%; margin: 4px auto 0; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-i); }
.wf-modal h2 { font: 600 23px var(--font); letter-spacing: -.026em; color: var(--ink); margin: 18px 0 0; }
.wf-modal .sub { font: 400 14.5px var(--font); color: var(--ink2); line-height: 1.55; margin: 10px 0 0; }
.wf-email { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 9px 15px; border-radius: 999px; background: var(--bg2); border: 1px solid var(--line2); max-width: 100%; }
.wf-email svg { color: var(--i600); flex-shrink: 0; }
.wf-email span { font: 600 14px var(--font); color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wf-btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 50px; margin-top: 24px; border-radius: 13px; border: 0; background: var(--i600); color: #fff; font: 600 15px var(--font); cursor: pointer; box-shadow: var(--sh-i); transition: background .15s, transform .1s; }
.wf-btn:hover { background: var(--i500); }
.wf-btn:active { transform: translateY(1px); }
@keyframes wfpop { 0% { transform: scale(.3); opacity: 0; } }
@media (prefers-reduced-motion: no-preference) { .wf-overlay.open .wf-check { animation: wfpop .45s cubic-bezier(.3,1.5,.5,1) both; } }
@media (prefers-reduced-motion: reduce) { .wf-overlay, .wf-modal { transition: none; } }
/* email-capture (form) view inside the modal */
.wf-ps { font: 400 12px/1.55 var(--font); color: var(--ghost); margin: 20px 0 0; text-align: left; }
.wf-view[hidden] { display: none; }
.wf-plan { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; padding: 6px 13px; border-radius: 999px; background: var(--i50); border: 1px solid var(--i100); font: 600 12.5px var(--font); color: var(--i700); text-transform: capitalize; }
.wf-form2 { margin-top: 18px; }
.wf-input { width: 100%; height: 50px; padding: 0 15px; border: 1px solid var(--line2); border-radius: 13px; font: 500 15px var(--font); color: var(--ink); background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; }
.wf-input::placeholder { color: var(--ghost); font-weight: 400; }
.wf-input:focus { border-color: var(--i500); box-shadow: 0 0 0 4px var(--i100); }
.wf-input-err { display: none; color: var(--red); font: 500 13px var(--font); margin: 9px 2px 0; text-align: left; }
.wf-input-err.show { display: block; }
.wf-form2 .wf-btn { margin-top: 14px; }

/* ════════ Mobile nav (hamburger) + responsive waitlist form ════════ */
.nav-burger {
  display: none; flex-shrink: 0; width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line2); border-radius: 12px;
  color: var(--ink); cursor: pointer; transition: background .15s, border-color .15s;
}
.nav-burger:hover { background: var(--i50); border-color: var(--i200); }
.nav-mobile {
  position: absolute; top: 66px; left: 0; right: 0; z-index: 199;
  background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--sh-2);
  padding: 10px 22px 20px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav.menu-open .nav-mobile { opacity: 1; visibility: visible; transform: none; }
.nav-mobile a:not(.btn) { display: block; padding: 14px 4px; font-size: 16px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav-mobile a:not(.btn):hover { color: var(--i700); }
.nav-mobile .btn { display: flex; width: 100%; justify-content: center; border-bottom: 0; margin-top: 0; }
.nav-mobile .btn-outline { margin-top: 20px; }      /* separate the CTA group from the links */
.nav-mobile .btn-primary { margin-top: 14px; color: #fff; }  /* gap from Get-the-app + white text on blue */
@media (max-width: 880px) {
  .nav-burger { display: inline-flex; }
  .nav-cta .btn-primary { display: none; }  /* moved into the menu so the bar fits */
}
@media (min-width: 881px) {
  .nav-mobile { display: none; }
}

/* stack the waitlist form on narrow screens so it never overflows */
@media (max-width: 560px) {
  .wl-form { flex-direction: column; gap: 12px; max-width: 100%; }
  /* reset flex so the input keeps its 52px height (flex-basis:0 was collapsing it) */
  .wl-form input { flex: 0 0 auto; width: 100%; height: 52px; }
  .wl-form .btn { width: 100%; height: 52px; justify-content: center; }
}
