*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #07070f;
  --card:    #111124;
  --border:  #1e1b38;
  --accent:  #c084fc;
  --text:    #e2e8f0;
  --muted:   #6b7280;
  --green:   #86efac;
  --pink:    #f472b6;
  --gold:    #fbbf24;
  --dim:     #2a2a4a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Consolas, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 50px;
  background: rgba(7,7,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1.05rem; font-weight: bold;
  letter-spacing: 0.1em; color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.75rem; color: var(--muted); text-decoration: none;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 0.78rem; font-weight: bold;
  background: var(--accent); color: #000;
  padding: 6px 18px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.05em;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 600px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 4vw;
  overflow: hidden;
}

/* animated wall fills the right side */
.hero-wall {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
  opacity: 0.55;
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hc {
  background: var(--card);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hc video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* scan-line overlay on top of video */
.hc::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
/* playback bar */
.hc::after {
  content: "";
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--accent);
  animation: play linear infinite;
  border-radius: 0 2px 2px 0;
}
.hc:nth-child(1)::after  { animation-duration: 11s; animation-delay: -2s;  }
.hc:nth-child(2)::after  { animation-duration: 17s; animation-delay: -7s;  }
.hc:nth-child(3)::after  { animation-duration: 8s;  animation-delay: -1s;  }
.hc:nth-child(4)::after  { animation-duration: 14s; animation-delay: -5s;  }
.hc:nth-child(5)::after  { animation-duration: 22s; animation-delay: -11s; }
.hc:nth-child(6)::after  { animation-duration: 9s;  animation-delay: -4s;  }
.hc:nth-child(7)::after  { animation-duration: 19s; animation-delay: -8s;  }
.hc:nth-child(8)::after  { animation-duration: 13s; animation-delay: -3s;  }
.hc:nth-child(9)::after  { animation-duration: 7s;  animation-delay: -6s;  }
.hc:nth-child(10)::after { animation-duration: 16s; animation-delay: -9s;  }
.hc:nth-child(11)::after { animation-duration: 12s; animation-delay: -2s;  }
.hc:nth-child(12)::after { animation-duration: 20s; animation-delay: -14s; }

@keyframes play {
  from { width: 0%; }
  to   { width: 100%; }
}

/* pulsing glow on some cells */
.hc:nth-child(2), .hc:nth-child(7), .hc:nth-child(10) {
  box-shadow: inset 0 0 0 1px rgba(192,132,252,0.25);
  animation: pulse 4s ease-in-out infinite;
}
.hc:nth-child(2) { animation-delay: 0s; }
.hc:nth-child(7) { animation-delay: 1.5s; }
.hc:nth-child(10){ animation-delay: 3s; }
@keyframes pulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(192,132,252,0.2); }
  50%       { box-shadow: inset 0 0 0 1px rgba(192,132,252,0.55); }
}

/* small cell overlays */
.hc-ab {
  position: absolute; top: 5px; right: 5px; z-index: 2;
  font-family: Consolas, monospace;
  font-size: 0.5rem; color: var(--green);
  background: rgba(26,42,26,0.85);
  padding: 1px 5px; border-radius: 2px;
  letter-spacing: 0.05em;
}
.hc-vol {
  position: absolute; bottom: 8px; right: 6px; z-index: 2;
  font-family: Consolas, monospace;
  font-size: 0.5rem; color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* left fade + glow */
.hero::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 50%,
      rgba(192,132,252,0.08) 0%, transparent 70%),
    linear-gradient(to right, var(--bg) 35%, transparent 65%);
  z-index: 1; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 560px;
}
.hero-kicker {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-kicker::before {
  content: "";
  display: inline-block; width: 28px; height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: bold;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--accent); display: block; }

.hero-desc {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 2rem;
  max-width: 400px;
}

.hero-btns {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex; gap: 2rem;
}
.stat { }
.stat-num {
  font-size: 1.6rem; font-weight: bold; color: var(--text);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 10px 0;
}
.ticker-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.ticker-item span { color: var(--accent); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: #000;
  border: none; border-radius: 3px;
  padding: 12px 28px;
  font-family: inherit; font-size: 0.88rem; font-weight: bold;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.15s; display: inline-block;
  letter-spacing: 0.04em;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1px solid var(--dim); border-radius: 3px;
  padding: 12px 28px;
  font-family: inherit; font-size: 0.88rem; font-weight: bold;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.15s, color 0.15s; display: inline-block;
  letter-spacing: 0.04em;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }

/* ── SECTION WRAPPER ── */
.section {
  max-width: 1000px; margin: 0 auto;
  padding: 5rem 2rem;
}
.section-tag {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::after {
  content: ""; flex: 1; max-width: 40px;
  height: 1px; background: var(--accent); opacity: 0.4;
}
.section-h {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: bold; line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted); font-size: 0.88rem;
  max-width: 480px; margin-bottom: 3rem;
  line-height: 1.65;
}

