:root {
  --bg: #07080c;
  --bg-soft: #0c0e15;
  --panel: rgba(255,255,255,0.022);
  --panel-2: rgba(255,255,255,0.04);
  --border: rgba(148,163,184,0.11);
  --border-strong: rgba(148,163,184,0.2);
  --text: #eef1f7;
  --muted: #9aa3b5;
  --faint: #6b7280;
  --a1: #6366f1;
  --a2: #22d3ee;
  --amber: #fbbf24;
  --grad: linear-gradient(135deg, #6366f1, #22d3ee);
  --r: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden; letter-spacing: -0.011em;
}
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.glow.i { width: 620px; height: 620px; background: #6366f1; top: -180px; left: -160px; opacity: 0.22; }
.glow.c { width: 560px; height: 560px; background: #22d3ee; top: 380px; right: -160px; opacity: 0.14; }

.wrap { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .25s, border-color .25s, padding .25s; padding: 16px 0; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,8,12,0.74); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--border); padding: 11px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 17px; }
.brand .mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand .logo-img { height: 34px; width: auto; display: block; }
.brand b { font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }

.btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 15px; border: none; border-radius: 999px; padding: 11px 22px; transition: transform .15s, box-shadow .2s, background .2s; }
.btn-grad { background: var(--grad); color: #06070b; box-shadow: 0 6px 22px -6px rgba(34,211,238,0.4); }
.btn-grad:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(34,211,238,0.4), 0 10px 30px -6px rgba(34,211,238,0.5); }
.btn-ghost { background: rgba(255,255,255,0.02); color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: rgba(34,211,238,0.5); background: rgba(255,255,255,0.045); }
.btn-lg { font-size: 16px; padding: 14px 28px; }
.nav-right .btn { gap: 0; }  /* "Request beta access" — drop the flex gap so the words sit normally */
.menu-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; }
.nav.open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(7,8,12,0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--border); }

/* HERO */
.hero { padding: 150px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 50px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #a5f3fc; border: 1px solid rgba(34,211,238,0.28); background: rgba(34,211,238,0.06); padding: 6px 13px; border-radius: 999px; margin-bottom: 24px; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: #22d3ee; box-shadow: 0 0 0 0 rgba(34,211,238,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(34,211,238,0.5);} 70%{box-shadow:0 0 0 7px rgba(34,211,238,0);} 100%{box-shadow:0 0 0 0 rgba(34,211,238,0);} }
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; font-weight: 800; letter-spacing: -0.035em; margin-bottom: 22px; }
h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-micro { margin-top: 22px; font-size: 13.5px; color: var(--faint); display: flex; align-items: center; gap: 9px; }
.hero-micro svg { color: var(--a2); flex-shrink: 0; }

