/* =====================================================================
   Fave DMA — "Carbon & Crimson" design system
   Neutral carbon-black base, silver metal neutrals (from the wordmark),
   vivid crimson accent. Sora for display, Inter for body, JetBrains Mono
   for technical labels.
   ===================================================================== */

:root {
  --bg: #08080a;
  --bg-2: #0c0c0f;
  --surface: #111114;
  --surface-2: #17171b;
  --surface-3: #1e1e24;
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .12);
  --line-red: rgba(229, 32, 47, .35);
  --red: #e5202f;
  --red-2: #ff3b49;
  --red-3: #ff6b75;
  --red-deep: #8f0f1b;
  --glow: rgba(229, 32, 47, .35);
  --silver: #c9cdd6;
  --text: #f2f2f4;
  --text-2: #d7d7dc;
  --muted: #9a9aa6;
  --muted-2: #6a6a75;
  --green: #22c55e;
  --green-2: #4ade80;
  --grad-red: linear-gradient(135deg, #ff3b49 0%, #e5202f 55%, #b8121f 100%);
  --grad-red-text: linear-gradient(90deg, #ff4d5a, #e5202f 60%, #ff7a68);
  --grad-silver: linear-gradient(180deg, #ffffff 0%, #c9cdd6 100%);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  --r: 14px;
  --r-lg: 22px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* film-grain texture over everything (very subtle) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .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='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-size: inherit; font-weight: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
::selection { background: rgba(229, 32, 47, .35); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: #2a2a31 transparent; }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-thumb { background: #2a2a31; border-radius: 6px; }
*::-webkit-scrollbar-thumb:hover { background: var(--red); }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-md { max-width: 960px; }
.wrap-sm { max-width: 760px; }

/* ---------------------------------------------------------------------
   Typography helpers
   --------------------------------------------------------------------- */
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--red-2); display: inline-flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }
.h1 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; color: #fff; }
.h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.03em; line-height: 1.1; color: #fff; }
.h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; color: #fff; }
.accent { background: var(--grad-red-text); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.silver { background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.mono { font-family: var(--font-mono); }
.lead { font-size: 18px; line-height: 1.6; color: var(--muted); }

/* ---------------------------------------------------------------------
   Buttons & controls
   --------------------------------------------------------------------- */
.btn { height: 50px; padding: 0 24px; border-radius: 12px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: transform .2s var(--ease), background .2s, border-color .2s, box-shadow .2s, filter .2s; white-space: nowrap; }
.btn:active { transform: scale(.98); }
.btn i { font-size: 13px; }
.btn-red { background: var(--grad-red); color: #fff; box-shadow: 0 12px 32px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, .18); }
.btn-red:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 16px 40px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, .18); }
.btn-ghost { background: rgba(255, 255, 255, .04); border: 1px solid var(--line-2); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); }
.btn-white { background: #fff; color: #0a0a0c; }
.btn-white:hover { background: #ececef; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn-block { width: 100%; }
.icon-btn { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: .2s; }
.icon-btn:hover { color: #fff; border-color: var(--line-2); background: rgba(255, 255, 255, .05); }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; padding: 4px 9px; border-radius: 7px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); color: var(--muted); white-space: nowrap; }
.chip.red { background: rgba(229, 32, 47, .1); border-color: var(--line-red); color: var(--red-3); }
.tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; background: var(--red); color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.tag.soft { background: rgba(229, 32, 47, .12); color: var(--red-3); border: 1px solid var(--line-red); }
.tag.green { background: rgba(34, 197, 94, .12); color: var(--green-2); border: 1px solid rgba(34, 197, 94, .3); }

/* ---------------------------------------------------------------------
   Header
   --------------------------------------------------------------------- */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(8, 8, 10, .72); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); border-bottom: 1px solid var(--line); }
.topbar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-red); opacity: .9; }
.topbar-inner { height: 70px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 32px; width: auto; filter: drop-shadow(0 0 8px rgba(229, 32, 47, .25)); }
.nav { display: none; align-items: center; gap: 2px; }
.nav a { position: relative; padding: 9px 14px; border-radius: 9px; font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s, background .2s; }
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .04); }
.nav a.active { color: #fff; }
.nav a.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--red); box-shadow: 0 0 10px var(--glow); }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn-dash { height: 40px; padding: 0 18px; border-radius: 10px; background: var(--grad-red); color: #fff; font-weight: 600; font-size: 14px; display: none; align-items: center; gap: 8px; box-shadow: 0 8px 24px -8px var(--glow), inset 0 1px 0 rgba(255, 255, 255, .18); transition: .2s; }
.btn-dash:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-dash i { font-size: 11px; opacity: .8; }

.lang { position: relative; }
.lang-toggle { height: 38px; padding: 0 10px 0 8px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; transition: .2s; }
.lang-toggle:hover, .lang.open .lang-toggle { color: #fff; border-color: var(--line-2); }
.lang-toggle .flag { width: 18px; height: 13.5px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .12) inset; }
.lang-toggle .caret { font-size: 9px; opacity: .6; transition: transform .2s; }
.lang.open .caret { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 60; min-width: 190px; padding: 6px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(16, 16, 20, .97); backdrop-filter: blur(12px); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8); opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.98); transition: .18s var(--ease); display: grid; }
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-item { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; font-size: 13px; color: var(--muted); transition: .15s; }
.lang-item .flag { width: 18px; height: 13.5px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .12) inset; }
.lang-item:hover { background: rgba(255, 255, 255, .05); color: #fff; }
.lang-item.active { color: #fff; background: rgba(229, 32, 47, .12); }
.lang-item.active::after { content: ""; margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.cart-btn { position: relative; width: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: .3s var(--ease); border: 0 !important; }
.cart-btn.visible { width: 38px; opacity: 1; pointer-events: auto; border: 1px solid var(--line) !important; overflow: visible; }
.cart-badge { position: absolute; top: -7px; right: -7px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 99px; background: var(--red); color: #fff; font-family: var(--font-mono); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px var(--bg); }

.mnav-toggle { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.burger { width: 18px; display: flex; flex-direction: column; gap: 5px; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav { position: fixed; top: 70px; left: 0; right: 0; z-index: 49; padding: 14px 24px 22px; background: rgba(10, 10, 13, .97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .22s var(--ease); }
.mnav.open { transform: none; opacity: 1; pointer-events: auto; }
.mnav a.item { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500; color: var(--text-2); }
.mnav a.item.active { color: var(--red-3); }
.mnav a.item i { font-size: 12px; color: var(--muted-2); }
.mnav .mnav-langs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 14px 0; }
.mnav .mnav-langs .lang-item { border: 1px solid var(--line); justify-content: center; }
.mnav .btn { margin-top: 6px; }
.mnav-backdrop { position: fixed; inset: 0; z-index: 48; background: rgba(0, 0, 0, .5); opacity: 0; pointer-events: none; transition: .2s; }
.mnav-backdrop.open { opacity: 1; pointer-events: auto; }

@media (min-width: 900px) {
  .nav, .btn-dash { display: flex; }
  .mnav-toggle, .mnav, .mnav-backdrop { display: none !important; }
}

/* ---------------------------------------------------------------------
   Reveal
   --------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }
.hero-reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.hero-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero-reveal { opacity: 1; transform: none; transition: none; }
  .hud, .hud-enemy, .hud-scan, .glow { animation: none !important; }
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 56px; }
.hero-grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 75%); }
.glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(50px); }
.glow-1 { top: -220px; right: -120px; width: 760px; height: 760px; background: radial-gradient(closest-side, rgba(229, 32, 47, .22), rgba(229, 32, 47, 0)); animation: drift 16s ease-in-out infinite alternate; }
.glow-2 { left: -300px; bottom: -280px; width: 620px; height: 620px; background: radial-gradient(closest-side, rgba(229, 32, 47, .10), rgba(229, 32, 47, 0)); animation: drift 20s ease-in-out infinite alternate-reverse; }
.beam { position: absolute; top: -10%; left: 46%; width: 1px; height: 120%; background: linear-gradient(180deg, transparent, rgba(229, 32, 47, .35) 40%, transparent); transform: rotate(24deg); opacity: .5; pointer-events: none; }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(-40px, 30px); } }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--red-3); padding: 8px 14px 8px 12px; border: 1px solid var(--line-red); border-radius: 999px; background: rgba(229, 32, 47, .06); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(229, 32, 47, .18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .5; } }
.hero h1 { margin-top: 26px; font-size: clamp(48px, 7.4vw, 96px); }
.hero .lead { margin-top: 22px; max-width: 540px; }
.hero-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; gap: 22px 28px; flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.trust i { color: var(--red-2); font-size: 12px; }

/* HUD illustration */
.hud { position: relative; border-radius: var(--r-lg); border: 1px solid var(--line-2); background: linear-gradient(180deg, #16161b, #0b0b0e); box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .9), 0 0 0 1px rgba(229, 32, 47, .06), 0 40px 120px -50px var(--glow); overflow: hidden; animation: float 9s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }
.hud-bar { height: 42px; border-bottom: 1px solid var(--line); display: flex; align-items: center; padding: 0 14px; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.hud-bar .dots { display: flex; gap: 6px; }
.hud-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: #2a2a31; }
.hud-bar .dots span:first-child { background: var(--red); }
.hud-bar .title { margin-left: 4px; }
.hud-bar .conn { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--green-2); }
.hud-bar .conn::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34, 197, 94, .18); }
.hud-svg { width: 100%; height: auto; display: block; }
.hud-enemy.a { animation: driftA 7s ease-in-out infinite alternate; }
.hud-enemy.b { animation: driftB 9s ease-in-out infinite alternate; }
@keyframes driftA { to { transform: translate(8px, -5px); } }
@keyframes driftB { to { transform: translate(-10px, 4px); } }
.hud-cross { animation: breathe 3s ease-in-out infinite; transform-origin: 300px 186px; }
@keyframes breathe { 50% { transform: scale(1.08); } }
.hud-scan { animation: scan 7s linear infinite; }
@keyframes scan { from { transform: translateY(-80px); } to { transform: translateY(400px); } }
.hud-mono { font-family: var(--font-mono); }

@media (min-width: 900px) {
  .hero { padding: 104px 0 72px; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 56px; }
}

/* ---------------------------------------------------------------------
   Stats bar
   --------------------------------------------------------------------- */
.stats { position: relative; z-index: 2; padding: 0 0 8px; }
.stats-bar { border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01)); display: grid; grid-template-columns: 1fr; overflow: hidden; }
.stat { padding: 22px 26px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.stat:last-child { border-bottom: 0; }
.stat-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(229, 32, 47, .1); border: 1px solid var(--line-red); color: var(--red-2); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -.02em; color: #fff; line-height: 1; }
.stat-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 7px; display: flex; align-items: center; gap: 8px; }
.stat-lbl .live { display: inline-flex; align-items: center; gap: 5px; color: var(--green-2); }
.stat-lbl .live::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
.odometer { display: inline-flex; line-height: 1; font-variant-numeric: tabular-nums; }
.odometer .digit { display: inline-block; height: 1em; overflow: hidden; vertical-align: top; }
.odometer .reel { display: flex; flex-direction: column; transition-property: transform; transition-timing-function: cubic-bezier(.22, 1, .36, 1); will-change: transform; }
.odometer .reel span { display: block; height: 1em; }
@media (min-width: 700px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .stat { border-bottom: 0; border-right: 1px solid var(--line); padding: 26px 30px; }
  .stat:last-child { border-right: 0; }
}

/* ---------------------------------------------------------------------
   Sections
   --------------------------------------------------------------------- */
.sec { padding: 88px 0; position: relative; }
.sec-head { display: flex; flex-direction: column; gap: 14px; max-width: 640px; margin-bottom: 44px; }
.sec-head p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.sec-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.sec-head.row { max-width: none; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-head.row .txt { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
@media (min-width: 900px) { .sec { padding: 104px 0; } }

/* Features bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.feature { grid-column: span 12; padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01)); position: relative; overflow: hidden; transition: .3s var(--ease); display: flex; flex-direction: column; }
.feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 220px at 0% 0%, rgba(229, 32, 47, .14), transparent 60%); opacity: 0; transition: opacity .35s; }
.feature:hover { border-color: rgba(229, 32, 47, .35); transform: translateY(-3px); }
.feature:hover::before { opacity: 1; }
.feature > * { position: relative; }
.feature .num { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: .12em; }
.feature .ic { width: 48px; height: 48px; border-radius: 14px; background: rgba(229, 32, 47, .1); border: 1px solid var(--line-red); color: var(--red-2); display: flex; align-items: center; justify-content: center; font-size: 18px; margin: 18px 0 20px; }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; color: #fff; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.uptime { margin-top: auto; padding-top: 26px; display: flex; align-items: flex-end; gap: 3px; height: 74px; }
.uptime span { flex: 1; border-radius: 2px; background: var(--green); opacity: .75; height: 100%; transform-origin: bottom; animation: bar 2.4s ease-in-out infinite; }
.uptime span:nth-child(odd) { opacity: .5; }
.uptime span.dip { background: #f59e0b; height: 60%; }
@keyframes bar { 50% { transform: scaleY(.85); } }
.uptime-lbl { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); margin-top: 8px; letter-spacing: .08em; }
.pillars { margin-top: auto; padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pillar { padding: 12px; border-radius: 12px; border: 1px solid var(--line); background: rgba(0, 0, 0, .25); font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; display: flex; flex-direction: column; gap: 6px; }
.pillar b { font-family: var(--font-display); font-size: 16px; color: #fff; letter-spacing: 0; text-transform: none; }
@media (min-width: 900px) {
  .feature.w7 { grid-column: span 7; }
  .feature.w5 { grid-column: span 5; }
  .feature { padding: 32px; }
}

/* Products */
.featured { border-radius: 24px; border: 1px solid var(--line-2); background: linear-gradient(120deg, #17171c 0%, #0e0e11 60%); position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr; gap: 28px; padding: 32px; margin-bottom: 20px; }
.featured::after { content: ""; position: absolute; right: -160px; top: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(closest-side, rgba(229, 32, 47, .28), transparent); filter: blur(30px); pointer-events: none; }
.featured > * { position: relative; z-index: 1; }
.featured-body { display: flex; flex-direction: column; gap: 16px; }
.featured h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); letter-spacing: -.03em; color: #fff; line-height: 1.1; }
.featured p { color: var(--muted); font-size: 15.5px; line-height: 1.6; max-width: 520px; }
.featured .games { display: flex; flex-wrap: wrap; gap: 8px; }
.featured .games .chip { padding: 6px 11px; font-size: 12.5px; }
.featured .games .chip i { color: var(--red-2); font-size: 11px; }
.featured .bottom { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.price-block .from { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.price-block .val { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -.03em; color: #fff; line-height: 1.05; }
.price-block .val small { font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.featured-visual { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); background: #0e0f19; aspect-ratio: 16 / 10; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9); }
.featured-visual img { width: 100%; height: 100%; object-fit: cover; }
.featured-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14, 14, 17, .9)); }
.featured-visual .stack { position: absolute; left: 16px; bottom: 16px; right: 16px; display: flex; gap: 8px; flex-wrap: wrap; z-index: 1; }
.featured-visual .stack .chip { background: rgba(8, 8, 10, .75); backdrop-filter: blur(6px); color: #fff; }

.pgrid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pcard { border-radius: 18px; border: 1px solid var(--line); background: var(--surface); overflow: hidden; display: flex; flex-direction: column; transition: .3s var(--ease); position: relative; }
.pcard:hover { border-color: rgba(229, 32, 47, .4); transform: translateY(-4px); box-shadow: 0 30px 60px -30px var(--glow); }
.pcard figure { aspect-ratio: 16 / 9; overflow: hidden; position: relative; background: #0e0f19; }
.pcard figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pcard:hover figure img { transform: scale(1.05); }
.pcard figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(17, 17, 20, .96)); }
.pcard .tag { position: absolute; top: 12px; left: 12px; z-index: 1; }
.pcard-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-top: -26px; position: relative; z-index: 1; }
.pcard h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.01em; color: #fff; }
.pcard .sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); letter-spacing: .04em; margin-top: -6px; }
.pcard .chips { display: flex; gap: 6px; flex-wrap: wrap; }
.pcard .bottom { margin-top: auto; padding-top: 6px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.pcard .from { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.pcard .price { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: #fff; line-height: 1.1; margin-top: 3px; }
.pcard .price small { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.pcard .go { width: 42px; height: 42px; border-radius: 11px; background: rgba(229, 32, 47, .12); border: 1px solid var(--line-red); color: var(--red-2); display: flex; align-items: center; justify-content: center; transition: .2s; flex-shrink: 0; }
.pcard:hover .go { background: var(--red); color: #fff; box-shadow: 0 10px 24px -8px var(--glow); }
@media (min-width: 640px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .featured { grid-template-columns: 1.05fr .95fr; padding: 40px; align-items: center; }
  .pgrid { grid-template-columns: repeat(4, 1fr); }
}

/* How it works */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; counter-reset: step; }
.step { padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); position: relative; overflow: hidden; transition: .3s var(--ease); }
.step:hover { border-color: var(--line-2); transform: translateY(-2px); }
.step .n { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -.04em; background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .15)); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; margin: 18px 0 8px; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.step a { color: var(--red-3); }
.step a:hover { text-decoration: underline; }
.step .ln { position: absolute; right: 24px; top: 30px; font-size: 18px; color: var(--muted-2); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.faq-side .help { margin-top: 26px; padding: 22px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); }
.faq-side .help h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 6px; }
.faq-side .help p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.acc { display: flex; flex-direction: column; gap: 10px; }
.acc-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .02); overflow: hidden; transition: border-color .2s, background .2s; }
.acc-item.open { border-color: rgba(229, 32, 47, .35); background: rgba(229, 32, 47, .03); }
.acc-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; text-align: left; font-weight: 600; font-size: 15.5px; color: #fff; }
.acc-q h3 { font-weight: 600; }
.acc-q .pm { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 11px; transition: .25s var(--ease); flex-shrink: 0; }
.acc-item.open .pm { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.acc-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.acc-item.open .acc-a { grid-template-rows: 1fr; }
.acc-a > div { overflow: hidden; }
.acc-a p { padding: 0 20px 20px; color: var(--muted); font-size: 15px; line-height: 1.65; }
@media (min-width: 900px) {
  .faq-layout { grid-template-columns: .85fr 1.15fr; gap: 56px; }
  .faq-side { position: sticky; top: 100px; }
}

/* SEO copy block */
.seo-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 40px 0 0; border-top: 1px solid var(--line); }
.seo-text { display: flex; flex-direction: column; gap: 14px; }
.seo-text p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.seo-text strong { color: #fff; font-weight: 600; }
.seo-text a { color: var(--red-3); text-decoration: underline; text-decoration-color: rgba(255, 107, 117, .35); text-underline-offset: 3px; }
.seo-text a:hover { text-decoration-color: var(--red-3); }
@media (min-width: 900px) { .seo-grid { grid-template-columns: .8fr 1.2fr; gap: 56px; } }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; border-radius: 26px; padding: 56px 28px; background: linear-gradient(120deg, #170609 0%, #24090f 45%, #0d0d10 100%); border: 1px solid rgba(229, 32, 47, .3); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-banner::before { content: ""; position: absolute; left: 50%; bottom: -220px; width: 720px; height: 420px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(229, 32, 47, .4), transparent); filter: blur(30px); pointer-events: none; }
.cta-banner .wm { position: absolute; right: 32px; bottom: 22px; width: min(420px, 42%); opacity: .08; filter: grayscale(1) brightness(1.6); pointer-events: none; }
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(30px, 4.4vw, 50px); max-width: 700px; }
.cta-banner p { color: var(--muted); font-size: 16px; max-width: 520px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
@media (min-width: 900px) { .cta-banner { padding: 72px 48px; } }

/* Mobile sticky bar (home) */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: rgba(8, 8, 10, .9); backdrop-filter: blur(14px); border-top: 1px solid var(--line); z-index: 40; transform: translateY(100%); transition: transform .3s var(--ease); }
.mobile-bar.show { transform: none; }
@media (min-width: 900px) { .mobile-bar { display: none; } }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.footer { position: relative; border-top: 1px solid var(--line); background: var(--bg-2); }
.footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: .7; }
.footer-grid { padding: 56px 0 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.f-brand { grid-column: 1 / -1; }
.f-brand img { height: 30px; width: auto; }
.f-brand p { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.65; max-width: 340px; }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: .2s; }
.f-social a:hover { color: #fff; border-color: var(--line-red); background: rgba(229, 32, 47, .1); }
.f-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.f-col a { display: block; font-size: 14px; color: var(--muted); padding: 6px 0; transition: color .15s; }
.f-col a:hover { color: #fff; }
.f-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted-2); gap: 12px; flex-wrap: wrap; }
.status { display: inline-flex; align-items: center; gap: 8px; }
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34, 197, 94, .15); }
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; padding: 64px 0 40px; }
  .f-brand { grid-column: auto; }
}

