/* ============================================================
   SYKAAA2 — MAIN STYLESHEET
   Aesthetic: Cyberpunk Neon
   Palette: Navy × Emerald × Amber
   Fonts: Russo One (display) + Nunito Sans (body)
   ============================================================ */

/* ── 0. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Base */
  --bg:          #04061a;
  --bg-alt:      #060920;
  --surface:     #0a0f2e;
  --surface-2:   #0d1438;
  --surface-3:   #111a48;
  --surface-4:   #161f55;

  /* Emerald (Primary) */
  --green:       #00ff88;
  --green-mid:   #00c870;
  --green-dark:  #007a40;
  --green-dim:   rgba(0,255,136,0.08);
  --green-glow:  rgba(0,255,136,0.20);
  --green-glow2: rgba(0,255,136,0.08);

  /* Amber (Secondary) */
  --amber:       #ffaa00;
  --amber-mid:   #e09000;
  --amber-dark:  #805200;
  --amber-dim:   rgba(255,170,0,0.08);
  --amber-glow:  rgba(255,170,0,0.20);

  /* Cyan (Accent) */
  --cyan:        #00c8ff;
  --cyan-dim:    rgba(0,200,255,0.08);

  /* Red (Alert only) */
  --danger:      #ff3355;
  --danger-dim:  rgba(255,51,85,0.12);

  /* Typography */
  --text:        #e8eeff;
  --text-sub:    #8899cc;
  --text-muted:  #445580;
  --text-dim:    #2a3360;

  /* Borders */
  --border:       1px solid rgba(0,255,136,0.12);
  --border-amber: 1px solid rgba(255,170,0,0.15);
  --border-dim:   1px solid rgba(255,255,255,0.05);
  --border-bright:1px solid rgba(0,255,136,0.35);

  /* Shadows */
  --shadow-green:  0 0 20px rgba(0,255,136,0.18), 0 4px 24px rgba(0,0,0,0.6);
  --shadow-amber:  0 0 20px rgba(255,170,0,0.18), 0 4px 24px rgba(0,0,0,0.6);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,136,0.06);
  --shadow-btn:    0 0 16px rgba(0,255,136,0.30), 0 4px 16px rgba(0,0,0,0.4);

  /* Radius — sharp cyberpunk */
  --r:    4px;
  --r-md: 6px;
  --r-lg: 8px;

  /* Clip-path diagonal cut */
  --clip-tl: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10px);
  --clip-tr: polygon(0% 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 0% 100%);
  --clip-br: polygon(0% 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%);
  --clip-btn: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);

  /* Transitions */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-s: cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --section-gap: clamp(64px, 9vw, 110px);

  /* Fonts */
  --font-display: 'Russo One', 'Arial Black', sans-serif;
  --font-body:    'Nunito Sans', 'Segoe UI', sans-serif;
}

/* ── 1. RESET + BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Circuit-board background grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--green-glow); color: #fff; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ── 2. TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400; /* Russo One is already bold */
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); }
h4 { font-size: 1rem; letter-spacing: 0.05em; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.text-green  { color: var(--green); }
.text-amber  { color: var(--amber); }
.text-cyan   { color: var(--cyan); }
.text-muted  { color: var(--text-muted); font-size: 0.875rem; }

/* Neon text glow */
.neon-text {
  color: var(--green);
  text-shadow: 0 0 20px rgba(0,255,136,0.5), 0 0 40px rgba(0,255,136,0.2);
}
.neon-amber {
  color: var(--amber);
  text-shadow: 0 0 16px rgba(255,170,0,0.4);
}

/* Section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 24px;
  background: var(--green);
  opacity: 0.5;
}

/* Heading highlight */
.hl { color: var(--green); }
.hl-amber { color: var(--amber); }

/* ── 3. LAYOUT ───────────────────────────────────────────────── */
.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}
.section--alt {
  background: linear-gradient(180deg, rgba(6,9,32,0) 0%, rgba(10,15,46,0.6) 50%, rgba(6,9,32,0) 100%);
}
.section--dark { background: var(--bg-alt); }

/* Diagonal section top cut */
.section--cut {
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
  margin-top: -32px;
  padding-top: calc(var(--section-gap) + 32px);
}
.section--cut-both {
  clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%);
  margin-top: -32px;
  margin-bottom: -32px;
  padding-top: calc(var(--section-gap) + 32px);
  padding-bottom: calc(var(--section-gap) + 32px);
}