/* ── FEATURES LIST ── */
#features {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0b1e 100%);
}
.feat-list { position: relative; }

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
  overflow: hidden;
}
.feat-row::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}
.feat-row:hover::before { opacity: 1; }
.feat-row:hover { background: rgba(192,132,252,0.04); }
.feat-row.last { border-bottom: none; }

.feat-ghost {
  position: absolute; right: -0.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 5rem; font-weight: bold;
  color: rgba(255,255,255,0.025);
  line-height: 1; pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.feat-left {
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  justify-content: center; gap: 0.5rem;
  position: relative;
}
.feat-num {
  font-size: 0.6rem; color: var(--dim);
  letter-spacing: 0.15em;
}
.feat-name {
  font-size: 0.92rem; color: var(--text);
  font-weight: bold; line-height: 1.2;
}
.feat-pill {
  display: inline-block;
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 2px; width: fit-content;
}
.feat-pill.free  { background: rgba(134,239,172,0.1); color: var(--green); }
.feat-pill.pro   { background: rgba(251,191,36,0.1);  color: var(--gold); }

.feat-right {
  padding: 1.4rem 2rem;
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.7;
  display: flex; align-items: center;
}

@media (max-width: 600px) {
  .feat-row { grid-template-columns: 1fr; }
  .feat-left { border-right: none; border-bottom: 1px solid var(--border); }
  .feat-ghost { display: none; }
}

/* ── STATEMENT ── */
.statement {
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0a0818;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(192,132,252,0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
}
.statement-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.statement-quote {
  font-size: 5rem; line-height: 0.6;
  color: var(--accent); opacity: 0.15;
  display: block; margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.statement p {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: bold; line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text);
}
.statement p em   { font-style: normal; color: var(--accent); }
.statement p .dim { color: var(--muted); font-weight: normal; font-size: 80%; }

/* ── PRICING ── */
#pricing { background: var(--bg); }

.pricing {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 640px) { .pricing { grid-template-columns: 1fr; } }

.plan {
  border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
  background: var(--card);
  position: relative;
}
.plan.pro {
  border-color: transparent;
  background: linear-gradient(#0e0a1e, #0e0a1e) padding-box,
              linear-gradient(135deg, var(--accent), #818cf8, var(--accent)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 40px rgba(192,132,252,0.12), 0 0 80px rgba(192,132,252,0.05);
}
.plan-tier {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
}
.plan-price {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: bold; line-height: 1; color: var(--text);
  margin-bottom: 0.25rem;
}
.plan-price small {
  font-size: 0.82rem; color: var(--muted);
  font-weight: normal; vertical-align: baseline;
}
.plan-note {
  font-size: 0.78rem; color: var(--muted);
  margin: 0.4rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan ul { list-style: none; margin-bottom: 2rem; }
.plan ul li {
  font-size: 0.8rem; color: var(--muted);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.plan ul li:last-child { border-bottom: none; }
.plan ul li::before { content: "✓"; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plan ul li.off { color: var(--dim); }
.plan ul li.off::before { content: "—"; color: var(--dim); }

.plan-btn {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 5px;
  font-family: inherit; font-size: 0.9rem; font-weight: bold;
  text-decoration: none; cursor: pointer; border: none;
  letter-spacing: 0.05em;
}
.plan-btn.free {
  background: transparent; border: 1px solid var(--dim);
  color: var(--muted); transition: border-color 0.15s, color 0.15s;
}
.plan-btn.free:hover { border-color: var(--accent); color: var(--text); }
.plan-btn.upgrade {
  background: var(--accent); color: #000;
  transition: opacity 0.15s;
  font-size: 0.95rem;
}
.plan-btn.upgrade:hover { opacity: 0.85; }

/* ── DOWNLOAD ── */
.dl-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem;
  text-align: center;
  background: #050510;
}
.dl-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.dl-section::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(192,132,252,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dl-inner {
  position: relative; z-index: 1;
  max-width: 560px; margin: 0 auto;
}
.dl-inner .section-tag { justify-content: center; }
.dl-inner .section-tag::after { display: none; }
.dl-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: bold; margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.dl-left p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; }
.dl-meta {
  font-size: 0.72rem; color: var(--dim);
  margin-bottom: 2rem;
}
.dl-meta span { color: var(--green); }

/* ── PLATFORM BADGES ── */
.dl-platforms {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.platform {
  font-size: 0.68rem; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 3px;
}
.platform.active {
  background: rgba(134,239,172,0.1); color: var(--green);
  border: 1px solid rgba(134,239,172,0.2);
}
.platform.soon {
  background: transparent; color: var(--dim);
  border: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.75rem; color: var(--dim);
  background: #050510;
}
footer a { color: var(--dim); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--muted); }
.footer-r { display: flex; gap: 2rem; }
