@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #0d0606;
  --bg-surface:   #150a0a;
  --bg-card:      rgba(255, 255, 255, 0.03);
  --border:       rgba(255, 255, 255, 0.07);
  --border-acc:   rgba(220, 38, 38, 0.28);
  --accent:       #dc2626;
  --accent2:      #ef4444;
  --gradient:     linear-gradient(135deg, #dc2626, #ef4444);
  --grad-text:    linear-gradient(135deg, #fca5a5, #f87171);
  --gold:         #f59e0b;
  --green:        #10b981;
  --text:         #f8fafc;
  --text2:        #94a3b8;
  --text3:        #475569;
  --glow:         0 0 60px rgba(220, 38, 38, 0.14);
  --glow-strong:  0 0 50px rgba(220, 38, 38, 0.35);
  --radius:       16px;
  --radius-sm:    10px;
  --ease:         0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Deep radial ambient glows */
body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: -5%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -5%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── CANVAS ─────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── CONTAINERS ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--ease), border-bottom var(--ease);
}
.navbar.scrolled {
  background: rgba(6, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-beam {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tech { color: var(--text); }
.beta-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: #000;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--text2);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-actions { flex-shrink: 0; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: var(--gradient);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37, 99, 235, 0.42);
}
.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
}
.btn-ghost {
  color: var(--text2);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  background: transparent;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Diagonal beam accent */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 8%;
  width: 480px;
  height: 700px;
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.1) 0%, transparent 55%);
  transform: rotate(-12deg);
  pointer-events: none;
  filter: blur(70px);
  z-index: 0;
}

.hero-inner-stack {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content-center {
  text-align: center;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: dotpulse 2.2s infinite;
}
@keyframes dotpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text);
  line-height: 1.12;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.08rem;
  color: var(--text2);
  margin-bottom: 38px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── VIDEO CAROUSEL ─────────────────────────────── */
.hero-video-bottom {
  width: 100%;
  max-width: 1100px;
}
.video-eyebrow-center {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

/* Outer: wraps video + floating arrows */
.vc-outer {
  position: relative;
}

/* Arrows — float over the left/right edges of the video */
.vc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(8, 2, 2, 0.82);
  border: 1px solid rgba(220,38,38,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vc-prev { left: 14px; }
.vc-next { right: 14px; }
.vc-arrow svg { width: 18px; height: 18px; }
.vc-arrow:hover { background: rgba(220,38,38,0.22); border-color: var(--accent); color: #fff; }
.vc-arrow:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

/* Track wrapper: full width, clips to one slide */
.vc-track-wrap {
  overflow: hidden;
}
.vc-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Each slide: 100% of track-wrap */
.vc-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  transition: opacity 0.45s ease, filter 0.45s ease;
}
.vc-slide.vc-inactive {
  opacity: 0.3;
  filter: grayscale(0.5) brightness(0.35);
  pointer-events: none;
}

/* The actual video frame */
.vc-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-acc);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 80px rgba(220, 38, 38, 0.35),
    0 40px 100px rgba(0,0,0,0.6);
}
.vc-slide.vc-inactive .vc-frame {
  box-shadow: none;
  border-color: var(--border);
}
.vc-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Dots */
.vc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.vc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--ease), transform var(--ease);
}
.vc-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* Keep old .video-wrap-wide styles for other pages that may reference it */
.video-wrap-wide {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-acc);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 80px rgba(220, 38, 38, 0.35),
    0 40px 100px rgba(0,0,0,0.6);
}
.video-wrap-wide iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* scroll caret */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text3);
  animation: caret 2.2s ease-in-out infinite;
  z-index: 1;
}
.scroll-down svg { width: 24px; height: 24px; display: block; }
@keyframes caret {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* ─── MODULE STATUS BOARD ────────────────────────── */
.status-board {
  padding: 60px 0;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.sb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 1200px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}
.sb-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: dotpulse 2s infinite;
}
.sb-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
}
.sb-live {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.22);
  color: #34d399;
  padding: 2px 8px;
  border-radius: 4px;
}
.sb-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.sb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease);
  backdrop-filter: blur(8px);
}
.sb-item.sb-on {
  border-color: rgba(16,185,129,0.18);
}
.sb-item.sb-on:hover {
  border-color: rgba(16,185,129,0.38);
  box-shadow: 0 0 24px rgba(16,185,129,0.08);
}
.sb-item.sb-off { opacity: 0.45; }
.sb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sb-on .sb-dot {
  background: var(--green);
  box-shadow: 0 0 10px rgba(16,185,129,0.7);
  animation: dotpulse 2.4s infinite;
}
.sb-off .sb-dot {
  background: var(--text3);
}
.sb-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}
.sb-state {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sb-on .sb-state { color: #34d399; }
.sb-off .sb-state { color: var(--text3); }

/* ─── FEATURES ───────────────────────────────────── */
.features {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text2);
  max-width: 540px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--ease);
}
.feature-card:hover {
  border-color: var(--border-acc);
  box-shadow: var(--glow);
  transform: translateY(-5px);
}
.feature-card:hover::before { opacity: 1; }

