:root {
  --c-void: #070708;
  --c-neon: #e11324;
  --c-neon-d: #95001a;
  --c-cyan: #00e5ff;
  --c-surface: #0d0d10;
  --c-panel: #131318;
  --c-border: rgba(225, 19, 36, 0.14);
  --c-border-h: rgba(225, 19, 36, 0.32);
  --c-text: #f4f4f6;
  --c-muted: #85858f;
  --f-disp: "Chakra Petch", "Courier New", monospace;
  --f-mono: "JetBrains Mono", "Fira Code", monospace;
  --f-body: "Chakra Petch", -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1120px;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--c-void);
  color: var(--c-text);
  font-family: var(--f-body);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: var(--c-neon); text-decoration: none; }
a:hover { text-decoration: underline; }
.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;
}

.scanlines {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 50;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(225, 19, 36, 0.015) 3px,
    rgba(225, 19, 36, 0.015) 4px
  );
}
.glow-orb {
  pointer-events: none;
  position: fixed; z-index: 0;
  width: 480px; height: 480px; border-radius: 50%;
  filter: blur(80px); opacity: 0.22;
}
.glow-a { top: -120px; left: -80px; background: #e11324; }
.glow-b { top: 20%; right: -160px; background: #00e5ff; opacity: 0.1; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 28px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--c-text); }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #e11324, #95001a);
  color: #fff5f5; font-family: var(--f-disp); font-weight: 700; font-size: 13px;
  box-shadow: 0 0 18px rgba(225, 19, 36, 0.4);
}
.brand-mark.sm { width: 30px; height: 30px; font-size: 11px; }
.brand-text {
  font-family: var(--f-disp); font-weight: 700; letter-spacing: 0.06em; font-size: 14px;
}
.brand-text .tld { color: var(--c-neon); }
.site-header nav {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-end;
}
.site-header nav > a {
  color: var(--c-muted); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none;
}
.site-header nav > a:hover { color: var(--c-neon); }

.lang select {
  appearance: none;
  background: var(--c-panel);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 7px 28px 7px 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-muted) 50%),
    linear-gradient(135deg, var(--c-muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 10px; padding: 10px 16px; font-size: 13px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { padding: 14px 22px; font-size: 14px; }
.btn.block { width: 100%; }
.btn-neon {
  background: linear-gradient(180deg, #ff2a3a, var(--c-neon) 46%, var(--c-neon-d));
  color: #fff;
  border-color: #5a000f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 5px 0 #5a000f, 0 0 18px rgba(225,19,36,0.4);
}
.btn-neon:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 5px 0 #5a000f, 0 0 28px rgba(225,19,36,0.55);
  filter: brightness(1.05);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-h);
}
.btn-ghost:hover { border-color: var(--c-neon); color: #fff; }

.hero {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 88px 28px 64px;
}
.kicker {
  margin: 0 0 18px;
  font-family: var(--f-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--c-cyan);
}
.hero h1 {
  margin: 0 0 22px;
  font-family: var(--f-disp);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero h1 .line { display: block; }
.hero h1 .accent {
  color: var(--c-neon);
  text-shadow: 0 0 28px rgba(225, 19, 36, 0.45);
}
.lede {
  max-width: 40rem; margin: 0 0 28px;
  color: var(--c-muted); font-size: 1.08rem; font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12px; color: var(--c-muted);
}
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--c-neon); opacity: 0.7;
}

.marquee {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: #0a0a0c;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 36px; padding: 14px 0;
  width: max-content;
  animation: scroll 28s linear infinite;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--c-muted); text-transform: uppercase;
}
.marquee-track span { white-space: nowrap; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 72px 28px;
}
.section-head { max-width: 46rem; margin-bottom: 32px; }
.eyebrow {
  margin: 0 0 10px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; color: var(--c-neon);
}
.section h2 {
  margin: 0 0 12px;
  font-family: var(--f-disp);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em; line-height: 1.1;
  text-transform: uppercase;
}
.section-sub { margin: 0; color: var(--c-muted); font-size: 1rem; }