/* Section head block */
.section-head {
  margin-bottom: clamp(32px, 4vw, 54px);
}
.section-head.centered { text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p  {
  font-size: 1.02rem;
  color: var(--text-sub);
  max-width: 580px;
  line-height: 1.72;
}
.section-head.centered p { margin: 0 auto; }

/* Neon divider line */
.neon-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,255,136,0.15) 20%,
    rgba(0,255,136,0.35) 50%,
    rgba(0,255,136,0.15) 80%,
    transparent 100%);
  margin: 0;
  position: relative;
  z-index: 1;
}
.neon-divider--amber {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,170,0,0.10) 20%,
    rgba(255,170,0,0.30) 50%,
    rgba(255,170,0,0.10) 80%,
    transparent 100%);
}

/* ── 4. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  clip-path: var(--clip-btn);
  transition: all 0.22s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

/* Primary — neon green fill */
.btn-primary {
  background: var(--green);
  color: #04061a;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: #1aff96;
  box-shadow: 0 0 28px rgba(0,255,136,0.45), 0 4px 20px rgba(0,0,0,0.5);
  color: #04061a;
}

/* Secondary — amber fill */
.btn-amber {
  background: var(--amber);
  color: #04061a;
  box-shadow: var(--shadow-amber);
}
.btn-amber:hover {
  background: #ffbb22;
  box-shadow: 0 0 28px rgba(255,170,0,0.45);
  color: #04061a;
}

/* Outline — neon green border */
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.5);
}
.btn-outline:hover {
  background: var(--green-dim);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(0,255,136,0.15);
}

/* Ghost — minimal */
.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  border: 1px solid var(--text-dim);
  clip-path: none;
  padding: 10px 20px;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

.btn-sm  { padding: 9px 18px; font-size: 0.72rem; }
.btn-lg  { padding: 18px 38px; font-size: 0.88rem; }
.btn-wide { width: 100%; justify-content: center; }

/* Arrow suffix */
.btn-arrow::after {
  content: '›';
  font-size: 1.4em;
  line-height: 1;
  font-family: sans-serif;
  font-weight: 300;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── 5. CARDS ────────────────────────────────────────────────── */
.neo-card {
  background: rgba(10,15,46,0.92);
  border: var(--border);
  border-top: 2px solid var(--green);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
  backdrop-filter: blur(6px);
}
/* Amber corner accent */
.neo-card::before {
  content: '';
  position: absolute;
  top: -2px; left: 10px;
  width: 28px;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}
.neo-card:hover {
  border-color: rgba(0,255,136,0.35);
  box-shadow: 0 0 30px rgba(0,255,136,0.10), 0 8px 40px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}
.neo-card:hover::before { width: 60px; }

/* Amber variant */
.neo-card--amber {
  border-top-color: var(--amber);
}
.neo-card--amber::before { background: var(--green); }

/* ── 6. HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s, height 0.25s;
}
.site-header.scrolled {
  background: rgba(4,6,26,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,255,136,0.12), 0 4px 24px rgba(0,0,0,0.5);
  height: 60px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.header-logo img { height: 42px; width: auto; }

/* Age gate badge in header */
.age-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--danger-dim);
  border: 1px solid rgba(255,51,85,0.4);
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 0.62rem;
  color: var(--danger);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header-nav a {
  padding: 7px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--green); background: var(--green-dim); }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: var(--surface);
  border: var(--border-dim);
  border-radius: var(--r);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: border-color 0.2s;
}
.lang-switcher:hover { border-color: rgba(0,255,136,0.25); color: var(--green); }
.lang-switcher img { width: 18px; height: 12px; border-radius: 2px; }

/* ── Desktop nav language toggle ── */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.nav-lang__sep {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.nav-lang__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-sub);
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-lang__btn img { border-radius: 2px; vertical-align: middle; }
.nav-lang__btn:hover { color: var(--green); border-color: rgba(0,255,136,0.3); }
.nav-lang__btn--active {
  color: var(--green);
  border-color: rgba(0,255,136,0.4);
  background: rgba(0,255,136,0.06);
}

/* ── Mobile menu language switch ── */
.mobile-lang {
  display: flex;
  gap: 10px;
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-lang__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-sub);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.mobile-lang__btn img { border-radius: 2px; }
.mobile-lang__btn:hover { color: var(--green); border-color: rgba(0,255,136,0.3); }
.mobile-lang__btn--active {
  color: var(--green);
  border-color: rgba(0,255,136,0.5);
  background: rgba(0,255,136,0.08);
}

.header-social a {
  display: flex;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  border: var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}
.header-social a:hover { border-color: rgba(0,255,136,0.35); background: var(--green-dim); }
.header-social img { width: 16px; height: 16px; }