/* ---------------------------------------------------------------------
   Cart drawer / toast / overlays
   --------------------------------------------------------------------- */
.cart-overlay { position: fixed; inset: 0; z-index: 70; background: rgba(0, 0, 0, .6); backdrop-filter: blur(4px); transition: opacity .3s; opacity: 0; pointer-events: none; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 80; width: 100%; max-width: 420px; background: var(--bg-2); border-left: 1px solid var(--line-2); display: flex; flex-direction: column; transition: transform .35s var(--ease); transform: translateX(100%); }
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; gap: 14px; }
.cart-empty .ic { width: 64px; height: 64px; border-radius: 18px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--muted-2); }
.cart-empty p { color: var(--muted); }
.cart-empty button { font-size: 14px; color: var(--red-3); }
.cart-items { display: flex; flex-direction: column; gap: 10px; }
.cart-item { display: flex; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, .02); align-items: center; }
.cart-item img { width: 60px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item .ci-body { flex: 1; min-width: 0; }
.cart-item .ci-name { font-size: 14px; font-weight: 600; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item .ci-plan { font-size: 12px; color: var(--muted); }
.cart-item .ci-price { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.cart-item .ci-remove { width: 28px; height: 28px; border-radius: 8px; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: .15s; flex-shrink: 0; }
.cart-item .ci-remove:hover { color: #fff; background: rgba(229, 32, 47, .3); }
.cart-foot { border-top: 1px solid var(--line); padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-foot .row { display: flex; align-items: center; justify-content: space-between; }
.cart-foot .label { color: var(--muted); font-size: 14px; }
.cart-foot .total { color: #fff; font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.cart-foot .note { color: var(--muted-2); font-size: 12px; margin-top: 4px; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: rgba(20, 20, 24, .96); border: 1px solid var(--line-2); color: #fff; font-size: 14px; padding: 12px 18px; border-radius: 12px; z-index: 90; opacity: 0; transition: .25s var(--ease); pointer-events: none; display: flex; align-items: center; gap: 10px; box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast i { color: var(--green-2); }
.pay-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(6, 6, 8, .88); backdrop-filter: blur(18px); display: none; justify-content: center; align-items: center; padding: 20px; }
.pay-overlay.open { display: flex; animation: fadeIn .2s; }
.pay-card { width: 100%; max-width: 560px; border-radius: 22px; border: 1px solid var(--line-2); background: var(--bg-2); padding: 28px; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9); }
.pay-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.pay-card .sub { color: var(--muted); font-size: 14px; margin-top: -8px; }
.pay-methods { display: grid; grid-template-columns: 1fr; gap: 10px; }
.pay-btn { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); color: #fff; font-weight: 600; transition: .2s; }
.pay-btn i { width: 40px; height: 40px; border-radius: 10px; background: rgba(229, 32, 47, .1); border: 1px solid var(--line-red); color: var(--red-2); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.pay-btn .arrow { margin-left: auto; color: var(--muted-2); font-size: 12px; width: auto; height: auto; border: 0; background: none; }
.pay-btn:hover { border-color: var(--line-red); background: rgba(229, 32, 47, .06); }
.pay-close { align-self: center; color: var(--muted); font-size: 14px; padding: 6px 12px; }
.pay-close:hover { color: #fff; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (min-width: 640px) { .pay-methods { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Product page
   --------------------------------------------------------------------- */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); padding-top: 28px; flex-wrap: wrap; }
.crumbs a:hover { color: #fff; }
.crumbs i { font-size: 9px; }
.crumbs span { color: var(--muted); }
.pp-head { padding: 22px 0 32px; display: flex; flex-direction: column; gap: 14px; max-width: 800px; }
.pp-head .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-head h1 { font-size: clamp(30px, 4vw, 46px); }
.pp-head p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.pp-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; padding-bottom: 96px; }
.pp-main { min-width: 0; display: flex; flex-direction: column; gap: 52px; }
.pp-sec h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -.02em; color: #fff; display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.pp-sec h2 .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--muted-2); font-weight: 500; }
.pp-sec .note { color: var(--muted); font-size: 14px; margin: -8px 0 18px; }
.media { display: grid; gap: 12px; }
.media-main { aspect-ratio: 16 / 9; border-radius: 18px; border: 1px solid var(--line); background: #0b0b0e; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--muted-2); }
.media-main::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 70% 30%, rgba(229, 32, 47, .16), transparent 70%), linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px); background-size: auto, 32px 32px, 32px 32px; }
.media-main > * { position: relative; }
.media-main .play { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .04); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; }
.media-main span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.media-main img, .media-main iframe, .media-main video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.media-thumbs { display: flex; gap: 10px; overflow: auto; padding-bottom: 4px; }
.thumb { width: 124px; height: 70px; border-radius: 10px; border: 1px solid var(--line); overflow: hidden; flex-shrink: 0; cursor: pointer; opacity: .75; transition: .2s; position: relative; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--red); opacity: 1; }
.thumb .lbl { position: absolute; left: 6px; bottom: 5px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(8, 8, 10, .7); padding: 2px 5px; border-radius: 4px; }
.checks { display: grid; grid-template-columns: 1fr; gap: 10px; }
.check { display: flex; gap: 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, .015); font-size: 14px; color: var(--text-2); line-height: 1.45; transition: .2s; }
.check:hover { border-color: var(--line-2); background: rgba(255, 255, 255, .03); }
.check i { color: var(--red-2); margin-top: 3px; font-size: 12px; flex-shrink: 0; width: 14px; text-align: center; }
.fgrid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.fcard { padding: 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255, 255, 255, .015); display: flex; flex-direction: column; gap: 8px; transition: .25s var(--ease); }
.fcard:hover { border-color: var(--line-red); background: rgba(229, 32, 47, .04); transform: translateY(-2px); }
.fcard .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(229, 32, 47, .1); border: 1px solid var(--line-red); color: var(--red-2); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.fcard h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; margin-top: 6px; letter-spacing: -.01em; }
.fcard p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.reqs { display: grid; grid-template-columns: 1fr; gap: 12px; }
.req { display: flex; gap: 14px; padding: 16px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); align-items: flex-start; }
.req .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--silver); flex-shrink: 0; }
.req span { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.req .txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.req .txt span { font-size: 13px; color: var(--muted); }
.req .rt { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--red-3); }
.req .rt.opt { color: var(--muted-2); }
.req h4 { font-weight: 600; font-size: 14px; color: #fff; line-height: 1.35; }
.prose p { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.prose p + p { margin-top: 14px; }
.rel-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.rel { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255, 255, 255, .015); transition: .2s; min-width: 0; }
.rel:hover { border-color: var(--line-red); background: rgba(229, 32, 47, .05); }
.rel img { width: 64px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.rel .txt { min-width: 0; flex: 1; }
.rel .t { display: block; font-size: 14px; font-weight: 600; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rel .s { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.rel .arr { color: var(--muted-2); font-size: 12px; }

.buy { order: -1; border-radius: 22px; border: 1px solid var(--line-2); background: linear-gradient(180deg, #16161a, #0e0e11); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8); overflow: hidden; } /* mobile: purchase panel first */
.buy-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.buy-head .inst { display: inline-flex; align-items: center; gap: 7px; color: var(--green-2); }
.buy-head .inst::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.plans { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.plan { position: relative; display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); cursor: pointer; transition: .2s var(--ease); }
.plan:hover { border-color: var(--line-2); }
.plan.selected { border-color: var(--red); background: rgba(229, 32, 47, .08); box-shadow: inset 0 0 0 1px rgba(229, 32, 47, .35), 0 10px 30px -20px var(--glow); }
.plan .rd { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--muted-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: .2s; }
.plan .rd::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: 0; transition: .2s; }
.plan.selected .rd { border-color: var(--red); background: var(--red); }
.plan.selected .rd::after { opacity: 1; }
.plan .pl { min-width: 0; }
.plan .pl-name { font-weight: 600; color: #fff; font-size: 15px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.plan .pl-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.plan .pl-sub s { color: var(--muted-2); margin-right: 4px; }
.plan .pl-price { margin-left: auto; text-align: right; flex-shrink: 0; }
.plan .pl-price b { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.plan .pl-price b small { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.plan .pl-price small.tot { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-2); margin-top: 3px; }
.buy-foot { padding: 6px 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.buy-total { display: flex; justify-content: space-between; align-items: center; padding: 10px 6px 4px; font-size: 14px; color: var(--muted); }
.buy-total b { color: #fff; font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.buy-pay { display: flex; justify-content: center; align-items: center; gap: 14px; color: var(--muted-2); font-size: 20px; padding: 6px 0 2px; }
.buy-pay span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.buy-guar { padding: 14px 18px 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.buy-guar li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.buy-guar li i { color: var(--red-2); font-size: 12px; width: 14px; text-align: center; }
.buybar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; padding: 12px 16px; background: rgba(8, 8, 10, .92); backdrop-filter: blur(14px); border-top: 1px solid var(--line); transform: translateY(100%); transition: transform .3s var(--ease); display: flex; align-items: center; gap: 12px; }
.buybar.show { transform: none; }
.buybar .bb-price { display: flex; flex-direction: column; }
.buybar .bb-price small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.buybar .bb-price b { font-family: var(--font-display); font-size: 18px; color: #fff; }
.buybar .btn { flex: 1; height: 46px; }
.buybar .icon-btn { width: 46px; height: 46px; }
.mobile-gap { height: 84px; }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(6, 6, 8, .94); backdrop-filter: blur(18px); display: flex; align-items: center; justify-content: center; padding: min(5vw, 10vh); opacity: 0; pointer-events: none; transition: .25s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { object-fit: contain; max-width: 100%; max-height: 100%; border-radius: 16px; border: 1px solid var(--line-2); box-shadow: 0 0 80px rgba(229, 32, 47, .2); }
@media (min-width: 640px) { .checks, .reqs, .rel-grid, .fgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .pp-layout { grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; }
  .buy { order: 0; position: sticky; top: 92px; }
  .buybar, .mobile-gap { display: none; }
}

/* ---------------------------------------------------------------------
   Index pages (guides / legal) & document pages
   --------------------------------------------------------------------- */
.page-hero { padding: 64px 0 36px; display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 52px); }
.page-hero p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.page-hero p a { color: var(--red-3); }
.page-hero p a:hover { text-decoration: underline; }
.intro { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 800px; padding-bottom: 40px; }
.cards { display: grid; grid-template-columns: 1fr; gap: 14px; padding-bottom: 88px; }
.gcard { display: flex; gap: 18px; padding: 22px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); transition: .25s var(--ease); position: relative; overflow: hidden; align-items: flex-start; }
.gcard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); opacity: 0; transition: .25s; }
.gcard:hover { border-color: rgba(229, 32, 47, .35); transform: translateY(-2px); background: rgba(255, 255, 255, .03); }
.gcard:hover::before { opacity: 1; }
.gcard .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(229, 32, 47, .1); border: 1px solid var(--line-red); color: var(--red-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.gcard .body { flex: 1; min-width: 0; }
.gcard .idx { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--muted-2); margin-bottom: 6px; }
.gcard h2 { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: #fff; margin-bottom: 6px; letter-spacing: -.01em; line-height: 1.3; }
.gcard p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.gcard .arrow { width: 32px; height: 32px; border-radius: 9px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; transition: .2s; font-size: 12px; }
.gcard:hover .arrow { background: var(--red); border-color: var(--red); color: #fff; }
.mini-cta { margin-bottom: 88px; border-radius: 20px; border: 1px solid var(--line); background: var(--surface); padding: 32px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.mini-cta h2 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: #fff; letter-spacing: -.02em; }
.mini-cta p { color: var(--muted); margin-bottom: 8px; }
@media (min-width: 800px) { .cards { grid-template-columns: repeat(2, 1fr); } }

.doc-layout { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 28px 0 96px; align-items: start; }
.toc { display: none; position: sticky; top: 92px; font-size: 13px; }
.toc h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.toc a { display: block; padding: 7px 12px; border-left: 2px solid var(--line); color: var(--muted); transition: .15s; line-height: 1.35; }
.toc a:hover { color: #fff; }
.toc a.active { border-color: var(--red); color: #fff; }
.toc .back { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; color: var(--muted); border: 0; padding: 0; }
.toc .back:hover { color: var(--red-3); }
.doc { min-width: 0; }
.doc-head { margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.doc-head h1 { font-size: clamp(28px, 3.6vw, 42px); }
.doc-head .meta { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.prose-doc { font-size: 15.5px; }
.prose-doc h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: #fff; margin: 40px 0 14px; padding-top: 28px; border-top: 1px solid var(--line); scroll-margin-top: 92px; }
.prose-doc h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose-doc h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: #fff; margin: 26px 0 10px; }
.prose-doc p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.prose-doc ul, .prose-doc ol { color: var(--muted); margin: 0 0 16px; padding-left: 22px; }
.prose-doc ul { list-style: disc; }
.prose-doc ol { list-style: decimal; }
.prose-doc li { margin-bottom: 8px; line-height: 1.7; }
.prose-doc code { font-family: var(--font-mono); font-size: .86em; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); padding: .15rem .45rem; border-radius: 6px; color: #fff; }
.prose-doc pre { background: var(--surface); padding: 16px; border-radius: 12px; border: 1px solid var(--line); overflow-x: auto; margin-bottom: 16px; }
.prose-doc a { color: var(--red-3); }
.prose-doc a:hover { text-decoration: underline; }
.prose-doc strong, .prose-doc b { color: #fff; }
.prose-doc img { border-radius: 12px; border: 1px solid var(--line); margin: 16px 0; }
.prose-doc blockquote { border-left: 3px solid var(--red); padding-left: 16px; margin: 16px 0; color: var(--muted); font-style: italic; }
.prose-doc iframe { border-radius: 12px; border: 1px solid var(--line); margin: 16px 0; max-width: 100%; }
.prose-doc .media-placeholder { border-radius: 12px; border: 1px dashed var(--line-2); background: rgba(255, 255, 255, .02); padding: 36px 20px; text-align: center; color: var(--muted-2); font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; margin: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.prose-doc .media-placeholder i { font-size: 22px; }
.doc-foot { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
@media (min-width: 1000px) {
  .doc-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 56px; }
  .toc { display: block; }
}

/* ---------------------------------------------------------------------
   Hardware / Reviews
   --------------------------------------------------------------------- */
.toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.search { position: relative; flex: 1; }
.search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted-2); font-size: 13px; pointer-events: none; }
.search input { width: 100%; height: 46px; padding: 0 16px 0 42px; border-radius: 12px; background: rgba(255, 255, 255, .03); border: 1px solid var(--line); color: #fff; font-size: 14px; outline: none; transition: .15s; }
.search input::placeholder { color: var(--muted-2); }
.search input:focus { border-color: var(--line-red); background: rgba(255, 255, 255, .04); }
.hw-sort { width: 46px; height: 46px; border-radius: 12px; }
.hw-sort.active { color: var(--red-2); border-color: var(--line-red); }
.hw-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding-bottom: 88px; }
.hw-card { border-radius: 18px; border: 1px solid var(--line); background: var(--surface); overflow: hidden; display: flex; flex-direction: column; transition: .3s var(--ease); }
.hw-card:hover { border-color: rgba(229, 32, 47, .35); transform: translateY(-3px); }
.hw-card.hidden { display: none; }
.hw-card figure { aspect-ratio: 16 / 9; overflow: hidden; background: #0e0f19; position: relative; }
.hw-card figure img { width: 100%; height: 100%; object-fit: cover; }
.hw-card figure .tag { position: absolute; top: 12px; left: 12px; }
.hw-card .body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hw-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: #fff; line-height: 1.3; letter-spacing: -.01em; }
.hw-card .desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.hw-status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-2); margin-top: -2px; }
.hw-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34, 197, 94, .15); }
.hw-card .bottom { margin-top: auto; padding-top: 8px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.hw-card .from { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.hw-card .price { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.1; margin-top: 3px; }
.hw-card .price small { font-size: 11px; color: var(--muted); font-weight: 500; }
.hw-card .actions { display: flex; gap: 8px; }
.hw-card .actions .btn { flex: 1; }
.hw-card .actions .icon-btn { width: 40px; height: 40px; flex-shrink: 0; }
.hw-section { padding: 8px 0 40px; }
.hw-section .sec-head { margin-bottom: 24px; }
.hw-section .h2 { font-size: clamp(24px, 3vw, 32px); }
.hw-section .hw-grid { padding-bottom: 0; }
#devices { padding-top: 24px; border-top: 1px solid var(--line); margin-top: 8px; padding-bottom: 88px; }
.empty { text-align: center; padding: 56px 20px; border: 1px dashed var(--line-2); border-radius: 16px; color: var(--muted); margin-bottom: 88px; }
.empty i { font-size: 28px; color: var(--muted-2); margin-bottom: 12px; }
.empty a { color: var(--red-3); }
@media (min-width: 640px) { .hw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .hw-grid { grid-template-columns: repeat(3, 1fr); } }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 14px; padding-bottom: 40px; }
.review-card { border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: rgba(255, 255, 255, .02); display: flex; flex-direction: column; gap: 12px; }
.review-card .stars-row { display: flex; gap: 3px; color: #f59e0b; font-size: 13px; }
.review-card .stars-row i.off { color: var(--muted-2); }
.review-card .rv-title { color: #fff; font-weight: 700; font-size: 15px; font-family: var(--font-display); }
.review-card .rv-text { color: var(--muted); font-size: 14px; line-height: 1.6; }
.review-card .rv-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--muted-2); margin-top: auto; flex-wrap: wrap; }
.review-card .rv-meta .verified { display: inline-flex; align-items: center; gap: 6px; color: var(--green-2); }
.review-card .rv-meta .product { color: var(--red-3); }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
