/* ==========  CompClub landing ========== */
:root {
  --bg: #0a0e14;
  --bg-2: #0f141c;
  --panel: #141a24;
  --panel-2: #1a212d;
  --line: #222b3a;
  --line-2: #2a3446;
  --ink: #e8ecf3;
  --ink-dim: #8a95a8;
  --ink-faint: #5a6477;

  --cyan: #00E5FF;
  --lime: #B6FF3C;
  --violet: #8B5CFF;
  --gold: #FFC43C;
  --red: #FF4D6B;

  --radius: 14px;
  --radius-lg: 20px;

  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Orbitron', 'Unbounded', 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body {
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(139,92,255,0.12), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(0,229,255,0.08), transparent 60%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Grid background overlay for whole page */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
}

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Mono label eyebrow */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--cyan); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: '//'; color: var(--ink-faint); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan); color: #001014;
  box-shadow: 0 0 0 1px rgba(0,229,255,0.4), 0 10px 40px -8px rgba(0,229,255,0.45);
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(0,229,255,0.6), 0 16px 60px -6px rgba(0,229,255,0.7);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--ink);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: var(--cyan); color: var(--cyan); }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* Section */
.section { padding: 120px 0; position: relative; z-index: 1; }
.section-sm { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 80px 0; } }

/* Section head */
.sec-head { max-width: 820px; margin-bottom: 64px; }
.sec-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.2vw, 56px); letter-spacing: -0.03em; line-height: 1.02;
  margin-top: 16px;
  text-wrap: balance;
}
.sec-head p { color: var(--ink-dim); font-size: 18px; line-height: 1.5; margin-top: 20px; max-width: 640px; }

/* Gradient divider */
.divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
  position: relative; z-index: 1;
}

/* Fade-up animation on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== HEADER ========== */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(10,14,20,0.6);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 14px; color: #001014;
  box-shadow: 0 0 20px rgba(0,229,255,0.4);
}
.logo-mark::after { content: 'C'; font-weight: 800; }

.nav { display: flex; gap: 28px; font-size: 14px; color: var(--ink-dim); font-weight: 500; }
.nav a { transition: color .15s; }
.nav a:hover { color: var(--ink); }
@media (max-width: 920px) { .nav { display: none; } }

/* ========== HERO ========== */
.hero { padding: 88px 0 120px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 6vw, 82px); line-height: 0.98; letter-spacing: -0.04em;
  margin-top: 20px; text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--lime) 60%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--ink-dim); font-size: 19px; line-height: 1.5; margin-top: 28px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px; display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint);
}
.hero-meta .dot { color: var(--lime); }

/* ========== PHONE MOCKUP ========== */
.phone-wrap { position: relative; display: grid; place-items: center; min-height: 640px; }
.phone-wrap::before {
  content: ''; position: absolute; inset: 10%;
  background: radial-gradient(circle at center, rgba(0,229,255,0.25), transparent 60%);
  filter: blur(60px); z-index: 0;
}
.phone {
  position: relative; z-index: 2;
  width: 320px; height: 650px;
  background: #000; border-radius: 44px;
  padding: 12px;
  border: 1px solid #1d2330;
  box-shadow:
    inset 0 0 0 2px #0b0f16,
    0 0 0 3px #161c26,
    0 40px 80px -20px rgba(0,0,0,0.8),
    0 0 60px rgba(139,92,255,0.2);
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 33px; overflow: hidden;
  background: linear-gradient(180deg, #0a0e14 0%, #11182a 100%);
  position: relative;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; background: #000; border-radius: 16px; z-index: 10;
}

/* Mini-app header inside phone */
.tg-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 50px 18px 10px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim);
}
.tg-title { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-family: var(--font-body); font-size: 14px; }
.tg-avatar { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); }

/* Case opener inside phone */
.case-stage { padding: 18px; }
.case-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
  font-size: 12px; color: var(--ink-dim); font-family: var(--font-mono);
}
.case-balance { color: var(--lime); }
.case-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; margin: 4px 0 14px; }