.feature-card.coming-soon {
  opacity: 0.45;
  pointer-events: none;
}

.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.feat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.feat-meta h3 {
  font-size: 1.05rem;
  font-weight: 600;
}
.feat-status {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.feat-status.active {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.feat-status.soon {
  background: rgba(100, 116, 139, 0.12);
  color: var(--text3);
  border: 1px solid rgba(100, 116, 139, 0.15);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 22px;
  line-height: 1.65;
}
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent2);
  transition: gap var(--ease), color var(--ease);
}
.feat-link:hover { gap: 10px; color: #fca5a5; }
.feat-muted {
  font-size: 0.84rem;
  color: var(--text3);
  font-weight: 500;
}

/* ─── SETUP SECTION ──────────────────────────────── */
.setup-section {
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
}
.setup-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.setup-step {
  flex: 1;
  background: rgba(255,255,255,0.024);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color var(--ease), background var(--ease);
}
.setup-step:hover {
  border-color: var(--border-acc);
  background: rgba(37,99,235,0.05);
}
.step-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.step-body p {
  font-size: 0.86rem;
  color: var(--text2);
  line-height: 1.65;
  margin: 0;
}
.step-body code {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: #fca5a5;
}
.step-arrow {
  font-size: 1.2rem;
  color: var(--text3);
  padding: 0 16px;
  flex-shrink: 0;
}
.setup-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 12px;
}
.notice-icon {
  font-size: 1.2rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-body {
  font-size: 0.86rem;
  color: var(--text2);
  line-height: 1.7;
}
.notice-body strong { color: var(--text); }
.notice-body em { color: #f59e0b; font-style: normal; }

/* ─── ROADMAP SECTION ────────────────────────────── */
.roadmap-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.rm-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.024);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color var(--ease);
}
.rm-item:hover { border-color: var(--border-acc); }
.rm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 6px;
}
.rm-done .rm-dot { background: var(--green); box-shadow: 0 0 8px var(--green); }
.rm-item:not(.rm-done):not(.rm-planned) .rm-dot { background: #f59e0b; }
.rm-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.rm-live  { background: rgba(34,197,94,0.12); color: var(--green); }
.rm-wip   { background: rgba(245,158,11,0.12); color: #f59e0b; }
.rm-soon  { background: rgba(255,255,255,0.07); color: var(--text3); }
.rm-body h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.rm-body p  { font-size: 0.82rem; color: var(--text2); line-height: 1.5; margin: 0; }

/* ─── FAQ SECTION ────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.faq-accordion {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-row {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.faq-row.open {
  border-bottom-color: rgba(220,38,38,0.3);
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 6px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
}
.faq-toggle:hover .faq-q { color: #fff; }
.faq-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  font-variant-numeric: tabular-nums;
}
.faq-q {
  flex: 1;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  position: relative;
  transition: border-color 0.2s, transform 0.3s;
}
/* + bar */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text2);
  border-radius: 2px;
  transition: background 0.2s, transform 0.3s, opacity 0.3s;
}
.faq-icon::before { width: 9px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 9px; transform: translate(-50%,-50%); }
/* open state */
.faq-row.open .faq-icon { border-color: var(--accent); }
.faq-row.open .faq-icon::before { background: var(--accent); }
.faq-row.open .faq-icon::after  { background: var(--accent); opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
/* body */
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
  padding-left: 42px;
}
.faq-row.open .faq-body {
  max-height: 300px;
}
.faq-body p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.75;
  margin: 0 0 22px;
  padding-right: 32px;
}
.faq-body p a { color: #fca5a5; }
.faq-body p a:hover { text-decoration: underline; }

/* ─── SUPPORTER SECTION ──────────────────────────── */
.supporter-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.supporter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
}
.supporter-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.supporter-left > p {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}
.sup-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text3);
}
.supporter-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.perk-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.024);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px;
  transition: border-color var(--ease), background var(--ease);
}
.perk-card:hover {
  border-color: var(--border-acc);
  background: rgba(37,99,235,0.05);
}
.perk-icon-wrap {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.perk-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.perk-body p {
  font-size: 0.86rem;
  color: var(--text2);
  line-height: 1.65;
  margin: 0;
}
.inline-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 1px 7px;
  border-radius: 5px;
  background: var(--gradient);
  color: #fff;
  vertical-align: middle;
}

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.cta-card {
  background: linear-gradient(135deg, rgba(220,38,38,0.09), rgba(239,68,68,0.09));
  border: 1px solid var(--border-acc);
  border-radius: 24px;
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.cta-card > p {
  color: var(--text2);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-nav-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav-row a {
  color: var(--text2);
  font-size: 0.88rem;
  transition: color var(--ease);
}
.footer-nav-row a:hover { color: var(--text); }
.footer-copy {
  color: var(--text3);
  font-size: 0.82rem;
  margin: 0;
}

/* ─── HAMBURGER ──────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  margin-left: auto;
  transition: background var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,0.06); }

/* ─── MOBILE NAV OVERLAY ─────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 15, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text2);
  transition: color var(--ease);
}
.mobile-overlay a:hover { color: var(--text); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--ease);
}
.mobile-close:hover { background: rgba(255,255,255,0.06); }

/* ─── INNER PAGE HERO ────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.page-hero p {
  color: var(--text2);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.page-hero .last-updated {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: 20px;
}

/* ─── LEGAL CONTENT ──────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  position: relative;
  z-index: 1;
}
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 44px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text2);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul {
  color: var(--text2);
  font-size: 0.93rem;
  padding-left: 22px;
  margin-bottom: 14px;
  line-height: 1.85;
}
.legal-content ul li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-warn {
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: #fbbf24;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ─── COMING SOON PAGE ───────────────────────────── */
.coming-soon-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}
.coming-soon-card { max-width: 480px; }
.cs-icon { font-size: 4.5rem; margin-bottom: 28px; display: block; }
.coming-soon-card h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.coming-soon-card > p {
  color: var(--text2);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ─── DOWNLOAD PAGE ──────────────────────────────── */
.dl-hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.dl-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.dl-hero > .container > p {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 48px;
}
.ver-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.09);
  border: 1px solid var(--border-acc);
  color: var(--accent2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--border-acc);
  border-radius: 20px;
  padding: 44px;
  max-width: 480px;
  margin: 0 auto 72px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.dl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 20px 20px 0 0;
}
.dl-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 36px;
}
.dl-stat { text-align: center; }
.dl-stat .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  font-weight: 600;
  margin-bottom: 6px;
}
.dl-stat .value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.dl-note {
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: 16px;
  text-align: center;
}
.dl-note a { color: var(--accent2); }