/* DASHBOARD MOCKUP */
.mock { background: linear-gradient(160deg, #0c0e15, #090a10); border: 1px solid var(--border-strong); border-radius: 18px; padding: 14px; position: relative; box-shadow: 0 30px 80px -24px rgba(34,211,238,0.16), 0 2px 0 rgba(255,255,255,0.03) inset; }
.mock::before { content:""; position:absolute; inset:0; border-radius:18px; background: radial-gradient(60% 50% at 80% 110%, rgba(34,211,238,0.08), transparent 70%); pointer-events:none; }
.mock-bar { display: flex; align-items: center; gap: 10px; padding: 6px 8px 14px; border-bottom: 1px solid var(--border); }
.mock-logo { width: 26px; height: 26px; border-radius: 7px; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
.mock-logo svg { width: 16px; height: 16px; }
.mock-title { font-size: 13px; font-weight: 600; }
.mock-title span { color: var(--faint); font-weight: 500; }
.mock-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 3px 9px; border-radius: 999px; }
.mock-live .pulse { width: 6px; height: 6px; }
.mock-avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,#3b3f6b,#1c5c66); display: grid; place-items: center; font-size: 10px; font-weight: 700; color: #cdd3e8; }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 14px 6px 12px; }
.kpi { background: rgba(255,255,255,0.025); border-radius: 10px; padding: 10px 11px; }
.kpi .lab { font-size: 9.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; line-height: 1.3; }
.kpi .val { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.kpi .val.g { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.kpi .delta { font-size: 10px; font-weight: 600; }
.kpi .delta.up { color: #34d399; }
.kpi .delta.cy { color: var(--a2); }
.queue-head { display: flex; justify-content: space-between; align-items: center; padding: 4px 8px 8px; }
.queue-head .t { font-size: 11.5px; font-weight: 600; color: var(--muted); }
.queue-head .s { font-size: 10.5px; color: var(--faint); }
.qrow { display: flex; align-items: center; gap: 11px; padding: 9px 8px; border-radius: 10px; }
.qrow.hot { background: rgba(34,211,238,0.05); border: 1px solid rgba(34,211,238,0.16); }
.grade { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.grade.a { background: var(--grad); color: #06070b; }
.grade.b { background: rgba(99,102,241,0.18); color: #c7c9ff; border: 1px solid rgba(99,102,241,0.4); }
.grade.d { background: rgba(148,163,184,0.1); color: #9aa3b5; }
.qmeta { min-width: 0; flex: 1; }
.qname { font-size: 12.5px; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.qsnip { font-size: 10.5px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pill { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 999px; letter-spacing: 0.03em; flex-shrink: 0; }
.pill.q { color: var(--a2); background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.3); }
.pill.f { color: var(--amber); background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3); }
.pill.n { color: #9aa3b5; background: rgba(148,163,184,0.08); }
.qtag { font-size: 10px; color: var(--faint); display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0; }
.qtag.cy { color: var(--a2); }
.qtag.am { color: var(--amber); }
.mock-foot { display: flex; gap: 8px; padding: 10px 6px 4px; }
.coach-card, .crm-card { flex: 1; border-radius: 10px; padding: 10px 11px; font-size: 10.5px; line-height: 1.4; }
.coach-card { background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.2); }
.crm-card { background: rgba(34,211,238,0.06); border: 1px solid rgba(34,211,238,0.2); }
.cc-head { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 10.5px; margin-bottom: 4px; }
.coach-card .cc-head { color: var(--amber); } .crm-card .cc-head { color: var(--a2); }
.cc-body { color: var(--muted); }

/* SECTIONS */
section { position: relative; padding: 64px 0; z-index: 2; }
.sec-glow { position: absolute; width: 500px; height: 300px; border-radius: 50%; filter: blur(100px); opacity: 0.1; left: 50%; top: 0; transform: translateX(-50%); pointer-events: none; }
.center { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--a1); margin-bottom: 14px; }
h2 { font-size: clamp(27px, 3.6vw, 38px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; }
.sec-sub { font-size: 17px; color: var(--muted); margin-top: 14px; }

/* sub-page hero */
.page-top { padding: 140px 0 24px; text-align: center; position: relative; z-index: 2; }
.page-top h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
.page-top .lead { font-size: 19px; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 36px 0 12px; }
.prose p { font-size: 16.5px; color: var(--muted); margin-bottom: 16px; }
.prose p .hl { color: var(--text); font-weight: 500; }
.prose .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; }

/* trust band */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { text-align: center; }
.trust-num { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust-lab { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* grids + cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; transition: transform .2s, border-color .2s, background .2s; }
.card:hover { transform: translateY(-3px); border-color: rgba(99,102,241,0.4); background: var(--panel-2); }
.card .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25); margin-bottom: 16px; color: var(--a2); }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; color: var(--muted); }

/* pain list */
.pain { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15.5px; color: #cdd3e2; }
.pain:last-child { border-bottom: none; }
.pain svg { color: var(--amber); flex-shrink: 0; margin-top: 3px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.step-n { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); color: #06070b; font-weight: 800; font-size: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--muted); }

/* feature detail rows (alternating) */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 28px; }
.frow:nth-child(even) .frow-media { order: -1; }
.frow-copy .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--a2); margin-bottom: 12px; }
.frow-copy h3 { font-size: 25px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.frow-copy p { font-size: 16px; color: var(--muted); margin-bottom: 14px; }
.frow-media { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 18px; padding: 22px; min-height: 200px; }
.check { list-style: none; }
.check li { font-size: 14.5px; color: #cdd3e2; padding: 7px 0 7px 28px; position: relative; }
.check li::before { content: "✓"; position: absolute; left: 0; color: var(--a2); font-weight: 700; }

/* founder band */
.founder { background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(34,211,238,0.05)); border: 1px solid var(--border); border-radius: 22px; padding: 44px; display: grid; grid-template-columns: 150px 1fr; gap: 36px; align-items: center; }
.founder-photo { width: 150px; height: 150px; border-radius: 18px; background: linear-gradient(135deg,#1a1c2e,#0e2730); border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--faint); font-size: 13px; text-align: center; }
.founder-q { font-size: 21px; font-weight: 600; line-height: 1.4; letter-spacing: -0.015em; }
.founder-q .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.founder-by { margin-top: 16px; font-size: 14px; color: var(--muted); }
.founder-by b { color: var(--text); }

/* results */
.results { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 22px; padding: 44px; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.res-item { text-align: center; }
.res-num { font-size: clamp(32px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.res-lab { font-size: 13.5px; color: var(--muted); margin-top: 10px; }

/* integrations */
.integ { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.integ-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #c2c8d6; background: var(--panel); border: 1px solid var(--border); padding: 11px 18px; border-radius: 12px; }
.integ-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; position: relative; }
.plan.feat { border: 1.5px solid transparent; background: linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box, var(--grad) border-box; box-shadow: 0 24px 60px -28px rgba(34,211,238,0.25); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #06070b; background: var(--grad); padding: 4px 14px; border-radius: 999px; }
.plan-tier { font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #c7c9ff; }
.plan-price { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 4px; }
.plan-tag { font-size: 13.5px; color: var(--muted); min-height: 40px; margin-bottom: 18px; }
.plan ul { list-style: none; margin-bottom: 24px; flex: 1; }
.plan li { font-size: 13.5px; color: #cdd3e2; padding: 7px 0 7px 26px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--a2); font-weight: 700; }
.plan .btn { width: 100%; justify-content: center; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--border); }
.qa-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: inherit; font-size: 16.5px; font-weight: 600; padding: 22px 40px 22px 0; cursor: pointer; position: relative; letter-spacing: -0.01em; }
.qa-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--a2); font-weight: 400; transition: transform .2s; }
.qa.open .qa-q::after { transform: translateY(-50%) rotate(45deg); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa-a p { font-size: 15px; color: var(--muted); padding: 0 30px 24px 0; }

/* final cta */
.final { background: linear-gradient(135deg, rgba(99,102,241,0.14), rgba(34,211,238,0.09)); border: 1px solid var(--border-strong); border-radius: 26px; padding: 60px 32px; text-align: center; position: relative; overflow: hidden; }
.final h2 { margin-bottom: 14px; }
.final p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; font-size: 16.5px; }

/* footer */
footer { border-top: 1px solid var(--border); padding: 50px 0 40px; position: relative; z-index: 2; margin-top: 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
.foot-brand p { font-size: 13.5px; color: var(--muted); margin-top: 14px; max-width: 280px; }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; }
.foot-col a:hover { color: var(--text); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--faint); flex-wrap: wrap; gap: 12px; }
.soc { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; }
.soc .pulse { width: 6px; height: 6px; background: #34d399; box-shadow: none; animation: none; }

/* beta apply form */
.beta-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto 44px; }
.bstep { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.bstep .n { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); color: #06070b; font-weight: 800; font-size: 13px; display: grid; place-items: center; margin-bottom: 12px; }
.bstep h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.bstep p { font-size: 13px; color: var(--muted); }
.form-card { max-width: 620px; margin: 0 auto; background: var(--bg-soft); border: 1px solid var(--border-strong); border-radius: 20px; padding: 32px; box-shadow: 0 24px 60px -30px rgba(34,211,238,0.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field label .req { color: var(--a2); }
.field input, .field textarea, .field select { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border-strong); border-radius: 10px; padding: 12px 13px; color: var(--text); font-family: inherit; font-size: 15px; transition: border-color .15s; }
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: rgba(34,211,238,0.55); background: rgba(255,255,255,0.05); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--faint); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 14px 0; }
.form-success.show { display: block; }
.form-success .tick { width: 56px; height: 56px; border-radius: 50%; background: rgba(34,211,238,0.12); border: 1px solid rgba(34,211,238,0.4); display: grid; place-items: center; margin: 0 auto 18px; font-size: 26px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }
.form-err { display: none; color: #f87171; font-size: 13.5px; text-align: center; margin-top: 12px; }
.form-err.show { display: block; }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .steps, .grid-3, .results-grid, .pricing, .trust-grid { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; gap: 22px; }
  .frow:nth-child(even) .frow-media { order: 0; }
  .founder { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 120px 0 50px; }
  .grid-3, .grid-2, .steps, .results-grid, .pricing, .trust-grid, .foot-grid, .beta-steps, .form-row { grid-template-columns: 1fr; }
  .nav-right .btn span { display: none; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .mock-foot { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } .pulse { animation: none; } }