.reel-window {
  position: relative; height: 120px; border-radius: 14px;
  background: linear-gradient(180deg, #0b1220 0%, #141d33 100%);
  border: 1px solid #22304d;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
}
.reel-window::before, .reel-window::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 40px; z-index: 3; pointer-events: none;
}
.reel-window::before { left: 0; background: linear-gradient(90deg, #0b1220, transparent); }
.reel-window::after { right: 0; background: linear-gradient(-90deg, #0b1220, transparent); }
.reel-pointer {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: linear-gradient(180deg, var(--lime), transparent 50%, var(--lime));
  transform: translateX(-50%); z-index: 4;
  box-shadow: 0 0 12px var(--lime);
}
.reel-pointer::before, .reel-pointer::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent;
}
.reel-pointer::before { top: -2px; border-top-color: var(--lime); }
.reel-pointer::after { bottom: -2px; border-bottom-color: var(--lime); }

.reel-track { display: flex; gap: 8px; padding: 12px 8px; height: 100%; align-items: center; will-change: transform; }
.reel-item {
  flex: 0 0 96px; height: 96px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink);
  border: 1px solid var(--line-2);
  background: #161e2e;
  position: relative;
  gap: 4px;
}
.reel-item .val { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.reel-item .lbl { color: var(--ink-faint); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; }
.reel-item.rare-common { border-color: #2a3446; }
.reel-item.rare-blue { border-color: rgba(0,229,255,0.5); background: linear-gradient(180deg, rgba(0,229,255,0.12), #131c2a); box-shadow: inset 0 0 20px rgba(0,229,255,0.15); }
.reel-item.rare-purple { border-color: rgba(139,92,255,0.6); background: linear-gradient(180deg, rgba(139,92,255,0.15), #161327); box-shadow: inset 0 0 20px rgba(139,92,255,0.2); }
.reel-item.rare-gold { border-color: var(--gold); background: linear-gradient(180deg, rgba(255,196,60,0.22), #1a1507); box-shadow: inset 0 0 24px rgba(255,196,60,0.3), 0 0 20px rgba(255,196,60,0.4); }
.reel-item.rare-gold .val { color: var(--gold); }
.reel-item.rare-gold .lbl { color: var(--gold); }
.reel-item.rare-blue .val { color: var(--cyan); }
.reel-item.rare-purple .val { color: var(--violet); }

.prize-card {
  margin-top: 14px; padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,196,60,0.14), rgba(255,196,60,0.04));
  border: 1px solid rgba(255,196,60,0.35);
  display: flex; align-items: center; justify-content: space-between;
}
.prize-card .lbl { font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.prize-card .val { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--gold); }
.prize-card .badge { padding: 4px 8px; border-radius: 6px; background: rgba(255,196,60,0.2); color: var(--gold); font-family: var(--font-mono); font-size: 10px; }

.case-cta {
  margin-top: 12px; width: 100%; padding: 12px; border-radius: 10px;
  background: var(--cyan); color: #001014; font-weight: 700; font-size: 14px;
  text-align: center;
}

/* Floating badges around phone */
.float-badge {
  position: absolute; z-index: 3;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(20,26,36,0.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.float-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.float-badge.fb-1 { top: 80px; left: -40px; }
.float-badge.fb-2 { bottom: 120px; right: -60px; }
@media (max-width: 520px) { .float-badge.fb-1 { left: 0; } .float-badge.fb-2 { right: 0; } }

/* ========== PROBLEM ========== */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,77,107,0.06), transparent);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.problem-card .num {
  font-family: var(--font-mono); font-size: 12px; color: var(--red); letter-spacing: 0.12em;
}
.problem-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; margin: 14px 0 10px; }
.problem-card p { color: var(--ink-dim); font-size: 15px; line-height: 1.55; }
.problem-card .stat { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--red); letter-spacing: -0.03em; margin-top: 24px; }
.problem-card .stat-lbl { color: var(--ink-faint); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ========== SOLUTION ========== */
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 880px) { .solution-grid { grid-template-columns: 1fr; } }

.feat-card {
  position: relative; overflow: hidden;
  padding: 36px; border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 340px;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.feat-card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--panel-2); border: 1px solid var(--line-2);
  margin-bottom: 20px;
}
.feat-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.1; }
.feat-card p { color: var(--ink-dim); font-size: 15px; line-height: 1.55; }
.feat-card .visual {
  margin-top: auto; padding-top: 24px;
}

/* Feature visuals */
.vis-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 8px;
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(0,229,255,0.1); color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.25);
}

.mini-reel {
  display: flex; gap: 6px; padding: 10px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line);
  overflow: hidden;
}
.mini-reel-item {
  flex: 0 0 60px; height: 60px; border-radius: 8px;
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 10px;
  border: 1px solid var(--line-2);
}
.mini-reel-item.gold { border-color: var(--gold); color: var(--gold); background: rgba(255,196,60,0.1); }
.mini-reel-item.cyan { border-color: var(--cyan); color: var(--cyan); }
.mini-reel-item.violet { border-color: var(--violet); color: var(--violet); }

.promo-preview {
  padding: 16px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px;
}
.promo-preview .word {
  font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--lime);
  letter-spacing: 0.02em; margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(182,255,60,0.4);
}
.promo-preview .meta { color: var(--ink-faint); }

