/* NetflixKing.com — design system
   Fonts: Unbounded (display) · Plus Jakarta Sans (body) · JetBrains Mono (stats/labels)
   Colors: near-black canvas + cinematic red accent. See variables below. */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #09090c;
  --bg-1: #0d0d11;
  --bg-elevated: #131318;
  --bg-card: #16161c;
  --bg-card-hover: #1c1c23;
  --border: rgba(255,255,255,.08);
  --border-2: rgba(255,255,255,.14);

  --red: #e5342a;
  --red-2: #ff4438;
  --red-dark: #9e1f18;
  --red-glow: rgba(229,52,42,.35);

  --text: #f7f7f8;
  --text-2: #b7b7bf;
  --text-3: #83838c;
  --text-4: #55555e;

  --ok: #34c77b;
  --no: #6b6b74;

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --shell: 1180px;
  --radius: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.16,.8,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(19px, 2.2vw, 24px); }
p { margin: 0; color: var(--text-2); line-height: 1.65; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-2);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 12px var(--red-2);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--red-glow);
}
.btn-primary:hover { box-shadow: 0 10px 32px -6px var(--red-glow); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--border-2);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); }

.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.scrolled {
  background: rgba(9,9,12,.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--border);
  padding: 11px 0;
}
.hdr-inner { display: flex; align-items: center; gap: 28px; }
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .k { color: var(--red-2); }
.logo .mark { width: 28px; height: 28px; border-radius: 8px; display: block; flex-shrink: 0; }
.logo .word { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; letter-spacing: -.01em; }
.ft-logo img { height: 46px; width: auto; display: block; }
.hdr nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 8px;
}
.hdr nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .2s;
  position: relative;
}
.hdr nav a:hover, .hdr nav a.active { color: var(--text); }
.hdr nav a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--red-2); border-radius: 2px;
}
.hdr-spacer { flex: 1; }
.hdr-cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.burger span::before { position: absolute; top: -5px; }
.burger span::after { position: absolute; top: 5px; }

.mobile-nav {
  position: fixed; inset: 0;
  z-index: 99;
  background: rgba(6,6,8,.98);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 26px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--font-display); font-size: 24px; color: var(--text); }
.mobile-nav .btn { margin-top: 12px; }

