/* Chetav Dev — premium dark landing. Re-skin via --brand-1/2/3 below. */

:root {
  /* ── BRAND GRADIENT (change these three to re-skin everything) ─────────── */
  --brand-1: #6366f1;   /* indigo  */
  --brand-2: #a855f7;   /* violet  */
  --brand-3: #ec4899;   /* fuchsia */
  --grad: linear-gradient(120deg, var(--brand-1), var(--brand-2) 55%, var(--brand-3));
  --accent: #8b7bff;
  --accent-fg: #ffffff;

  /* ── dark surfaces ─────────────────────────────────────────────────────── */
  --bg: #06070d;
  --bg-2: #0a0b14;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f4f5fb;
  --text-2: #b3b7c9;
  --text-3: #777c92;
  --ok: #34d399;

  --r: 18px;
  --r-sm: 12px;
  --r-pill: 999px;
  --maxw: 1140px;
  --font: 'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.03em; font-weight: 800; }
h1 { font-size: clamp(33px, 7.4vw, 66px); font-weight: 900; }
h2 { font-size: clamp(27px, 5.2vw, 46px); }
h3 { font-size: 20px; letter-spacing: -0.02em; }
p { margin: 0; }
em { font-style: italic; color: #fff; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 800px; }
.narrow-mx { max-width: 760px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.muted { color: var(--text-2); }
.small { font-size: 13px; }
.arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr, a:hover > .arr { transform: translateX(4px); }

/* ── background: aurora + grain ────────────────────────────────────────── */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.aurora span:nth-child(1) { width: 60vw; height: 60vw; left: -15vw; top: -20vw; background: radial-gradient(circle, var(--brand-1), transparent 65%); animation: drift1 22s ease-in-out infinite; }
.aurora span:nth-child(2) { width: 55vw; height: 55vw; right: -12vw; top: -8vw; background: radial-gradient(circle, var(--brand-3), transparent 65%); opacity: .35; animation: drift2 26s ease-in-out infinite; }
.aurora span:nth-child(3) { width: 50vw; height: 50vw; left: 20vw; top: 38vh; background: radial-gradient(circle, var(--brand-2), transparent 65%); opacity: .25; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(8vw,6vw)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-7vw,5vw)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(5vw,-6vw)} }
@media (prefers-reduced-motion: reduce) { .aurora span { animation: none; } }
.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: var(--grad); box-shadow: 0 0 12px var(--brand-2); }

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: 15px; white-space: nowrap;
  padding: 13px 22px; border-radius: var(--r-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { color: #fff; background: var(--grad); background-size: 160% 160%;
  box-shadow: 0 10px 30px -8px var(--brand-2), inset 0 1px 0 rgba(255,255,255,.25); animation: shimmer 6s ease infinite; }
.btn-primary:hover { box-shadow: 0 16px 44px -10px var(--brand-2), inset 0 1px 0 rgba(255,255,255,.3); }
@keyframes shimmer { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@media (prefers-reduced-motion: reduce){ .btn-primary{ animation:none } }
.btn-ghost { color: var(--text); background: var(--glass-2); border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; background: rgba(255,255,255,.09); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 17px; font-size: 13.5px; }
.play-mini { width: 0; height: 0; border-left: 9px solid currentColor; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }

/* ── announcement ──────────────────────────────────────────────────────── */
.announce { position: relative; z-index: 60; text-align: center; font-size: 13.5px;
  padding: 9px 42px 9px 16px; color: var(--text); background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.announce.hide { display: none; }
.announce strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.announce b { color: #fff; }
.announce a:hover .arr { transform: translateX(4px); }
.announce-x { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-3); font-size: 20px; cursor: pointer; padding: 2px 8px; }
.announce-x:hover { color: #fff; }

/* ── header ────────────────────────────────────────────────────────────── */
.hdr { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 18px;
  padding: 13px 22px; padding-top: calc(13px + var(--safe-top));
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s; border-bottom: 1px solid transparent; }
.hdr.stuck { background: rgba(6,7,13,.72); backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; letter-spacing: -.02em; }
.brand-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); box-shadow: 0 0 18px -2px var(--brand-2); }
.brand-dim { color: var(--text-3); font-weight: 700; }
.nav { display: none; gap: 26px; margin-left: 14px; color: var(--text-2); font-size: 14.5px; }
.nav a { position: relative; }
.nav a:hover { color: #fff; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--grad); transition: width .2s ease; }
.nav a:hover::after { width: 100%; }
.hdr .btn { margin-left: auto; }

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero { padding: 46px 0 30px; }
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; display: grid; gap: 40px; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2);
  padding: 7px 14px; border-radius: var(--r-pill); background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(8px); }
.pill:hover { border-color: var(--line-2); color: #fff; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.hero h1 { margin: 20px 0 18px; }
.hero .sub { font-size: 18px; color: var(--text-2); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 14px; }
.microtrust { font-size: 13px; color: var(--text-3); font-family: var(--mono); }
.hero-stats { display: flex; align-items: center; gap: 18px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stats b { display: block; font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.hero-stats span { font-size: 12.5px; color: var(--text-3); }
.hero-stats .sep { width: 1px; height: 30px; background: var(--line); }

/* phone */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-glow { position: absolute; width: 80%; height: 70%; background: var(--grad); filter: blur(80px); opacity: .35; border-radius: 50%; }
.phone { position: relative; width: 300px; max-width: 82vw; aspect-ratio: 300/620; }
.phone-bezel { position: absolute; inset: 0; border-radius: 44px; padding: 11px;
  background: linear-gradient(160deg, #1b1d28, #0c0d15); border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.08); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@media (prefers-reduced-motion: reduce){ .phone-bezel{ animation:none } }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: linear-gradient(180deg, #0c0e16, #090a11); display: flex; flex-direction: column; }
.chat-top { display: flex; align-items: center; gap: 9px; padding: 16px 14px 12px; border-bottom: 1px solid var(--line); }
.ava-ai { width: 28px; height: 28px; border-radius: 9px; background: var(--grad); box-shadow: 0 0 14px -2px var(--brand-2); flex: none; }
.chat-top b { font-size: 13.5px; display: block; }
.chat-top i { font-style: normal; font-size: 11px; color: var(--text-3); }
.chat-top .live { margin-left: auto; font-size: 10px; color: var(--ok); font-family: var(--mono); }
.chat-scroll { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 10px; }
.msg { font-size: 12.5px; line-height: 1.45; padding: 9px 12px; border-radius: 14px; max-width: 86%; }
.msg.user { align-self: flex-end; background: var(--grad); color: #fff; border-bottom-right-radius: 4px; min-height: 16px; }
.msg.ai { align-self: flex-start; background: rgba(255,255,255,.06); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.typing-dots { display: inline-flex; gap: 4px; padding: 2px 0; }
.typing-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: blink 1.4s infinite both; }
.typing-dots i:nth-child(2){ animation-delay:.2s } .typing-dots i:nth-child(3){ animation-delay:.4s }
@keyframes blink { 0%,80%,100%{opacity:.3} 40%{opacity:1} }
.card-preview { align-self: stretch; border: 1px solid var(--line); border-radius: 14px; padding: 10px; background: rgba(255,255,255,.04); display: flex; flex-direction: column; gap: 7px; animation: pop .4s ease; }
@keyframes pop { from{opacity:0; transform:scale(.95)} to{opacity:1; transform:scale(1)} }
.cp-bar { display: flex; gap: 4px; }
.cp-bar span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); }
.cp-hero { height: 46px; border-radius: 9px; background: var(--grad); opacity: .85; }
.cp-line { height: 8px; border-radius: 5px; background: rgba(255,255,255,.1); }
.cp-line.w80{ width:80% } .cp-line.w60{ width:60% }
.cp-cta { align-self: flex-start; font-size: 10px; font-weight: 700; color: #fff; background: var(--grad); padding: 6px 14px; border-radius: var(--r-pill); }
.cp-foot { font-family: var(--mono); font-size: 9px; color: var(--text-3); }

/* ── value marquee ─────────────────────────────────────────────────────── */
.marquee { overflow: hidden; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-row { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: scroll-x 26s linear infinite; color: var(--text-2); font-size: 16px; font-weight: 600; }
.marquee-row span:nth-child(even){ color: var(--brand-2); }
@keyframes scroll-x { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion: reduce){ .marquee-row{ animation:none } }

/* ── sections ──────────────────────────────────────────────────────────── */
.sec { padding: 70px 0; }
@media (min-width: 1000px){ .sec { padding: 96px 0; } }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 16px; padding: 5px 12px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--glass); }
.sec h2 { margin-bottom: 18px; }
.lead { font-size: 18px; color: var(--text-2); }

/* glass card base */
.card { background: var(--glass); border: 1px solid var(--line); border-radius: var(--r); backdrop-filter: blur(10px); }

/* walls */
.walls { display: flex; flex-direction: column; gap: 12px; margin: 26px 0; }
.wall { display: flex; gap: 13px; align-items: flex-start; padding: 16px 18px; background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 15.5px; color: var(--text-2); }
.wall b { color: #fff; }
.wall-x { flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: rgba(236,72,153,.14); color: #f472b6; font-size: 11px; font-weight: 800; margin-top: 1px; }
.agitate { font-size: 19px; font-weight: 600; color: #fff; margin-top: 8px; }

/* solution card */
.solution-card { padding: 54px 30px; border-radius: 24px; position: relative; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--line); }
.that-is { font-size: 21px; margin: 14px 0 24px; }
.that-is b { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* steps */
.steps { display: grid; gap: 18px; margin-top: 40px; }
.step { padding: 26px; position: relative; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.step:hover { transform: translateY(-4px); border-color: var(--line-2); }
.step-n { font-family: var(--mono); font-size: 13px; color: var(--brand-2); font-weight: 600; }
.step-ic { font-size: 30px; margin: 14px 0 12px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15px; }

/* compare */
.table-card { margin: 38px 0 30px; padding: 8px; overflow: hidden; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
.compare { width: 100%; min-width: 580px; border-collapse: collapse; font-size: 14.5px; }
.compare th, .compare td { padding: 15px 14px; text-align: center; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: 13px; color: var(--text-3); font-weight: 600; }
.compare tbody th { text-align: left; font-weight: 500; color: var(--text); }
.compare th.us, .compare td.us { background: linear-gradient(180deg, rgba(139,123,255,.13), rgba(139,123,255,.05)); }
.compare thead th.us { color: #fff; font-weight: 800; border-radius: 10px 10px 0 0; }
.compare td.us { color: var(--ok); font-weight: 800; font-size: 17px; }
.compare td { color: var(--text-3); }
.compare td.p { color: var(--text-2); }
.compare tbody tr:last-child td.us { border-radius: 0 0 10px 10px; }

/* demo */
.demo { position: relative; aspect-ratio: 16/9; margin: 38px 0 16px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); }
.demo-glow { position: absolute; width: 50%; height: 60%; background: var(--grad); filter: blur(90px); opacity: .25; }
.play { position: relative; z-index: 1; width: 78px; height: 78px; border-radius: 50%; border: none; cursor: pointer; background: var(--grad); display: grid; place-items: center; box-shadow: 0 14px 40px -8px var(--brand-2); transition: transform .2s ease; }
.play:hover { transform: scale(1.08); }
.play span { width: 0; height: 0; border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }

/* proof stats */
.proof-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 40px; }
.proof-stats div { padding: 24px; text-align: center; background: var(--glass); border: 1px solid var(--line); border-radius: var(--r); }
.proof-stats b { display: block; font-size: 32px; font-weight: 900; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.proof-stats span { font-size: 13px; color: var(--text-3); }
.tgrid { display: grid; gap: 18px; }
.tcard { padding: 26px; transition: transform .2s ease, border-color .2s ease; }
.tcard:hover { transform: translateY(-4px); border-color: var(--line-2); }
.stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.tcard blockquote { font-size: 15.5px; color: var(--text); line-height: 1.55; margin-bottom: 18px; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; }
.ava { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 800; font-size: 13px; color: #fff; flex: none; }
.tcard figcaption b { display: block; font-size: 14px; }
.tcard figcaption i { font-style: normal; font-size: 12.5px; color: var(--text-3); }

/* pricing */
.anchor { font-size: 16.5px; color: var(--text-2); max-width: 620px; margin: 0 auto; }
.anchor b { color: #fff; }
.plans { display: grid; gap: 18px; margin: 44px 0 24px; }
.plan { padding: 28px; display: flex; flex-direction: column; position: relative; transition: transform .2s ease, border-color .2s ease; }
.plan:hover { transform: translateY(-4px); border-color: var(--line-2); }
.plan h3 { font-weight: 700; color: var(--text-2); }
.price { font-size: 38px; font-weight: 900; letter-spacing: -.03em; margin: 8px 0 16px; }
.price span { font-size: 15px; font-weight: 500; color: var(--text-3); }
.localnote { font-size: 12px; color: var(--text-3); margin: -10px 0 4px; }
.plan ul { list-style: none; padding: 0; margin: 8px 0 22px; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: var(--text-2); }
.plan li { display: flex; gap: 9px; }
.plan li::before { content: "✓"; color: var(--ok); font-weight: 800; }
.plan .btn { margin-top: auto; }
.plan.popular { border-color: transparent; background:
  linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
  var(--grad) border-box; border: 1.5px solid transparent; box-shadow: 0 24px 60px -22px var(--brand-2); }
@media (min-width:1000px){ .plan.popular { transform: scale(1.04); } .plan.popular:hover { transform: scale(1.04) translateY(-4px); } }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 11.5px; font-weight: 700; color: #fff; background: var(--grad); padding: 5px 14px; border-radius: var(--r-pill); white-space: nowrap; box-shadow: 0 6px 18px -6px var(--brand-2); }

.founders { display: flex; flex-direction: column; gap: 18px; padding: 28px; align-items: center; text-align: center;
  background: linear-gradient(120deg, rgba(99,102,241,.12), rgba(236,72,153,.1)); border-color: var(--line-2); }
.f-title { font-size: 21px; font-weight: 800; }
.f-bar { width: 100%; max-width: 420px; }
.f-track { height: 10px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 9px; }
.f-track span { display: block; height: 100%; background: var(--grad); box-shadow: 0 0 14px var(--brand-2); }

/* guarantee */
.guarantee { padding: 56px 30px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--line); }
.shield { font-size: 44px; display: inline-block; margin-bottom: 14px; }
.guarantee .lead { margin: 16px auto 26px; }

/* faq */
.faq { margin-top: 38px; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 2px 20px; transition: border-color .2s ease; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; font-weight: 600; font-size: 16px; padding: 17px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-2); font-size: 24px; font-weight: 300; transition: transform .2s ease; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 18px; color: var(--text-2); font-size: 15px; }

/* final cta */
.cta-panel { position: relative; overflow: hidden; padding: 56px 32px; border-radius: 26px;
  background: linear-gradient(160deg, rgba(99,102,241,.16), rgba(236,72,153,.12)); border: 1px solid var(--line-2); }
.cta-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 80%; background: var(--grad); filter: blur(100px); opacity: .3; }
.cta-panel > * { position: relative; }
.cta-panel h2 { margin: 14px 0 16px; }
.waitlist { display: flex; gap: 10px; max-width: 480px; margin: 28px auto 0; flex-wrap: wrap; }
.waitlist input { flex: 1; min-width: 200px; height: 54px; padding: 0 18px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: rgba(0,0,0,.3); color: #fff; font-size: 15.5px; font-family: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.waitlist input::placeholder { color: var(--text-3); }
.waitlist input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(139,123,255,.18); }
.waitlist .btn { height: 54px; }
.form-msg { min-height: 20px; margin-top: 16px; font-size: 14.5px; font-weight: 600; text-align: center; }
.form-msg.ok { color: var(--ok); } .form-msg.err { color: #f472b6; }
.urgency { margin-top: 18px; font-size: 13px; color: var(--text-3); font-family: var(--mono); }

/* footer */
.ftr { border-top: 1px solid var(--line); padding: 46px 0 calc(30px + var(--safe-bottom)); background: var(--bg-2); }
.foot { display: flex; flex-direction: column; gap: 24px; justify-content: space-between; }
.foot-brand .brand { margin-bottom: 10px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-2); font-size: 14.5px; }
.foot-links a:hover { color: #fff; }
.copyright { text-align: center; color: var(--text-3); font-size: 12.5px; margin-top: 30px; }

/* sticky mobile cta */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; padding: 12px 16px calc(12px + var(--safe-bottom));
  background: rgba(6,7,13,.82); backdrop-filter: blur(14px); border-top: 1px solid var(--line);
  transform: translateY(130%); transition: transform .3s cubic-bezier(.2,.9,.3,1); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ── responsive ────────────────────────────────────────────────────────── */
@media (min-width: 760px){
  .nav { display: flex; }
  .steps { grid-template-columns: repeat(3,1fr); }
  .proof-stats { grid-template-columns: repeat(4,1fr); }
  .tgrid { grid-template-columns: repeat(3,1fr); }
  .plans { grid-template-columns: repeat(2,1fr); }
  .founders { flex-direction: row; justify-content: space-between; text-align: left; }
  .foot { flex-direction: row; align-items: center; }
  .sticky-cta { display: none; }
}
@media (min-width: 1000px){
  .hero-inner { grid-template-columns: 1.08fr .92fr; align-items: center; padding-top: 30px; }
  .plans { grid-template-columns: repeat(4,1fr); align-items: stretch; }
}