.dl-reqs {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.dl-reqs h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}
.reqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.req-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color var(--ease);
}
.req-item:hover { border-color: var(--border-acc); }
.req-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.req-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.req-item p  { font-size: 0.8rem; color: var(--text2); line-height: 1.5; }

/* ─── FADE-IN ANIMATION ──────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GRADIENT DIVIDER ───────────────────────────── */
.g-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--border-acc), transparent);
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sb-grid { grid-template-columns: repeat(3, 1fr); }
  .supporter-wrap { gap: 40px; }
  .roadmap-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-inner-stack { gap: 40px; }
  .scroll-down { display: none; }

  .sb-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .setup-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; }
  .roadmap-list { grid-template-columns: 1fr; }
  .faq-body { padding-left: 0; }
  .supporter-wrap { grid-template-columns: 1fr; }
  .supporter-left > p { max-width: 100%; }
  .footer-nav-row { gap: 20px; }

  .cta-card { padding: 60px 28px; }
  .reqs-grid { grid-template-columns: 1fr; }
  .dl-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary.btn-lg,
  .btn-ghost { width: 100%; justify-content: center; }
  .dl-stats { flex-direction: column; gap: 20px; }
  .sb-grid { grid-template-columns: repeat(2, 1fr); }
  .vc-peek { flex: 0 0 14%; }
  .vc-arrow { width: 36px; height: 36px; }
}