.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: var(--border);
  border-radius: var(--r);
  background: transparent;
  transition: border-color 0.2s;
}
.burger-btn:hover { border-color: rgba(0,255,136,0.4); }
.burger-btn img { width: 20px; height: 20px; }

/* ── 7. MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.mobile-menu.open { display: flex; }

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,6,26,0.94);
  backdrop-filter: blur(12px);
}
.mobile-menu__panel {
  position: relative;
  z-index: 1;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--surface);
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  overflow-y: auto;
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: var(--border);
  border-radius: var(--r);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.mobile-nav a {
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-sub);
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav a::before {
  content: '›';
  color: var(--green);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.mobile-nav a:hover {
  color: var(--green);
  background: var(--green-dim);
  border-color: rgba(0,255,136,0.12);
}
.mobile-nav a:hover::before { opacity: 1; transform: none; }
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-dim);
}
.mobile-menu__actions .btn { width: 100%; justify-content: center; clip-path: none; }

/* ── 8. HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Scanline sweep */
.hero__scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,136,0.10) 30%, rgba(0,255,136,0.20) 50%, rgba(0,255,136,0.10) 70%, transparent 100%);
  animation: scanline 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes scanline {
  0%   { top: -2px; }
  100% { top: 100%; }
}

/* Corner bracket decorations */
.hero__corner {
  position: absolute;
  width: 40px; height: 40px;
  pointer-events: none;
  z-index: 3;
}
.hero__corner--tl { top: 88px; left: 3%; border-top: 2px solid var(--green); border-left: 2px solid var(--green); opacity: 0.4; }
.hero__corner--tr { top: 88px; right: 3%; border-top: 2px solid var(--amber); border-right: 2px solid var(--amber); opacity: 0.4; }
.hero__corner--bl { bottom: 5%; left: 3%; border-bottom: 2px solid var(--green); border-left: 2px solid var(--green); opacity: 0.3; }
.hero__corner--br { bottom: 5%; right: 3%; border-bottom: 2px solid var(--amber); border-right: 2px solid var(--amber); opacity: 0.3; }

.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Status badge */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-dim);
  border: 1px solid rgba(0,255,136,0.30);
  border-radius: var(--r);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  width: fit-content;
  clip-path: var(--clip-btn);
}
.hero__status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero__h1 .glitch {
  display: block;
  color: var(--green);
  text-shadow: 0 0 24px rgba(0,255,136,0.5);
  animation: glitch 7s ease-in-out infinite;
  animation-delay: 3s;
}
@keyframes glitch {
  0%, 90%, 100% { text-shadow: 0 0 24px rgba(0,255,136,0.5); transform: none; }
  91%  { text-shadow: 3px 0 rgba(0,255,136,0.8), -3px 0 rgba(255,170,0,0.8); transform: translateX(-2px); }
  92%  { text-shadow: -3px 0 rgba(0,255,136,0.8), 3px 0 rgba(0,200,255,0.8); transform: translateX(2px); }
  93%  { text-shadow: 2px 0 rgba(255,170,0,0.6); transform: translateX(-1px); }
  94%  { text-shadow: 0 0 24px rgba(0,255,136,0.5); transform: none; }
}

.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}
.hero__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.hero__tag-icon {
  width: 16px; height: 16px;
  border-radius: 2px;
  background: var(--green-dim);
  border: 1px solid rgba(0,255,136,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--green);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
}
.hero__img-wrap {
  border-radius: var(--r-lg);
  border: var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-green);
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.hero__img-wrap img { width: 100%; display: block; }

/* Neon glow behind visual */
.hero__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(0,255,136,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ── 9. STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid rgba(0,255,136,0.08);
  border-bottom: 1px solid rgba(0,255,136,0.08);
  padding: 22px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 16px 14px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(0,255,136,0.10);
}
.stat-item__val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  text-shadow: 0 0 12px rgba(0,255,136,0.35);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-item__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(n+4) { border-top: 1px solid rgba(0,255,136,0.06); }
}