.panel {
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
}
.panel:hover { border-color: var(--c-border-h); }
.glow-border {
  box-shadow: 0 0 0 1px rgba(225,19,36,0.18), 0 20px 60px rgba(0,0,0,0.45);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.offer-grid .idx {
  display: block; margin-bottom: 12px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: var(--c-cyan);
}
.offer-grid h3 {
  margin: 0 0 8px;
  font-family: var(--f-disp); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.02em;
}
.offer-grid p { margin: 0; color: var(--c-muted); font-size: 14px; }

.split {
  display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 22px; align-items: stretch;
}
.split-copy h2 { text-transform: uppercase; }
.checks { margin: 18px 0 0; padding: 0; list-style: none; }
.checks li {
  position: relative; padding: 8px 0 8px 26px;
  color: var(--c-text); font-size: 14px; border-bottom: 1px solid #1a1a20;
}
.checks li::before {
  content: "✓";
  position: absolute; left: 0; color: var(--c-neon); font-weight: 700;
}
.mono-label {
  margin: 0 0 10px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; color: var(--c-cyan);
}
.split-card .big {
  margin: 0 0 10px;
  font-family: var(--f-disp); font-size: 1.45rem; text-transform: uppercase; letter-spacing: -0.01em;
}
.muted { color: var(--c-muted); font-size: 14px; }

.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.price-card { position: relative; padding: 26px; }
.price-card.featured {
  border-color: rgba(225, 19, 36, 0.45);
  box-shadow: 0 0 40px rgba(225, 19, 36, 0.12);
}
.badge {
  position: absolute; top: 16px; right: 16px;
  margin: 0; padding: 4px 10px; border-radius: 999px;
  background: var(--c-neon); color: #fff;
  font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
}
.plan {
  margin: 0 0 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--c-muted);
  text-transform: uppercase;
}
.amount {
  margin: 0 0 6px;
  font-family: var(--f-disp); font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em;
}
.amount span { font-size: 0.9rem; color: var(--c-muted); font-weight: 600; }
.hint { margin: 0 0 18px; color: var(--c-muted); font-size: 13px; }
.price-card ul {
  margin: 0 0 22px; padding: 0; list-style: none;
}
.price-card li {
  padding: 8px 0; border-top: 1px solid #1c1c24;
  color: var(--c-text); font-size: 14px;
}
.price-card li::before { content: "✓ "; color: var(--c-neon); font-weight: 700; }
.fine-note {
  margin: 18px 0 0;
  color: var(--c-muted); font-size: 13px; font-family: var(--f-mono);
}

.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 22px; }
.dl {
  display: flex; flex-direction: column; gap: 6px;
  color: var(--c-text); text-decoration: none;
  transition: transform .12s ease, border-color .12s ease;
}
.dl:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--c-border-h); }
.dl strong { font-family: var(--f-disp); font-size: 1.25rem; letter-spacing: 0.02em; }
.dl span:last-child { color: var(--c-muted); font-size: 13px; }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin: 0; padding: 0; list-style: none;
}
.steps li {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px; padding: 14px;
  color: var(--c-muted); font-size: 13px;
}
.steps strong {
  display: block; margin-bottom: 6px;
  font-family: var(--f-mono); color: var(--c-neon); font-size: 12px;
}

.faq { display: grid; gap: 10px; }
.faq details summary {
  cursor: pointer; list-style: none;
  font-family: var(--f-disp); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: 1rem;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details p { margin: 12px 0 0; color: var(--c-muted); font-size: 14px; }

.cta-final {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto 40px;
  padding: 56px 28px; text-align: center;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(225,19,36,0.18), transparent 60%),
    var(--c-panel);
}
.quote {
  margin: 0 0 12px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-cyan);
}
.cta-final h2 {
  margin: 0 0 10px;
  font-family: var(--f-disp); font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
}
.cta-final p { margin: 0 0 22px; color: var(--c-muted); }

.site-footer {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 28px; border-top: 1px solid var(--c-border);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  color: var(--c-muted); font-size: 13px;
}
.foot-brand { display: flex; gap: 12px; align-items: center; }
.foot-brand strong {
  display: block; color: var(--c-text);
  font-family: var(--f-disp); letter-spacing: 0.08em;
}
.foot-brand p { margin: 2px 0 0; }
.foot-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.foot-links a { color: var(--c-muted); text-decoration: none; }
.foot-links a:hover { color: var(--c-neon); }