body.nav-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 88px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(229,52,42,.22), transparent 60%),
    radial-gradient(80% 60% at 85% 100%, rgba(229,52,42,.14), transparent 55%),
    radial-gradient(60% 50% at 5% 90%, rgba(255,255,255,.05), transparent 55%),
    linear-gradient(180deg, #0a0a0e 0%, #09090c 55%, #08080b 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
  opacity: .5;
}
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  left: 50%; top: 46%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 68%);
  filter: blur(10px);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { opacity: .55; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .85; transform: translate(-50%,-50%) scale(1.08); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 24px 60px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
.hero-brand {
  width: min(300px, 60vw);
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.55));
  opacity: 0;
  transform: translateY(24px);
  animation: rise .9s var(--ease) .1s forwards;
}
.hero-brand img { width: 100%; height: auto; display: block; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 36px);
  max-width: 15ch;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s var(--ease) .28s forwards;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-2);
  max-width: 42ch;
  opacity: 0;
  transform: translateY(18px);
  animation: rise .9s var(--ease) .42s forwards;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise .9s var(--ease) .56s forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- hero TV visual (pure CSS — no images, no slider) ---------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px) scale(.97);
  animation: rise-tv 1.1s var(--ease) .3s forwards;
}
@keyframes rise-tv { to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-tv {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.tv-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(60% 60% at 50% 42%, var(--red-glow), transparent 70%);
  filter: blur(20px);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
.tv-frame {
  position: relative;
  border-radius: 22px;
  padding: 14px 14px 18px;
  background: linear-gradient(155deg, #232329 0%, #17171b 45%, #0e0e11 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 70px -20px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.tv-cam {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3a3a40;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4);
}
.tv-screen {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(70% 60% at 30% 0%, rgba(229,52,42,.16), transparent 60%),
    linear-gradient(165deg, #121216 0%, #0a0a0d 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tv-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
  letter-spacing: -.01em;
}
.tv-brand em { color: var(--red-2); font-style: normal; }
.tv-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--text-3);
}
.tv-live i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 8px var(--red-2);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.tv-hero-tile {
  position: relative;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(0.38 0.14 22) 0%, oklch(0.16 0.05 20) 75%);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}
.tv-hero-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.25);
  padding: 3px 7px;
  border-radius: 999px;
  margin-bottom: auto;
}
.tv-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
}
.tv-playbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: #fff;
  color: #0a0a0c;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
}
.tv-playbtn svg { width: 8px; height: 8px; }
.tv-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 22%;
}
.tv-tile {
  border-radius: 6px;
  background: linear-gradient(155deg, oklch(0.4 0.1 var(--h, 20)), oklch(0.16 0.04 var(--h, 20)));
}
.tv-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2px;
}
.tv-neck {
  width: 14px; height: 16px;
  background: linear-gradient(180deg, #1c1c21, #101013);
  clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
}
.tv-base {
  width: 120px; height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1c1c21, #101013);
  box-shadow: 0 10px 20px -6px rgba(0,0,0,.6);
}
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadein 1s var(--ease) 1s forwards;
}
@keyframes fadein { to { opacity: 1; } }
.hero-scroll .line { width: 1px; height: 26px; background: linear-gradient(180deg, var(--text-4), transparent); animation: scrolldrop 2s ease-in-out infinite; }
@keyframes scrolldrop { 0% { opacity: 0; transform: translateY(-6px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* ---------- proof strip ---------- */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.proof-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  justify-content: space-between;
  padding: 28px 24px;
}
.proof-item {
  flex: 1 1 auto;
  min-width: 150px;
  text-align: center;
  padding: 0 18px;
  border-left: 1px solid var(--border);
}
.proof-item:first-child { border-left: none; }
.proof-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--text);
}
.proof-num .accent { color: var(--red-2); }
.proof-label {
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* ---------- generic sections ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
  max-width: 640px;
}
.section-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { font-size: 16px; }

/* Content is visible by default — no JS/scroll dependency to see it.
   .in just adds a light one-time entrance transition where supported. */
.reveal { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal:not(.in) { opacity: 1; }

/* ---------- why / feature bullets ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.feat-card:hover { border-color: var(--border-2); background: var(--bg-card-hover); transform: translateY(-3px); }
.feat-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(229,52,42,.22), rgba(229,52,42,.05));
  border: 1px solid rgba(229,52,42,.25);
  color: var(--red-2);
  margin-bottom: 16px;
}
.feat-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 15.5px; margin-bottom: 8px; }
.feat-card p { font-size: 13.8px; }

/* ---------- library stat cards ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.stat-card .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text);
}
.stat-card .num .accent { color: var(--red-2); }
.stat-card .lbl { margin-top: 8px; font-size: 14px; color: var(--text-3); }

/* ---------- devices ---------- */
.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.device-card:hover { border-color: rgba(229,52,42,.35); transform: translateY(-3px); background: var(--bg-card-hover); }
.device-card .ic {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-2);
  color: var(--text);
}
.device-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.device-card p { font-size: 12.5px; color: var(--text-3); }

