/* ─── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #07070E;
  --bg2:       #0D0D1A;
  --bg3:       #111128;
  --blue:      #00D4FF;
  --blue-dim:  #0099BB;
  --magenta:   #FF2D78;
  --mag-dim:   #CC1F5E;
  --green:     #B8F369;
  --white:     #F0F0FF;
  --muted:     #6B6B8A;
  --border:    rgba(0,212,255,0.12);
  --glow-b:    0 0 30px rgba(0,212,255,0.35);
  --glow-m:    0 0 30px rgba(255,45,120,0.35);
  --font-head: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: rgba(0,212,255,0.25); color: var(--white); }

/* ─── SCROLLBAR ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 2px; }

/* ─── CANVAS BACKGROUND ─────────────────────────────────────────────────── */
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ─── SCANLINE OVERLAY ──────────────────────────────────────────────────── */
.scanlines {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
}

/* ─── NOISE TEXTURE ─────────────────────────────────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── LAYOUT WRAPPER ────────────────────────────────────────────────────── */
.wrapper { position: relative; z-index: 2; }

/* ─── NAV ───────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(7,7,14,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 14px 60px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none; color: var(--white);
}
.nav-logo .hex-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  animation: hexPulse 3s ease-in-out infinite;
}
@keyframes hexPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(0,212,255,0.6)); }
  50% { filter: drop-shadow(0 0 14px rgba(255,45,120,0.8)); }
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue) !important;
  border-radius: 4px;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: rgba(0,212,255,0.1) !important;
  box-shadow: var(--glow-b) !important;
  color: var(--blue) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(0,212,255,0.05);
  animation: fadeSlideDown 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--blue) 0%, var(--magenta) 60%, var(--green) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite, fadeSlideDown 0.8s 0.1s ease both;
}
@keyframes gradientShift { 0%{background-position:0%} 100%{background-position:200%} }

.hero-sub {
  max-width: 640px;
  font-size: 16px; line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
  animation: fadeSlideDown 0.8s 0.2s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 72px;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #fff; font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  border: none; border-radius: 6px; cursor: pointer;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--magenta), var(--blue));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,212,255,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-family: var(--font-head);
  font-size: 15px; font-weight: 600;
  border-radius: 6px; cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

/* Provider pills */
.provider-strip {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
  animation: fadeSlideDown 0.8s 0.4s ease both;
}
.provider-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-right: 4px;
}
.pill {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  border: 1px solid;
  letter-spacing: 0.04em;
}
.pill-blue  { border-color: rgba(0,212,255,0.4); color: var(--blue); background: rgba(0,212,255,0.06); }
.pill-mag   { border-color: rgba(255,45,120,0.4); color: var(--magenta); background: rgba(255,45,120,0.06); }
.pill-green { border-color: rgba(184,243,105,0.4); color: var(--green); background: rgba(184,243,105,0.06); }
.pill-white { border-color: rgba(240,240,255,0.2); color: var(--white); background: rgba(240,240,255,0.04); }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeSlideDown 1s 0.8s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ─── TERMINAL BLOCK ────────────────────────────────────────────────────── */
.terminal-wrap {
  max-width: 700px; width: 100%;
  margin: 0 auto 80px;
  animation: fadeSlideDown 0.8s 0.35s ease both;
}
.terminal {
  background: rgba(13,13,26,0.9);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,212,255,0.08), 0 20px 60px rgba(0,0,0,0.5);
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-dot.r { background: #FF5F57; }
.t-dot.y { background: #FEBC2E; }
.t-dot.g { background: #28C840; }
.terminal-title {
  flex: 1; text-align: center;
  font-size: 12px; color: var(--muted); letter-spacing: 0.05em;
}
.terminal-body { padding: 20px 24px; font-size: 13px; line-height: 1.9; }
.t-line { display: flex; gap: 10px; }
.t-prompt { color: var(--magenta); user-select: none; }
.t-cmd { color: var(--white); }
.t-out { color: var(--muted); padding-left: 20px; }
.t-out .hi-b { color: var(--blue); }
.t-out .hi-g { color: var(--green); }
.t-out .hi-m { color: var(--magenta); }
.t-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--blue); vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ─── SECTION SHARED ────────────────────────────────────────────────────── */
section { padding: 100px 40px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--blue);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.8;
}
.container { max-width: 1160px; margin: 0 auto; }

/* ─── STATS BAR ─────────────────────────────────────────────────────────── */
#stats {
  padding: 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--muted); }

/* ─── FEATURES ──────────────────────────────────────────────────────────── */
#features { background: var(--bg2); }
.features-header { margin-bottom: 64px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feat-card {
  background: var(--bg3);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.feat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover { background: rgba(0,212,255,0.04); }
.feat-card:hover::before { opacity: 1; }
.feat-card.mag::before { background: linear-gradient(90deg, transparent, var(--magenta), transparent); }
.feat-card.green::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.feat-card.mag:hover { background: rgba(255,45,120,0.04); }
.feat-card.green:hover { background: rgba(184,243,105,0.04); }

.feat-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 22px;
}
.feat-icon.blue  { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); }
.feat-icon.mag   { background: rgba(255,45,120,0.1); border: 1px solid rgba(255,45,120,0.2); }
.feat-icon.green { background: rgba(184,243,105,0.1); border: 1px solid rgba(184,243,105,0.2); }