/* ── 10. TWO-COLUMN LAYOUT ───────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.two-col--wide { grid-template-columns: 1.5fr 1fr; }
.two-col--narrow { grid-template-columns: 1fr 1.5fr; }

@media (max-width: 860px) {
  .two-col, .two-col--wide, .two-col--narrow { grid-template-columns: 1fr; }
}

/* ── 11. STEP LIST ───────────────────────────────────────────── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: step-counter;
}
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: var(--border-dim);
  border-left: 2px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  transition: border-color 0.25s, background 0.25s;
}
.step-item:hover {
  border-color: rgba(0,255,136,0.25);
  background: var(--surface-2);
}
.step-num {
  counter-increment: step-counter;
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: var(--clip-tl);
  box-shadow: 0 0 12px rgba(0,255,136,0.25);
}
.step-body h4 { color: var(--text); margin-bottom: 5px; font-size: 0.95rem; }
.step-body p  { color: var(--text-sub); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* ── 12. CHECKLIST ───────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--green-dim);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--green);
  margin-top: 2px;
}

/* ── 13. INFO NOTE ───────────────────────────────────────────── */
.info-note {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--green-dim);
  border: var(--border);
  border-left: 2px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 0.87rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin-top: 18px;
}
.info-note--amber {
  background: var(--amber-dim);
  border-color: rgba(255,170,0,0.15);
  border-left-color: var(--amber);
}
.info-note__icon { flex-shrink: 0; font-size: 1.05rem; margin-top: 1px; }

/* ── 14. BONUS CARDS ─────────────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
@media (max-width: 700px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus-card {
  background: var(--surface);
  border: var(--border);
  border-top: 2px solid var(--green);
  border-radius: var(--r);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  overflow: hidden;
}
.bonus-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-glow), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}
.bonus-card:hover::after { transform: scaleX(1); }
.bonus-card--amber { border-top-color: var(--amber); }
.bonus-card--amber::after {
  background: linear-gradient(90deg, transparent, var(--amber-glow), transparent);
}
.bonus-card__badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  clip-path: var(--clip-btn);
}
.bonus-card__icon { font-size: 2.4rem; margin-bottom: 12px; line-height: 1; }
.bonus-card__name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.bonus-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}
.bonus-card__desc {
  font-size: 0.84rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* ── 15. BONUS TABLE ─────────────────────────────────────────── */
.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.data-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.88rem;
  overflow: hidden;
  border-radius: var(--r);
}
.data-table th {
  background: rgba(0,255,136,0.07);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0,255,136,0.15);
}
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-sub);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(0,255,136,0.025); color: var(--text); }
.td-name  { color: var(--text); font-weight: 700; }
.td-green { color: var(--green); font-weight: 700; }
.td-amber { color: var(--amber); font-weight: 700; }

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.tag--green { background: rgba(0,255,136,0.12); color: var(--green); border: 1px solid rgba(0,255,136,0.25); }
.tag--amber { background: rgba(255,170,0,0.12); color: var(--amber); border: 1px solid rgba(255,170,0,0.25); }
.tag--cyan  { background: rgba(0,200,255,0.10); color: var(--cyan);  border: 1px solid rgba(0,200,255,0.22); }

/* ── 16. PAYMENT GRID ────────────────────────────────────────── */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.pay-item {
  background: var(--surface);
  border: var(--border-dim);
  border-radius: var(--r);
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: default;
  transition: border-color 0.2s, transform 0.2s;
}
.pay-item:hover { border-color: rgba(0,255,136,0.22); transform: translateY(-2px); }
.pay-item__icon { font-size: 1.7rem; line-height: 1; }
.pay-item__name { font-size: 0.74rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; }
.pay-item__speed { font-size: 0.66rem; color: var(--green); }

.pay-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 600px) { .pay-info-row { grid-template-columns: 1fr; } }

.pay-info-card {
  background: var(--green-dim);
  border: var(--border);
  border-radius: var(--r);
  padding: 18px;
}
.pay-info-card h4 { font-size: 0.82rem; color: var(--green); margin-bottom: 7px; }
.pay-info-card p  { font-size: 0.84rem; color: var(--text-sub); margin: 0; line-height: 1.55; }

/* ── 17. WHY GRID ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  padding: 24px 20px;
  background: var(--surface);
  border: var(--border-dim);
  border-radius: var(--r);
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-item:hover { border-color: rgba(0,255,136,0.18); background: var(--surface-2); }
.why-item:hover::before { transform: scaleX(1); }
.why-item__icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.why-item h3 { font-size: 0.9rem; color: var(--green); margin-bottom: 8px; letter-spacing: 0.06em; }
.why-item p  { font-size: 0.85rem; color: var(--text-sub); line-height: 1.6; margin: 0; }

/* ── 18. SIDEBAR WIDGET ──────────────────────────────────────── */
.widget {
  background: var(--surface);
  border: var(--border);
  border-top: 2px solid var(--amber);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: 18px;
}
.widget__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.widget__list { display: flex; flex-direction: column; gap: 9px; }
.widget__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.widget__row:last-child { border-bottom: none; padding-bottom: 0; }
.widget__row span:first-child { color: var(--text-muted); }
.widget__row span:last-child  { color: var(--text); font-weight: 700; text-align: right; }

