/* =============================================================
   Slatable — homepage v4
   Design tokens, layout primitives, sections.
   ============================================================= */

:root {
  --ink: #0B0D12;
  --ink-2: #13161E;
  --ink-3: #1B1F2A;
  --paper: #FFFFFF;
  --paper-2: #F5F6F8;
  --paper-3: #EDEFF3;
  --navy: #1F346B;
  --text: #1B1F2A;
  --muted: #6B7280;
  --muted-dark: #9AA3B2;
  --line: rgba(15, 23, 42, 0.08);
  --line-dark: rgba(255, 255, 255, 0.10);
  --blue: #4DB6FE;
  --blue-deep: #1470BD;
  --magenta: #E347F8;
  --orange: #FF6B00;
  --green: #15803D;
  --red: #EF4444;
  --grad-premium: linear-gradient(60deg, #E347F8, #4DB6FE);
  --grad-warm: linear-gradient(60deg, #4DB6FE, #FF6B00);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.10);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
  --container: 1180px;
  --gutter: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--navy); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- accessibility ---------- */
:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; }
.section--dark :focus-visible, .nav :focus-visible, .footer :focus-visible, .newsletter :focus-visible, .cta-band :focus-visible { outline-color: var(--blue); }
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 1000;
  padding: 12px 18px; border-radius: 999px; background: var(--paper); color: var(--navy);
  font-weight: 600; box-shadow: var(--shadow-card);
}
.skip-link:focus { top: 12px; }
.media-toggle {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(11, 13, 18, 0.72); color: #fff; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.media-toggle:hover { background: rgba(11, 13, 18, 0.9); }

/* ---------- layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #E6E9EF; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .muted { color: var(--muted-dark); }
.muted { color: var(--muted); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--blue); }

.display {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.65rem, 2.8vw, 2.4rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 640px; }
.section--dark .lead { color: var(--muted-dark); }
.emph { color: var(--text); font-weight: 500; }
.section--dark .emph { color: #fff; }

.grad-text { background-image: var(--grad-premium); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text--warm { background-image: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons & pills ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--blue); color: var(--ink); }
.btn--primary:hover { background: #2FA7F8; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { border-color: rgba(255,255,255,.5); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy); }

.link { color: var(--blue-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link i { font-size: 12px; transition: transform .2s ease; }
.link:hover i { transform: translateX(3px); }
.section--dark .link { color: var(--blue); }

.pill {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; line-height: 1; color: var(--ink);
}
.pill--premium { background-image: var(--grad-premium); }
.pill--new { background-image: var(--grad-warm); }
.pill--corner { position: absolute; top: 14px; right: 14px; }
.pill--inline { margin-bottom: 16px; }
.pill--tiny { font-size: 9px; padding: 3px 7px; margin-left: 6px; vertical-align: middle; letter-spacing: .06em; white-space: nowrap; }

/* ---------- beta signup (light background, inside a feature row) ---------- */
.beta-form { display: flex; gap: 10px; max-width: 460px; margin-top: 24px; }
.beta-form input[type="email"] {
  flex: 1; min-width: 0; padding: 14px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper-2); color: var(--text); font: inherit; font-size: 15px;
}
.beta-form input[type="email"]::placeholder { color: var(--muted); }
.beta-form input[type="email"]:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 2px; border-color: var(--blue); }
.beta-form .btn { flex-shrink: 0; }
.beta-form__note { margin-top: 10px; font-size: 13px; color: var(--muted); }
.section--dark .beta-form__note { color: var(--muted-dark); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 13, 18, 0.78);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.nav__brand img { height: 26px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a { display: block; padding: 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78); transition: background .2s ease, color .2s ease; }
.nav__links a:hover, .nav__links a.is-current { color: #fff; background: rgba(255,255,255,.08); }
.nav__cta { margin-left: 8px; }
.nav__cta .btn { padding: 10px 18px; font-size: 14px; }
.nav__toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; color: #fff; border-radius: 12px; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

@media (max-width: 960px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 68px;
    background: rgba(11, 13, 18, 0.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 12px var(--gutter) 20px;
    display: none;
  }
  .nav.is-open .nav__menu { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links { flex-direction: column; align-items: stretch; margin: 0; }
  .nav__links a { padding: 12px 14px; font-size: 16px; }
  .nav__cta { margin: 12px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding: clamp(72px, 10vw, 128px) 0 0;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .55;
}
.hero::before { width: 720px; height: 720px; left: -240px; top: -260px; background: radial-gradient(closest-side, rgba(77,182,254,.55), transparent); }
.hero::after { width: 760px; height: 760px; right: -300px; top: 80px; background: radial-gradient(closest-side, rgba(227,71,248,.38), transparent); }
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 { color: #fff; }
.hero .lead { margin: 24px auto 0; color: rgba(255,255,255,.72); }
.hero__actions { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 36px; }
.hero__appstore img { height: 52px; width: auto; }
.hero__trust { display: inline-flex; align-items: center; gap: 14px; margin-top: 36px; font-size: 14px; color: rgba(255,255,255,.66); }
.avatars { display: flex; text-decoration: none; transition: transform .2s ease; }
.avatars:hover, .avatars:focus-visible { transform: translateY(-2px); }
.avatars img { position: relative; width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
/* First face sits on top, each following face tucks underneath the previous one */
.avatars img:nth-child(1) { z-index: 6; }
.avatars img:nth-child(2) { z-index: 5; }
.avatars img:nth-child(3) { z-index: 4; }
.avatars img:nth-child(4) { z-index: 3; }
.avatars img:nth-child(5) { z-index: 2; }
.avatars img:nth-child(6) { z-index: 1; }
.hero__visual { position: relative; z-index: 1; margin-top: clamp(48px, 7vw, 96px); }
.hero__visual img { width: 100%; max-width: 1180px; margin: 0 auto; }
.hero__glow {
  position: absolute; left: 50%; bottom: -10%; transform: translateX(-50%);
  width: 70%; height: 40%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(77,182,254,.35), transparent);
  filter: blur(60px); pointer-events: none;
}
.hero__fade { position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: linear-gradient(to bottom, transparent, var(--paper)); z-index: 2; pointer-events: none; }

/* ---------- statement ---------- */
.statement { padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 5vw, 64px); text-align: center; }
.statement .h2 { max-width: 760px; margin: 0 auto; }
.statement .lead { margin: 18px auto 0; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.step {
  position: relative; padding: 32px 28px 30px; border-radius: var(--radius-lg);
  background: var(--paper-2); border: 1px solid var(--line);
}
.step__num {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 20px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
/* hover: small lift + warm badge; scoped to .in so it doesn't fight the scroll-reveal transform */
.steps .step.in { transition: transform .2s ease, box-shadow .2s ease; }
.steps .step.in:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.step:hover .step__num { background-image: var(--grad-warm); }

/* ---------- feature rows ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
}
.feature__media {
  position: relative; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #F6F7FA 0%, #E8ECF3 100%);
  padding: clamp(28px, 4vw, 48px);
  display: grid; place-items: center; min-height: 420px;
}
.section--dark .feature__media { background: linear-gradient(160deg, #F3F4F8 0%, #DDE2EC 100%); }
.feature__media img,
.feature__media video { max-height: 560px; width: auto; max-width: 100%; }
.feature__media--wide img,
.feature__media--wide video { max-height: none; width: 100%; max-width: 640px; }
/* GIFs with a baked-in white background sit on a white tile */
.feature__media--white { background: #fff !important; box-shadow: inset 0 0 0 1px var(--line); }
/* Cropped screenshots are clipped by the tile edges, like a window onto the phone */
.feature__media--window { overflow: hidden; height: 600px; padding: 0; align-items: center; }
.feature__media--window img,
.feature__media--window video { height: 720px; max-height: none; width: auto; max-width: none; }
.feature--flip .feature__media { order: 2; }
.feature__copy .h3 { margin-bottom: 16px; }
.feature__copy p { color: var(--muted); }
.section--dark .feature__copy p { color: var(--muted-dark); }
.feature__copy .link { margin-top: 8px; }

.feature--center { display: block; text-align: center; }
.feature--center .feature__copy { max-width: 720px; margin: 0 auto 40px; }
.feature--center .feature__media { min-height: 0; }

/* Audition Report: phone with floating detail cards */
.report-stack { position: relative; display: inline-block; }
.report-stack > img { max-height: 560px; }
.callout {
  position: absolute; width: 230px; border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
}
.callout--a { top: 26%; right: -110px; }
.callout--b { bottom: 8%; left: -110px; }

/* Placeholder tile for a missing screenshot */
.placeholder-phone {
  width: 240px; height: 500px; border-radius: 36px;
  background: linear-gradient(160deg, #ffffff, #E4E8F0);
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
  display: grid; place-items: center; color: #9AA3B2; font-size: 64px;
}

/* ---------- card grids ---------- */
.grid { display: grid; gap: 18px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative; border-radius: var(--radius-lg); padding: 30px 26px 28px;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--paper-2); color: var(--navy); font-size: 22px; margin-bottom: 20px;
}
.card h2, .card h3, .card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--muted); }
.section--dark .card { background: rgba(255,255,255,.04); border-color: var(--line-dark); box-shadow: none; }
.section--dark .card__icon { background: rgba(255,255,255,.08); color: #fff; }
.section--dark .card p { color: var(--muted-dark); }

.grid-heading { text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 4vw, 48px); }

/* ---------- premium intro ---------- */
.premium-intro { text-align: center; max-width: 760px; margin: 0 auto clamp(24px, 4vw, 48px); }
.premium-intro .h2 { margin-bottom: 18px; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.quotes__col { display: grid; gap: 20px; }
.quote {
  display: block; margin: 0; padding: 28px 28px 24px; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  color: inherit; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quote:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: var(--blue); }
.quote:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; }
.quote:hover .quote__link { text-decoration: underline; }
.quote p { font-size: 16px; color: var(--text); margin-bottom: 20px; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote__name { font-weight: 600; font-size: 15px; color: var(--navy); }
.quote__credit { font-size: 13px; color: var(--muted); }
.quote__link { margin-left: auto; color: var(--blue-deep); font-size: 14px; font-weight: 600; white-space: nowrap; }
.quote__link i { margin-right: 4px; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; align-items: stretch; }
.plan { position: relative; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); padding: 32px 28px; display: flex; flex-direction: column; }
.plan--featured { border-color: transparent; background-image: linear-gradient(var(--paper), var(--paper)), var(--grad-premium); background-origin: border-box; background-clip: padding-box, border-box; border-width: 2px; box-shadow: var(--shadow-soft); }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); }
.plan h2 { font-size: 1.6rem; }
.plan__who { color: var(--muted); font-size: 14px; margin: 4px 0 18px; }
.plan__price { font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.plan__price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan__yr { font-size: 14px; color: var(--muted); margin-top: 8px; }
.plan__yr del { color: #B0B6C2; margin-right: 4px; }
.plan__yr .save { display: inline-block; margin-left: 6px; padding: 3px 8px; border-radius: 999px; background: #FFE7D6; color: #C2410C; font-size: 11px; font-weight: 700; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 10px; font-size: 15px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li i { margin-top: 5px; font-size: 12px; }
.plan li .ok { color: var(--green); }
.plan li .no { color: var(--red); }
.plan li sup { font-size: .65em; color: var(--muted); margin-left: 2px; }
.plan li.off { color: var(--muted); }
.plan .btn { margin-top: auto; justify-content: center; }

.footnotes { list-style: none; padding: 0; margin: 40px auto 0; max-width: 720px; font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; margin-top: 40px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); padding: 0 22px; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--muted); }

/* ---------- newsletter ---------- */
.newsletter { background: linear-gradient(135deg, #10203F 0%, var(--ink) 60%); color: #fff; }
.newsletter .h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.7); }
.newsletter form { display: flex; gap: 10px; max-width: 520px; margin: 28px auto 0; }
.newsletter input[type="email"] {
  flex: 1; min-width: 0; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 15px;
}
.newsletter input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.newsletter input[type="email"]:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-color: var(--blue); }
.newsletter .btn { flex-shrink: 0; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 40px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; }
.footer h2 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer__brand img { height: 26px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; max-width: 280px; }
.footer__legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__legal a { text-decoration: underline; text-underline-offset: 3px; }
.red-heart { color: #E0245E; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .steps .step.in:hover, .quote:hover { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .callout { width: 200px; }
  .callout--a { right: -60px; }
  .callout--b { left: -60px; }
}
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .quotes__col { display: contents; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature--flip .feature__media { order: 0; }
  .feature__copy { text-align: center; order: -1; }
  .feature__copy .lead, .feature__copy p { margin-left: auto; margin-right: auto; }
  .feature__copy .beta-form { margin-left: auto; margin-right: auto; }
  .feature__media { min-height: 0; }
  .feature__media--window { height: 480px; }
  .feature__media--window img,
  .feature__media--window video { height: 580px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .beta-form { flex-direction: column; }
  .beta-form .btn { justify-content: center; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .newsletter form { flex-direction: column; }
  .report-stack { display: block; }
  .callout { position: static; display: inline-block; width: 46%; max-width: 220px; margin: 14px 1% 0; vertical-align: top; }
  .placeholder-phone { width: 200px; height: 420px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Inner pages
   ============================================================= */

/* ---------- compact page hero ---------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  background: var(--ink); color: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 80px);
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .5;
}
.page-hero::before { width: 560px; height: 560px; left: -200px; top: -240px; background: radial-gradient(closest-side, rgba(77,182,254,.5), transparent); }
.page-hero::after { width: 560px; height: 560px; right: -220px; bottom: -260px; background: radial-gradient(closest-side, rgba(227,71,248,.35), transparent); }
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.03em; }
.page-hero .lead { margin: 18px auto 0; color: rgba(255,255,255,.72); }
.page-hero__note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.45); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, #10203F 0%, var(--ink) 60%); color: #fff; text-align: center; }
.cta-band .h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.7); }
.cta-band .hero__actions { margin-top: 28px; }

/* ---------- plan comparison table ---------- */
.compare-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.compare { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 760px; font-size: 15px; }
.compare th, .compare td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare thead th { position: sticky; top: 0; z-index: 2; background: var(--paper); padding: 22px 18px 18px; }
.compare th:first-child, .compare td:first-child {
  text-align: left; position: sticky; left: 0; z-index: 1; background: var(--paper);
  font-weight: 500; color: var(--text); min-width: 250px;
}
.compare thead th:first-child { z-index: 3; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.compare__plan { display: block; font-weight: 700; font-size: 1.15rem; color: var(--navy); line-height: 1.1; }
.compare__plan.grad-text { color: transparent; }
.compare__price { display: block; font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }
.compare__featured { box-shadow: inset 3px 0 0 transparent; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:not(.compare__group):hover td, .compare tbody tr:not(.compare__group):hover th { background: var(--paper-2); }
.compare__group th {
  text-align: left !important; background: var(--paper-2) !important; color: var(--muted) !important;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: 10px 18px;
}
.compare__group td { background: var(--paper-2); padding: 10px 18px; }
.compare .ok { color: var(--green); font-size: 15px; }
.compare .no { color: var(--muted); font-size: 15px; }
.compare td { color: var(--text); font-weight: 500; }
.compare sup { font-size: .65em; color: var(--muted); margin-left: 2px; }

/* ---------- store ---------- */
.store-section + .store-section { margin-top: clamp(56px, 7vw, 96px); }
.store-section h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 20px; }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.product__img { height: 240px; padding: 28px; background: var(--paper-2); overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product h3 { font-size: 1.1rem; }
.product p { color: var(--muted); font-size: 15px; }
.product__tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--blue-deep); }
.product .btn { margin-top: auto; align-self: flex-start; padding: 11px 18px; font-size: 14px; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.about__photo { position: sticky; top: 96px; }
.about__photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.about__caption { display: grid; gap: 2px; margin-top: 16px; font-size: 14px; color: var(--muted); }
.about__caption strong { color: var(--navy); font-size: 15px; }
.about__story p { color: var(--muted); font-size: 17px; margin-bottom: 1.1em; }
.about__intro { font-size: 1.3rem !important; color: var(--text) !important; font-weight: 500; }
.about__pull { font-size: clamp(1.6rem, 2.6vw, 2.2rem) !important; font-weight: 700; letter-spacing: -0.02em; color: var(--navy) !important; margin: 1.2em 0 !important; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 340px 1fr; gap: 24px; align-items: start; }
.contact__side { display: grid; gap: 20px; }
.embed-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(16px, 3vw, 32px); box-shadow: var(--shadow-card); }

/* ---------- legal ---------- */
.faq--legal { margin-top: 0; }
.legal-embed { padding: 0 0 20px; }

/* ---------- error pages ---------- */
.error { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: clamp(64px, 10vw, 128px) 0; }
.error .hero__actions { margin-top: 28px; }

@media (max-width: 960px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__photo { position: static; max-width: 320px; margin: 0 auto; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .products { grid-template-columns: 1fr; }
  /* Comparison table on phones: slimmer sticky feature column so plan columns have room */
  .compare { font-size: 14px; min-width: 620px; }
  .compare th, .compare td { padding: 12px 12px; }
  .compare th:first-child, .compare td:first-child {
    min-width: 0; width: 150px; max-width: 150px; padding-left: 14px; white-space: normal; line-height: 1.25;
    box-shadow: 4px 0 8px -4px rgba(15, 23, 42, .12);
  }
  .compare thead th:first-child { font-size: 11px; }
  .compare__group th { padding: 8px 14px; }
}

/* Premium trial note on plan cards */
.plan__trial {
  display: inline-flex; align-items: center; align-self: flex-start; gap: 8px; margin-top: 14px;
  padding: 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: #15803D; background: #DCFCE7;
}

.premium-intro .hero__actions { margin-top: 28px; }
.premium-intro__note { margin-top: 14px; font-size: 13px; color: var(--muted-dark); }