.feat-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px; color: var(--white);
}
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.feat-tag {
  font-size: 11px; padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

/* ─── HOW IT WORKS ──────────────────────────────────────────────────────── */
#how {
  background: var(--bg);
  position: relative; overflow: hidden;
}
#how::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 64px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  opacity: 0.5; transition: opacity 0.3s;
  cursor: default;
}
.how-step:hover { opacity: 1; }
.how-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  color: var(--blue); letter-spacing: 0.1em;
  min-width: 32px; padding-top: 3px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  margin-bottom: 6px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Architecture diagram */
.arch-diagram {
  background: rgba(13,13,26,0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.arch-title {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px; text-align: center;
}
.arch-layers { display: flex; flex-direction: column; gap: 10px; }
.arch-layer {
  border-radius: 8px; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 500;
}
.arch-layer.l1 { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); color: var(--blue); }
.arch-layer.l2 { background: rgba(255,45,120,0.08); border: 1px solid rgba(255,45,120,0.2); color: var(--magenta); }
.arch-layer.l3 { background: rgba(184,243,105,0.08); border: 1px solid rgba(184,243,105,0.2); color: var(--green); }
.arch-layer.l4 { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--muted); }
.arch-arrow {
  text-align: center; color: var(--muted); font-size: 18px;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
.arch-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.arch-chip {
  font-size: 11px; padding: 2px 8px;
  border-radius: 4px; background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
}

/* ─── CHANNELS ──────────────────────────────────────────────────────────── */
#channels { background: var(--bg2); }
.channels-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-top: 64px;
}
.channel-list { display: flex; flex-direction: column; gap: 12px; }
.channel-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.channel-item:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateX(4px);
}
.ch-icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ch-name { font-family: var(--font-head); font-size: 15px; font-weight: 600; }
.ch-desc { font-size: 12px; color: var(--muted); }
.ch-badge {
  margin-left: auto; font-size: 10px; padding: 3px 8px;
  border-radius: 100px; border: 1px solid;
}
.ch-badge.live { border-color: rgba(184,243,105,0.4); color: var(--green); }
.ch-badge.soon { border-color: rgba(255,255,255,0.15); color: var(--muted); }

.channels-visual {
  background: rgba(13,13,26,0.8);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
}
.msg-thread { display: flex; flex-direction: column; gap: 14px; }
.msg {
  display: flex; gap: 12px; align-items: flex-start;
}
.msg.right { flex-direction: row-reverse; }
.msg-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.msg-bubble {
  max-width: 75%; padding: 10px 14px;
  border-radius: 12px; font-size: 13px; line-height: 1.6;
}
.msg.left .msg-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  border-top-left-radius: 4px;
}
.msg.right .msg-bubble {
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--blue);
  border-top-right-radius: 4px;
}
.msg-time { font-size: 10px; color: var(--muted); margin-top: 4px; }

/* ─── PROVIDERS / COST ──────────────────────────────────────────────────── */
#cost {
  background: var(--bg);
  position: relative; overflow: hidden;
}
#cost::after {
  content: ''; position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,45,120,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cost-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 64px;
}
.cost-card {
  background: var(--bg3);
  padding: 36px 28px;
  position: relative; overflow: hidden;
}
.cost-card.featured {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(255,45,120,0.08));
  border: 1px solid rgba(0,212,255,0.2);
}
.cost-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; letter-spacing: 0.12em;
  color: var(--blue); padding: 3px 8px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 100px;
}
.cost-icon { font-size: 28px; margin-bottom: 16px; }
.cost-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
}
.cost-price {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 800;
  color: var(--blue); margin-bottom: 4px;
}
.cost-price.mag { color: var(--magenta); }
.cost-price.green { color: var(--green); }
.cost-sub { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.cost-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cost-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.cost-features li::before {
  content: '→'; color: var(--blue); font-size: 12px;
}
.cost-features.mag li::before { color: var(--magenta); }
.cost-features.green li::before { color: var(--green); }

/* ─── CTA ───────────────────────────────────────────────────────────────── */
#cta {
  background: var(--bg2);
  text-align: center;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,45,120,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.cta-title span {
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub { font-size: 15px; color: var(--muted); margin-bottom: 48px; line-height: 1.8; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 12px; color: var(--muted); }
.cta-note a { color: var(--blue); text-decoration: none; }

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 800;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ─── ANIMATIONS ────────────────────────────────────────────────────────── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 60px;
    background: rgba(7,7,14,0.97);
    align-items: center; justify-content: center;
    gap: 32px; z-index: 99;
  }
  .nav-links.open a { font-size: 18px; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .channels-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 70px 24px; }
  #stats { padding: 0 24px; }
  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .feat-card[style*="span 2"] { grid-column: span 1 !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 16px; }
  .stat-num { font-size: 32px; }
  .cost-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
}