@media (max-width: 900px) {
  .offer-grid, .price-grid, .dl-grid, .split, .steps { grid-template-columns: 1fr; }
  .site-header { padding: 12px 16px; }
  .hero, .hero-grid, .section, .cta-final { padding-left: 18px; padding-right: 18px; }
  .site-header nav > a:not(.btn):not([href="#pricing"]):not([href="#download"]):not([href="#faq"]) { display: none; }
}
/* CrimeCode-parity polish v2 */

/* ===== CrimeCode-parity polish ===== */
body {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(225,19,36,0.12), transparent 55%),
    linear-gradient(rgba(225,19,36,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225,19,36,0.03) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  background-attachment: fixed;
}
.coord {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(133,133,143,0.55);
  text-transform: uppercase;
  pointer-events: none;
}
.coord-tl { top: 12px; left: 16px; }
.coord-tr { top: 12px; right: 16px; }
.coord-br { bottom: 12px; right: 16px; }

.btn-neon, .btn-ghost {
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  border-radius: 0;
}
.brand-mark {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 0;
  width: 38px; height: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 20px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px 48px;
  position: relative;
  z-index: 1;
}
.hero-left .tagline {
  margin: 0 0 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.hero-left h1 {
  margin: 0 0 18px;
  font-family: var(--f-disp);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-box {
  border: 1px solid var(--c-border);
  background: rgba(13,13,16,0.85);
  padding: 12px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-center {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}
.hero-center .script {
  position: absolute;
  top: 8px;
  font-family: var(--f-disp);
  font-style: italic;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.04em;
  z-index: 2;
}
.hero-center .script span { color: var(--c-neon); }
.hero-center img, .hero-center svg { width: min(100%, 360px); height: auto; filter: drop-shadow(0 0 24px rgba(225,19,36,0.35)); }
.hero-join {
  margin-top: 12px;
  width: 100%;
  text-align: center;
  padding: 14px 12px;
  background: linear-gradient(180deg, #ff2a3a, var(--c-neon) 50%, var(--c-neon-d));
  color: #fff;
  font-family: var(--f-disp);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 0 28px rgba(225,19,36,0.45);
}
.hero-join:hover { text-decoration: none; filter: brightness(1.06); }
.hero-join small { display: block; margin-top: 4px; font-family: var(--f-mono); font-size: 10px; opacity: 0.85; letter-spacing: 0.1em; font-weight: 500; }

.hero-right { display: grid; gap: 12px; }
.hero-right .panel h3 {
  margin: 0 0 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-neon);
}
.offer-list { margin: 0; padding: 0; list-style: none; }
.offer-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #1a1a22;
  font-size: 13px;
  color: var(--c-text);
}
.offer-list li:first-child { border-top: 0; }
.hex {
  width: 22px; height: 24px;
  background: var(--c-neon);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-grid; place-items: center;
  color: #fff; font-size: 10px; font-weight: 700; font-family: var(--f-mono);
}
.pulse-box {
  border: 1px solid var(--c-neon);
  box-shadow: 0 0 24px rgba(225,19,36,0.2);
  padding: 16px;
}
.pulse-box strong {
  display: block; margin-bottom: 8px;
  font-family: var(--f-disp); text-transform: uppercase; letter-spacing: 0.04em;
}
.pulse-box ul { margin: 0; padding-left: 16px; color: var(--c-muted); font-size: 13px; }

.section-head .red-bar {
  width: 56px; height: 3px; background: var(--c-neon); margin: 12px 0 0;
  box-shadow: 0 0 12px rgba(225,19,36,0.6);
}
.price-card {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  border-radius: 0;
}
.price-card.featured .badge {
  background: transparent;
  color: var(--c-cyan);
  border: 1px solid var(--c-cyan);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0,229,255,0.25);
}
.hud-deco {
  position: absolute;
  right: 28px; top: 0;
  width: 120px; height: 120px;
  border: 1px solid rgba(225,19,36,0.2);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}
.hud-deco::after {
  content: "";
  position: absolute; inset: 18px;
  border: 1px dashed rgba(0,229,255,0.25);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-center { order: -1; min-height: 280px; }
}
@media (max-width: 900px) {
  .site-header nav > a[href="#pricing"],
  .site-header nav > a[href="#download"],
  .site-header nav > a[href="#faq"] { display: inline-flex !important; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
  .btn, .dl, .hero-join { transition: none !important; }
}