/* ── 19. MOBILE SECTION ──────────────────────────────────────── */
.phone-mockup {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-shell {
  width: 210px; height: 400px;
  border: 2px solid rgba(0,255,136,0.3);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-green), inset 0 0 30px rgba(0,255,136,0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.phone-shell::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 4px;
  background: rgba(0,255,136,0.25);
  border-radius: 2px;
}
.phone-screen {
  flex: 1;
  margin: 26px 8px 8px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid rgba(0,255,136,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 12px;
}
.phone-logo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
}
.phone-slot {
  width: 100%; height: 100px;
  background: var(--surface-2);
  border: var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.phone-cta {
  clip-path: none;
  border-radius: var(--r);
  padding: 8px 16px;
  font-size: 0.7rem;
}
.phone-glow-bg {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(0,255,136,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.app-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.app-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s, transform 0.2s;
}
.app-chip:hover { border-color: rgba(0,255,136,0.35); transform: translateY(-2px); }
.app-chip span:first-child { font-size: 1.3rem; }
.app-chip__text { display: flex; flex-direction: column; }
.app-chip__sup  { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.app-chip__main { font-size: 0.85rem; font-weight: 700; color: var(--text); }

/* ── 20. SAFETY ──────────────────────────────────────────────── */
.safety-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.safety-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: var(--border-dim);
  border-radius: var(--r);
}
.safety-item__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.safety-item h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.safety-item p  { font-size: 0.84rem; color: var(--text-sub); line-height: 1.55; margin: 0; }

/* RG block — required by CLAUDE.md */
.rg-block {
  background: var(--danger-dim);
  border: 1px solid rgba(255,51,85,0.25);
  border-left: 3px solid var(--danger);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--text-sub);
  line-height: 1.6;
}
.rg-block strong { color: var(--danger); }
.rg-block__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }

/* ── 21. FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: var(--border-dim);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(0,255,136,0.22); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: var(--r);
  background: var(--green-dim);
  border: 1px solid rgba(0,255,136,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  transition: transform 0.3s var(--ease), background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: var(--bg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 360px;
  padding-bottom: 16px;
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ── 22. FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: var(--section-gap) 0;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(0,255,136,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(255,170,0,0.06) 0%, transparent 60%);
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta__inner h2 { margin-bottom: 16px; }
.final-cta__inner p  { color: var(--text-sub); font-size: 1.02rem; margin-bottom: 30px; }
.final-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta__note { margin-top: 18px; font-size: 0.78rem; color: var(--text-muted); }

/* ── 23. FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(0,255,136,0.08);
  padding: 56px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: var(--border-dim);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand img { height: 36px; }
.footer__brand p   { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.footer__social { display: flex; gap: 8px; margin-top: 4px; }
.footer__social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: var(--border-dim);
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}
.footer__social a:hover { border-color: rgba(0,255,136,0.3); background: var(--green-dim); }
.footer__social img { width: 16px; height: 16px; }

.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a  { font-size: 0.84rem; color: var(--text-muted); transition: color 0.2s; }
.footer__col a:hover { color: var(--text-sub); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer__copy { font-size: 0.78rem; color: var(--text-dim); }
.footer__links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__links a { font-size: 0.78rem; color: var(--text-dim); }
.footer__links a:hover { color: var(--text-muted); }
.footer__age {
  font-family: var(--font-display);
  font-size: 0.68rem;
  padding: 5px 9px;
  background: var(--danger-dim);
  border: 1px solid rgba(255,51,85,0.35);
  border-radius: var(--r);
  color: var(--danger);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.footer__disclaimer {
  width: 100%;
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.65;
  padding-top: 16px;
  border-top: var(--border-dim);
  margin-top: 6px;
}

/* ── 24. SCROLL TOP ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: var(--clip-tl);
  box-shadow: 0 0 20px rgba(0,255,136,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  cursor: pointer;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover   { transform: translateY(-3px); box-shadow: 0 0 30px rgba(0,255,136,0.5); }

/* ── 25. SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-s), transform 0.6s var(--ease-s);
}
.reveal.visible  { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── 26. UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }

/* ── 27. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  /* Hide desktop-only header-right items when nav is gone */
  .header-social { display: none; }
  .header-right .btn-sm { display: none; }
  .header-right { gap: 8px; }
}
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding: 110px 0 60px; }
}
@media (max-width: 560px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { clip-path: none; width: 100%; }
  :root { --section-gap: 52px; }

}