.chat-preview {
  padding: 12px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.chat-msg {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px;
}
.chat-msg .av { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; }
.chat-msg .av-1 { background: linear-gradient(135deg, var(--cyan), var(--violet)); }
.chat-msg .av-2 { background: linear-gradient(135deg, var(--lime), var(--cyan)); }
.chat-msg .av-3 { background: linear-gradient(135deg, var(--violet), #ff4dcb); }
.chat-msg .body { color: var(--ink-dim); }
.chat-msg .bonus { margin-left: auto; color: var(--lime); font-family: var(--font-mono); font-size: 11px; }

.ai-preview {
  padding: 14px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line);
  display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center;
}
.ai-preview .thumb {
  width: 48px; height: 48px; border-radius: 8px;
  background: repeating-linear-gradient(45deg, var(--violet) 0 2px, transparent 2px 6px), var(--panel-2);
  border: 1px solid var(--line-2);
}
.ai-preview .lines { display: flex; flex-direction: column; gap: 5px; }
.ai-preview .ln { height: 6px; border-radius: 3px; background: var(--line-2); }
.ai-preview .ln.w1 { width: 80%; }
.ai-preview .ln.w2 { width: 60%; }
.ai-preview .ln.w3 { width: 45%; background: var(--cyan); }

.ref-preview {
  padding: 12px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.ref-row {
  display: flex; gap: 8px; align-items: center; font-size: 12px;
}
.ref-row .av { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; }
.ref-row .av-1 { background: linear-gradient(135deg, var(--cyan), var(--violet)); }
.ref-row .av-2 { background: linear-gradient(135deg, var(--lime), var(--cyan)); }
.ref-row .av-3 { background: linear-gradient(135deg, var(--violet), #ff4dcb); }
.ref-row .body { color: var(--ink-dim); }
.ref-row .bonus { margin-left: auto; color: var(--lime); font-family: var(--font-mono); font-size: 11px; }

.daily-preview {
  padding: 18px 16px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.daily-preview .daily-btn {
  padding: 10px 18px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,110,199,0.18), rgba(139,92,255,0.18));
  border: 1px solid rgba(255,110,199,0.5);
  color: #ffdff0; font-weight: 600; font-size: 13px;
  box-shadow: 0 0 24px rgba(255,110,199,0.15);
}
.daily-preview .daily-hint {
  color: var(--ink-faint); font-family: var(--font-mono); font-size: 11px;
}

.broadcast-preview {
  padding: 12px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.broadcast-preview .bc-msg {
  padding: 10px 12px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,107,0.12), rgba(255,196,60,0.08));
  border: 1px solid rgba(255,107,107,0.4);
  color: var(--ink); font-size: 12px; line-height: 1.4;
}
.broadcast-preview .bc-stat {
  color: var(--ink-faint); font-family: var(--font-mono); font-size: 11px; text-align: right;
}

/* ========== TESTIMONIAL ========== */
.testimonial-card {
  position: relative;
  padding: 40px 36px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(139,92,255,0.05));
  border: 1px solid rgba(0,229,255,0.25);
  box-shadow: 0 0 60px rgba(0,229,255,0.06) inset;
}
.testimonial-card .t-badge {
  display: inline-block;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(182,255,60,0.1);
  border: 1px solid rgba(182,255,60,0.4);
  color: var(--lime);
  font-size: 11px; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.testimonial-card .t-quote {
  font-family: var(--font-head, var(--font-body, sans-serif));
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500; line-height: 1.45;
  color: var(--ink); margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.testimonial-card .t-meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.testimonial-card .t-av {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}
.testimonial-card .t-who {
  display: flex; flex-direction: column; gap: 2px;
}
.testimonial-card .t-name {
  font-weight: 700; color: var(--ink); font-size: 15px;
}
.testimonial-card .t-title {
  color: var(--ink-faint); font-size: 13px;
}
.testimonial-card .t-stats {
  margin-left: auto; display: flex; gap: 24px;
}
.testimonial-card .t-stat {
  display: flex; flex-direction: column; gap: 2px; text-align: center;
}
.testimonial-card .t-num {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 26px; color: var(--cyan);
  line-height: 1;
}
.testimonial-card .t-lbl {
  font-size: 11px; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .testimonial-card { padding: 28px 22px; }
  .testimonial-card .t-stats { margin-left: 0; width: 100%; }
}

/* ========== HOW IT WORKS ========== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; gap: 16px; } }
.step {
  position: relative;
  padding: 28px 24px 28px; border-radius: var(--radius-lg);
  background: var(--panel); border: 1px solid var(--line);
  min-height: 240px; display: flex; flex-direction: column;
}
.step-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 40px;
}
.step-num::before { content: '0'; }
.step h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 10px; }
.step p { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }
.step-arrow {
  position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--bg); border-radius: 50%; border: 1px solid var(--line-2);
  z-index: 2;
  color: var(--cyan);
}
@media (max-width: 880px) { .step-arrow { display: none; } }
.step-icon {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint);
}

/* ========== MINI APP SCREENS ========== */
.screens-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1100px) { .screens-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .screens-grid { grid-template-columns: 1fr; } }
.screen-card {
  padding: 20px; border-radius: var(--radius-lg);
  background: var(--panel); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.screen-card .lbl {
  font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px;
}
.screen-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; margin-bottom: 14px; }
.screen-card .screen-img {
  flex: 1; border-radius: 14px; overflow: hidden;
  background: #0a0e14; border: 1px solid var(--line);
  min-height: 420px;
  padding: 14px; position: relative;
  display: flex; flex-direction: column;
}
.screen-card p { color: var(--ink-dim); font-size: 13px; line-height: 1.5; margin-top: 14px; }

/* Mini-screen inner styles */
.ms-h { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 10px; color: var(--ink-faint); margin-bottom: 14px; }
.ms-bal-big { font-family: var(--font-display); font-weight: 700; font-size: 36px; letter-spacing: -0.03em; color: var(--lime); }
.ms-bal-lbl { font-family: var(--font-mono); font-size: 10px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.ms-case-ready {
  margin-top: 14px; padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(139,92,255,0.15));
  border: 1px solid rgba(0,229,255,0.4);
  display: flex; align-items: center; gap: 10px;
}
.ms-case-ready .n { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--cyan); }
.ms-case-ready .t { font-size: 11px; color: var(--ink); }
.ms-list { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.ms-row {
  padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; font-size: 11px;
}
.ms-row .r-lbl { color: var(--ink-dim); }
.ms-row .r-val { font-family: var(--font-mono); color: var(--lime); }

.ms-chart {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; align-items: end; height: 80px; margin-top: 12px;
}
.ms-bar { background: linear-gradient(180deg, var(--cyan), rgba(0,229,255,0.3)); border-radius: 3px 3px 0 0; }

.ms-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.ms-stat {
  padding: 10px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--line);
}
.ms-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.ms-stat .l { font-family: var(--font-mono); font-size: 9px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* ========== INTEGRATION ========== */
.integration-wrap {
  padding: 64px 40px; border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(0,229,255,0.1), transparent 60%),
    var(--panel);
  border: 1px solid var(--line);
  text-align: center;
  position: relative; overflow: hidden;
}
.integration-wrap h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.05; letter-spacing: -0.03em;
  text-wrap: balance; max-width: 700px; margin: 20px auto 14px;
}
.integration-wrap p { color: var(--ink-dim); max-width: 560px; margin: 0 auto; font-size: 16px; }
.integration-row {
  margin-top: 56px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.int-node {
  padding: 18px 28px; border-radius: 14px;
  background: var(--panel-2); border: 1px solid var(--line-2);
  font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 12px;
}
.int-node.center {
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(139,92,255,0.15));
  border-color: rgba(0,229,255,0.4);
  color: var(--cyan);
  box-shadow: 0 0 40px rgba(0,229,255,0.2);
}
.int-line {
  flex: 0 0 60px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  position: relative;
  overflow: hidden;
}
.int-line::after {
  content: ''; position: absolute; left: -30%; top: 0; width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: flow 2s linear infinite;
}
@keyframes flow { to { left: 100%; } }
@media (max-width: 720px) { .int-line { width: 2px; height: 30px; flex: 0 0 30px; transform: rotate(90deg); } .integration-row { flex-direction: column; } }

/* ========== PRICING ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--panel); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(0,229,255,0.06), var(--panel));
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 20px 60px -20px rgba(0,229,255,0.25);
}
.price-card.featured::before {
  content: 'Популярный'; position: absolute; top: -10px; right: 24px;
  padding: 4px 10px; border-radius: 6px;
  background: var(--cyan); color: #001014;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.price-sub { color: var(--ink-faint); font-size: 13px; margin-top: 4px; }
.price-amount {
  margin-top: 24px; display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display); font-weight: 700;
}
.price-amount .num { font-size: 48px; letter-spacing: -0.03em; line-height: 1; }
.price-amount .per { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); font-weight: 400; }
.price-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-dim); line-height: 1.4; }
.price-li svg { flex-shrink: 0; margin-top: 2px; color: var(--cyan); }
.price-btn { margin-top: 28px; width: 100%; justify-content: center; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 880px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}
.faq-item.open { border-color: rgba(0,229,255,0.3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
}
.faq-plus { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-dim); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-plus { transform: rotate(45deg); color: var(--cyan); border-color: var(--cyan); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  color: var(--ink-dim); font-size: 15px; line-height: 1.6;
}
.faq-a-inner { padding: 0 24px 22px; max-width: 720px; }

/* ========== FOOTER ========== */
.footer {
  padding: 80px 0 40px; border-top: 1px solid var(--line);
  background: #07090d;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--ink-faint); font-size: 14px; line-height: 1.5; margin-top: 14px; max-width: 280px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-dim); font-size: 14px; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint);
}

/* ========== TWEAKS PANEL ========== */
.tweaks {
  position: fixed; bottom: 20px; right: 20px; z-index: 100;
  width: 280px; padding: 18px;
  background: rgba(15,20,28,0.92); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: none;
}
.tweaks.on { display: block; }
.tweaks h5 { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.tweak-row { margin-bottom: 14px; }
.tweak-row label { display: block; font-size: 12px; color: var(--ink-dim); margin-bottom: 6px; }
.tweak-row select, .tweak-row input[type="range"] {
  width: 100%;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 8px;
  color: var(--ink); font-family: var(--font-mono); font-size: 12px; padding: 8px;
}
.tweak-swatch-row { display: flex; gap: 6px; }
.tweak-sw { width: 32px; height: 32px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: transform .1s; }
.tweak-sw.on { border-color: white; transform: scale(1.08); }

/* Utilities */
.hidden { display: none; }

/* ========= Orbitron-specific tuning ========= */
:root { --display-tight: -0.01em; }
.hero h1 { letter-spacing: -0.02em; }
.sec-head h2, .feat-card h3, .price-name { letter-spacing: -0.01em; }

/* ========= NEON FRAME (hero cyberpunk edges) ========= */
.neon-frame {
  position: absolute; inset: 20px 16px; pointer-events: none; z-index: 0;
  --nf: var(--cyan);
}
.nf-line {
  position: absolute; background: var(--nf);
  box-shadow: 0 0 8px var(--nf), 0 0 20px var(--nf);
  opacity: 0.7;
}
.nf-l, .nf-r { top: 0; bottom: 0; width: 1px; }
.nf-l { left: 0; }
.nf-r { right: 0; }
.nf-l::before, .nf-r::before {
  content: ''; position: absolute; left: -2px; right: -2px; height: 40%;
  background: linear-gradient(180deg, transparent, var(--nf), transparent);
  animation: nf-sweep 4s ease-in-out infinite;
}
.nf-r::before { animation-delay: 2s; }
@keyframes nf-sweep { 0% { top: -40%; } 100% { top: 120%; } }
.nf-t, .nf-b { left: 0; right: 0; height: 1px; opacity: 0.35; }
.nf-t { top: 0; } .nf-b { bottom: 0; }
.nf-corner {
  position: absolute; width: 22px; height: 22px;
  border: 2px solid var(--nf);
  box-shadow: 0 0 12px var(--nf);
}
.nf-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.nf-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.nf-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.nf-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.nf-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--nf), transparent);
  opacity: 0.5;
  animation: nf-scan 6s linear infinite;
}
@keyframes nf-scan { 0% { top: 0; } 100% { top: 100%; } }
.nf-tag {
  position: absolute; font-family: var(--font-mono); font-size: 10px;
  color: var(--nf); letter-spacing: 0.1em; text-transform: lowercase;
  background: var(--bg); padding: 2px 8px;
}
.nf-tag-tl { top: -8px; left: 32px; }
.nf-tag-br { bottom: -8px; right: 32px; }
@media (max-width: 720px) {
  .neon-frame { inset: 12px 8px; }
  .nf-tag { display: none; }
}