.device-list-neg {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.chip-neg {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.chip-neg::before { content: '✕'; color: var(--no); font-size: 11px; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.check-list li svg { color: var(--ok); flex-shrink: 0; }

/* ---------- pricing ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.plan-card.rec {
  border-color: rgba(229,52,42,.5);
  background: linear-gradient(180deg, rgba(229,52,42,.09), var(--bg-card) 40%);
  box-shadow: 0 20px 50px -20px var(--red-glow);
}
.plan-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  color: var(--text-2);
}
.plan-card.rec .plan-badge { color: #fff; background: var(--red); border-color: var(--red-2); }
.plan-name { font-family: var(--font-body); font-weight: 700; font-size: 17px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amt { font-family: var(--font-mono); font-weight: 600; font-size: 40px; color: var(--text); }
.plan-price .per { font-size: 13px; color: var(--text-3); }
.plan-card ul { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-card ul li { font-size: 13.8px; color: var(--text-2); display: flex; gap: 9px; align-items: flex-start; }
.plan-card ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--red-2); }

.fine-print {
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-1);
}
.fine-print h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin: 0 0 12px; }
.fine-print ul { display: flex; flex-direction: column; gap: 8px; }
.fine-print li { font-size: 13.5px; color: var(--text-3); padding-left: 16px; position: relative; }
.fine-print li::before { content: '—'; position: absolute; left: 0; color: var(--text-4); }

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--red-2);
  opacity: .9;
  margin-bottom: 14px;
}
.step-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.step-card p { font-size: 13.8px; }
.tips-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tips-box .box {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.tips-box h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin: 0 0 12px; }
.tips-box li { font-size: 13.8px; color: var(--text-2); margin-bottom: 8px; padding-left: 16px; position: relative; }
.tips-box li::before { content: '•'; position: absolute; left: 0; color: var(--red-2); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  cursor: pointer;
}
.faq-q span.q { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--text); }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease), background .3s; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--red); border-color: var(--red-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; font-size: 14.5px; color: var(--text-2); max-width: 68ch; }
.faq-item.open .faq-a { max-height: 240px; }

/* ---------- library / languages ---------- */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lang-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.lang-card .nm { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.lang-card .tot { font-family: var(--font-mono); font-size: 12.5px; color: var(--red-2); }
.lang-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.lang-chip { font-size: 12.5px; color: var(--text-3); border: 1px solid var(--border); padding: 7px 13px; border-radius: 999px; font-family: var(--font-mono); }

.spotlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.spotlight-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.spotlight-card .yr { font-family: var(--font-display); font-size: 30px; color: var(--red-2); font-weight: 700; }
.spotlight-card .rows { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.spotlight-card .row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); border-top: 1px solid var(--border); padding-top: 8px; }
.spotlight-card .row b { color: var(--text); font-family: var(--font-mono); font-weight: 600; }

/* ---------- form ---------- */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-side { position: sticky; top: 110px; }
.form-side .quote {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.25;
  color: var(--text);
  margin: 18px 0 22px;
}
.form-side .feats { display: flex; flex-direction: column; gap: 12px; }
.form-side .feats li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--text-2); }
.form-side .feats li svg { color: var(--red-2); flex-shrink: 0; }

.card-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-3); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red-2); }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12.5px; color: var(--text-4); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ic { width: 60px; height: 60px; border-radius: 50%; background: rgba(52,199,123,.14); border: 1px solid rgba(52,199,123,.4); color: var(--ok); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success h3 { margin-bottom: 10px; }

/* ---------- final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, rgba(229,52,42,.24), transparent 65%);
}
.final-cta .inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.final-cta .btn-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg-1);
}
.ft-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.ft-top h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.ft-top ul { display: flex; flex-direction: column; gap: 11px; }
.ft-top ul a { font-size: 14px; color: var(--text-2); transition: color .2s; }
.ft-top ul a:hover { color: var(--text); }
.ft-legal {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-4);
  max-width: 640px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 12px 0 24px;
}
.ft-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-4); }
.ft-bot a { color: var(--text-4); }
.ft-bot a:hover { color: var(--text-2); }

/* toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  display: flex; align-items: center; gap: 10px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* page hero (non-home pages) */
.page-hero {
  padding: 160px 24px 60px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(229,52,42,.18), transparent 60%);
  pointer-events: none;
}
.page-hero .inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: center; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hdr nav, .hdr-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; padding-top: 20px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: 2; }
  .hero-tv { max-width: 380px; }
  .feat-grid, .stat-grid, .device-grid, .plan-grid, .steps, .lang-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 1fr; }
  .form-side { position: static; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .tips-box, .spotlight-grid { grid-template-columns: 1fr; }
  .proof-item { min-width: 44%; border-left: none !important; }
}
@media (max-width: 600px) {
  .feat-grid, .stat-grid, .device-grid, .plan-grid, .steps, .lang-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 26px; }
  .section { padding: 64px 0; }
  .proof-inner { padding: 22px 16px; }
}
