/* Frame marketing site
   Brand: dark cinematic, accent #6d7cff, Plus Jakarta Sans */

:root {
  --bg: #07080c;
  --bg-2: #0b0d12;
  --elev: #10131b;
  --elev-2: #161a25;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #eef1f7;
  --muted: #8b93a7;
  --faint: #5c6478;
  --accent: #6d7cff;
  --accent-2: #8b97ff;
  --accent-d: rgba(109, 124, 255, 0.16);
  --accent-g: rgba(109, 124, 255, 0.38);
  --teal: #3dd6c5;
  --rec: #ff375f;
  --ok: #3dd68c;
  --warn: #ffb020;
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
  --max: 1120px;
  --measure: 66ch;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: -0.011em;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

/* film grain + vignette */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.7'/></svg>");
  mix-blend-mode: overlay;
}
.skip {
  position: absolute;
  left: 12px; top: -40px;
  background: var(--accent); color: #fff;
  padding: 8px 12px; border-radius: 8px; z-index: 100;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.wrap-narrow { width: min(760px, calc(100% - 48px)); margin: 0 auto; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.nav.is-scrolled,
body.nav-open .nav {
  background: rgba(7, 8, 12, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}
.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 16.5px;
  flex-shrink: 0;
}
.brand-mark {
  width: 22px; height: 22px;
  background: url("../img/logo.svg") center / contain no-repeat;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 11px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  background: var(--elev);
  border-radius: 9px;
  position: relative;
  margin-left: 8px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--text); content: "";
  transition: transform .2s, top .2s, opacity .2s;
}
.nav-toggle span { top: 18px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .12s, background .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 124, 255, 0.28);
}
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.22); }
.btn-lg { height: 48px; padding: 0 20px; font-size: 14.5px; border-radius: 12px; }
.btn-block { width: 100%; }
.chrome-ico {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: conic-gradient(#de3e3e, #fbbc05, #34a853, #4285f4, #de3e3e);
  box-shadow: inset 0 0 0 3px #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 28px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 50%; top: -120px;
  width: 720px; height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(109,124,255,.28), transparent 70%);
  pointer-events: none;
}
.hero-copy { text-align: center; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-d);
}
h1, h2, h3 { letter-spacing: -0.045em; line-height: 1.05; font-weight: 800; margin: 0; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  max-width: 16ch;
  margin: 0 auto 16px;
}
.lead {
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 650;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.sub {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 46ch;
  margin: 0 auto 28px;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-note {
  color: var(--faint);
  font-size: 13px;
  font-weight: 550;
}
.hero-note a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.hero-note a:hover { color: var(--text); }

/* product stage */
.stage {
  position: relative;
  margin: 52px auto 0;
  width: min(960px, calc(100% - 48px));
}
.stage-glow {
  position: absolute;
  inset: -8% -4% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(109,124,255,.22), transparent 65%);
  pointer-events: none;
  filter: blur(8px);
}
.stage-frame {
  position: relative;
  background: #0e1016;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(109,124,255,.08);
}
.stage-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  background: #12151e;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
}
.stage-bar i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2a3040;
  display: block;
}
.stage-bar i:nth-child(1) { background: #ff5f57; }
.stage-bar i:nth-child(2) { background: #febc2e; }
.stage-bar i:nth-child(3) { background: #28c840; }
.stage-bar em { margin-left: auto; font-style: normal; letter-spacing: .02em; }
.stage .mock {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #0a0b10;
}
.stage .mock-zoom { min-height: 0; }
.stage .mock-pad {
  height: 100%;
  padding: clamp(16px, 3.4vw, 32px);
}
.stage .mock-scene { height: 100%; }
.stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0b10;
}
.stage figcaption {
  text-align: center;
  color: var(--faint);
  font-size: 13px;
  font-weight: 550;
  margin-top: 14px;
}

/* ---------- Proof ---------- */
.proof {
  padding: 56px 0 12px;
  text-align: center;
}
.proof p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 18px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.chips li {
  border: 1px solid var(--line);
  background: var(--elev);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.kicker {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 16.5px;
  font-weight: 500;
}

/* ---------- Features ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feature-copy { order: 2; }
.feature h3 { font-size: 26px; margin-bottom: 12px; }
.feature p { color: var(--muted); margin: 0 0 14px; font-size: 15.5px; font-weight: 500; }
.feature .quote {
  color: var(--text);
  font-weight: 650;
  font-size: 14.5px;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin: 16px 0 0;
}
.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-d);
  border: 1px solid rgba(109,124,255,.28);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* mocks */
.mock {
  position: relative;
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.mock-pad { padding: 22px; height: 100%; }
.mock-zoom { min-height: 300px; }
.mock-shot {
  min-height: 0;
  background: #07080c;
}
.mock-shot img,
.mock-shot video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}
.mock-scene {
  position: relative;
  height: 256px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #1a1f2e, #12151e);
  transform-origin: 40% 55%;
  animation: scene-zoom 7s ease-in-out infinite;
}
.mock-ui {
  position: absolute; inset: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mock-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
}
.mock-card.wide { grid-column: 1 / -1; height: 64px; }
.mock-cursor {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(109,124,255,.25), 0 4px 10px rgba(0,0,0,.35);
  animation: cursor-path 7s ease-in-out infinite;
  z-index: 3;
}
.mock-ripple {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  left: 118px; top: 142px;
  animation: rip 7s ease-out infinite;
  pointer-events: none;
}
@keyframes cursor-path {
  0%, 8% { transform: translate(28px, 36px); }
  20% { transform: translate(118px, 142px); }
  26%, 32% { transform: translate(118px, 142px) scale(.82); }
  38% { transform: translate(118px, 142px); }
  44%, 50% { transform: translate(118px, 142px) scale(.82); }
  70% { transform: translate(200px, 80px); }
  100% { transform: translate(28px, 36px); }
}
@keyframes scene-zoom {
  0%, 16% { transform: scale(1) translate(0,0); }
  48%, 68% { transform: scale(1.42) translate(-22px, -10px); }
  86%, 100% { transform: scale(1) translate(0,0); }
}
@keyframes rip {
  0%, 22% { opacity: 0; transform: scale(.4); }
  26% { opacity: 1; transform: scale(.6); }
  36% { opacity: 0; transform: scale(3.4); }
  42% { opacity: 0; transform: scale(.4); }
  46% { opacity: 1; transform: scale(.6); }
  56% { opacity: 0; transform: scale(3.4); }
  100% { opacity: 0; }
}

.mock-editor { min-height: 300px; background: #0e1118; }
.ed-top {
  height: 170px;
  margin: 14px 14px 0;
  border-radius: 10px;
  background: #161a25;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ed-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ed-top::after {
  content: "";
  position: absolute;
  inset: 18% 22%;
  border: 1.5px solid rgba(109,124,255,.7);
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(0,0,0,.28);
  pointer-events: none;
}
.ed-tl {
  margin: 14px;
  height: 84px;
  background: #0b0d12;
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.ed-tl::before {
  content: "";
  position: absolute;
  inset: 28px 12px 28px;
  background: repeating-linear-gradient(90deg, #1c2230 0 8px, transparent 8px 14px);
  border-radius: 4px;
  opacity: .9;
}
.kf {
  position: absolute;
  top: 22px;
  width: 10px; height: 36px;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 0 3px rgba(109,124,255,.25);
}
.kf:nth-child(1) { left: 18%; }
.kf:nth-child(2) { left: 42%; }
.kf:nth-child(3) { left: 71%; }
.playhead {
  position: absolute;
  top: 8px; bottom: 8px; left: 42%;
  width: 2px;
  background: #fff;
  animation: play 6s linear infinite;
}
@keyframes play {
  from { left: 8%; }
  to { left: 88%; }
}

.mock-bg { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 10px; padding: 22px; align-items: stretch; min-height: 280px; }
.bg-swatch {
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.bg-swatch:nth-child(1) { background: linear-gradient(160deg, #1b1430, #0b0d12); }
.bg-swatch:nth-child(2) { background: linear-gradient(160deg, #10201c, #0b0d12); transform: scale(1.04); box-shadow: 0 0 0 2px var(--accent); }
.bg-swatch:nth-child(3) { background: linear-gradient(160deg, #201410, #0b0d12); }
.bg-swatch .mini {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 24%;
  bottom: 20%;
  width: auto;
  height: auto;
  background: #1a2030;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.08);
  object-fit: cover;
  display: block;
}

.mock-chrome { min-height: 300px; background: #0b0d12; }
.chrome-win {
  margin: 16px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
  background: #1c1f28;
}
.chrome-tabs {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 8px 10px 0;
  background: #2a2f3c;
  height: 14px;
  overflow: hidden;
  animation: chrome-out 6s ease-in-out infinite;
}
.chrome-tabs b {
  background: #3a4154;
  color: #c9d0e0;
  border-radius: 8px 8px 0 0;
  width: 108px;
  height: 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chrome-tabs i {
  width: 72px;
  height: 22px;
  border-radius: 8px 8px 0 0;
  background: #242836;
  display: block;
  opacity: .7;
}
.chrome-url {
  height: 32px;
  background: #232734;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  overflow: hidden;
  animation: chrome-out 6s ease-in-out infinite;
}
.chrome-url em {
  width: 10px; height: 10px; border-radius: 50%;
  background: #6d7cff;
  display: block;
  flex-shrink: 0;
}
.chrome-url span {
  flex: 1;
  height: 18px;
  border-radius: 9px;
  background: #1a1d28;
  color: #8b93a7;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 10px;
  letter-spacing: .01em;
}
.chrome-page {
  height: 210px;
  background: #07080c;
  position: relative;
}
.chrome-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@keyframes chrome-out {
  0%, 28% { opacity: 1; max-height: 40px; height: auto; }
  42%, 82% { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; height: 0; border: 0; }
  100% { opacity: 1; max-height: 40px; }
}

.mock-ratio {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding: 36px 18px 28px;
  min-height: 280px;
}
.ratio {
  background: #161a25;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.ratio img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ratio span {
  position: relative;
  z-index: 1;
  padding: 4px 8px 8px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.ratio.r169 { width: 168px; height: 94px; border-color: var(--accent); color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-d); }
.ratio.r916 { width: 58px; height: 104px; }
.ratio.r11 { width: 92px; height: 92px; }

.mock-local { min-height: 300px; display: grid; place-items: center; }
.local-ring {
  width: 148px; height: 148px;
  border-radius: 50%;
  background:
    conic-gradient(var(--accent) 0 72%, #1c2230 0);
  display: grid;
  place-items: center;
  position: relative;
  animation: spin 8s linear infinite;
}
.local-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--elev);
  border-radius: 50%;
}
.local-ring span {
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
}
.local-lock {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- How ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.how-card {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.how-n {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--accent-d);
  color: var(--accent-2);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}
.how-card h3 { font-size: 18px; margin-bottom: 8px; }
.how-card p { color: var(--muted); margin: 0; font-size: 14.5px; font-weight: 500; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.plan {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border-color: rgba(109,124,255,.45);
  box-shadow: 0 0 0 1px rgba(109,124,255,.2), 0 30px 80px rgba(109,124,255,.12);
  background:
    radial-gradient(1200px 200px at 50% -40px, rgba(109,124,255,.16), transparent 50%),
    var(--elev-2);
}
.plan-top { margin-bottom: 18px; }
.plan-name { font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 6px;
}
.plan-price .now { font-size: 48px; font-weight: 800; letter-spacing: -0.05em; }
.plan-price .was {
  color: var(--faint);
  text-decoration: line-through;
  font-weight: 650;
  font-size: 20px;
}
.plan-price .unit { color: var(--muted); font-weight: 600; font-size: 14px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.plan-desc { color: var(--muted); font-size: 14.5px; font-weight: 500; margin: 0 0 18px; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.plan li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14.5px;
  font-weight: 550;
  border-top: 1px solid var(--line);
  color: var(--text);
}
.plan li:first-child { border-top: 0; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: inset 0 0 0 3px var(--elev);
}
.plan.featured li::before { box-shadow: inset 0 0 0 3px var(--elev-2); }
.plan li.off { color: var(--faint); }
.plan li.off::before { background: #2a3040; }

.legal-tiny {
  color: var(--faint);
  font-size: 12.5px;
  margin: 18px 0 0;
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.02em;
  padding: 18px 48px 18px 20px;
  position: relative;
}
.faq-item button::after {
  content: "";
  position: absolute;
  right: 20px; top: 50%;
  width: 10px; height: 10px;
  border-right: 1.6px solid var(--muted);
  border-bottom: 1.6px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq-item.is-open button::after { transform: translateY(-20%) rotate(225deg); }
.faq-item .faq-body {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  max-width: 70ch;
}
.faq-item.is-open .faq-body { display: block; }
.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin: 0; }

/* ---------- Close band ---------- */
.close {
  padding: 28px 0 100px;
  text-align: center;
}
.close-inner {
  background:
    radial-gradient(600px 180px at 50% 0%, rgba(109,124,255,.2), transparent 60%),
    var(--elev);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 24px;
}
.close h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.close p { color: var(--muted); margin: 0 0 22px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 550;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer nav { display: flex; gap: 16px; margin-left: auto; }
.footer a:hover { color: var(--text); }
.footer .copy { color: var(--faint); }

/* ---------- Inner pages ---------- */
.page {
  padding: 48px 0 96px;
}
.page h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 10px; }
.page .deck {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 36px;
  max-width: 50ch;
}
.prose h2 {
  font-size: 22px;
  margin: 36px 0 10px;
}
.prose h3 { font-size: 17px; margin: 24px 0 8px; }
.prose p, .prose li {
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
}
.prose p { margin: 0 0 12px; }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin: 0 0 8px; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose .updated { color: var(--faint); font-size: 13px; margin-bottom: 28px; }

.steps { counter-reset: step; display: flex; flex-direction: column; gap: 14px; }
.step {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 20px 20px 70px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px; top: 20px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-d);
  color: var(--accent-2);
  font-weight: 800;
  display: grid; place-items: center;
}
.step h3 { font-size: 16.5px; margin: 0 0 6px; }
.step p, .step code { color: var(--muted); font-size: 14.5px; margin: 0; }
.step code, .code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  background: #0b0d12;
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--accent-2);
}
pre.codeblock {
  background: #0b0d12;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  overflow: auto;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
  margin: 12px 0 0;
}

.warn {
  background: rgba(255, 176, 32, .08);
  border: 1px solid rgba(255, 176, 32, .28);
  color: #f3d7a0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 550;
  margin: 0 0 22px;
}

/* checkout */
.checkout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.pay-card, .act-card {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.pay-card .now { font-size: 56px; font-weight: 800; letter-spacing: -.05em; }
.fake-fields { display: grid; gap: 10px; margin: 18px 0; }
.fake-fields label {
  font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.fake-fields .field {
  height: 44px;
  border-radius: 10px;
  border: 1px dashed var(--line-2);
  background: #0b0d12;
  color: var(--faint);
  display: flex; align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
}
.act-card h2 { font-size: 22px; margin-bottom: 8px; }
.act-card p { color: var(--muted); font-size: 14.5px; }
#activate-panel { margin-top: 16px; }
.ok-banner {
  background: rgba(61, 214, 140, .1);
  border: 1px solid rgba(61, 214, 140, .3);
  color: #b6f5d4;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 650;
  margin-bottom: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 22px; }
  .feature.reverse .feature-copy { order: 0; }
  .how-grid, .price-grid, .checkout { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}
@media (max-width: 720px) {
  :root { --nav-h: 60px; }
  .wrap, .wrap-narrow, .stage { width: min(100% - 32px, var(--max)); }
  .nav-inner { width: min(100% - 32px, var(--max)); }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7,8,12,.96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 0;
    margin: 0;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .hero h1 { font-size: 38px; }
  .section { padding: 64px 0; }
  .plan-price .now { font-size: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer nav { margin-left: 0; flex-wrap: wrap; }
  .mock-ratio { gap: 10px; }
  .ratio.r169 { width: 132px; height: 74px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