/* ========= STEP GLYPH (icons for how-it-works) ========= */
.step-glyph {
  position: absolute; top: 22px; right: 22px;
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: radial-gradient(circle at center, rgba(0,229,255,0.18), transparent 70%), var(--panel-2);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,0.25), inset 0 0 14px rgba(0,229,255,0.12);
}
.step-glyph svg { width: 26px; height: 26px; filter: drop-shadow(0 0 6px currentColor); }
.step .step-num { margin-bottom: 56px; }

/* ========= TESTIMONIAL ========= */
.testimonial {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 880px) { .testimonial { grid-template-columns: 1fr; } }
.t-left {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0,229,255,0.04), transparent 60%),
    var(--panel);
}
@media (max-width: 880px) { .t-left { border-right: none; border-bottom: 1px solid var(--line); } }
.t-club { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.t-avatar {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--cyan);
  background: var(--panel-2);
  border: 1px solid rgba(0,229,255,0.4);
  box-shadow: 0 0 24px rgba(0,229,255,0.2), inset 0 0 12px rgba(0,229,255,0.1);
}
.t-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.02em; }
.t-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); margin-top: 4px; }
.t-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.t-stat { padding: 14px 0; border-top: 1px solid var(--line); }
.t-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--lime); letter-spacing: 0.01em; }
.t-stat .l { font-family: var(--font-mono); font-size: 10px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.t-right {
  padding: 48px 40px;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.t-quote-mark {
  font-family: var(--font-display); font-weight: 800; font-size: 96px; line-height: 0.6;
  color: var(--cyan); opacity: 0.25;
  position: absolute; top: 24px; left: 32px;
}
.t-quote {
  font-family: var(--font-body); font-size: 20px; line-height: 1.5; color: var(--ink);
  font-weight: 500; text-wrap: pretty;
  margin: 24px 0 28px; position: relative; z-index: 1;
  letter-spacing: -0.005em;
}
.t-author-name { font-weight: 700; font-size: 15px; }
.t-author-role { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); margin-top: 4px; }

/* ========= FINAL CTA (flat, single tone, no gradient) ========= */
.final-cta {
  padding: 72px 48px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line-2);
  text-align: center;
  position: relative;
}
.final-cta h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; letter-spacing: -0.01em;
  text-wrap: balance; max-width: 760px; margin: 16px auto 0;
}
.final-cta-row { display: flex; justify-content: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
@media (max-width: 720px) { .final-cta { padding: 48px 24px; } }

