/* ================================================================
   TETHERS HOOD — style.css
   Pixel-perfect match with CatHood.app source code
   ================================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --primary:        #CCFF00;
  --primary-10:     rgba(204,255,0,0.10);
  --primary-15:     rgba(204,255,0,0.15);
  --primary-20:     rgba(204,255,0,0.20);
  --primary-25:     rgba(204,255,0,0.25);
  --primary-40:     rgba(204,255,0,0.40);
  --primary-glow:   rgba(204,255,0,0.35);

  --bg:             #000000;
  --surface:        rgba(255,255,255,0.04);
  --surface-80:     rgba(0,0,0,0.80);
  --surface-elev:   rgba(255,255,255,0.06);
  --border:         rgba(255,255,255,0.10);
  --border-hover:   rgba(255,255,255,0.18);

  --text:           #ffffff;
  --text-muted:     #6b7280;
  --text-dim:       rgba(255,255,255,0.65);

  --font-heading:   'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', 'Courier New', monospace;

  --radius-sm:      0.75rem;
  --radius-md:      1rem;
  --radius-lg:      1.75rem;
  --radius-pill:    9999px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-accent:  0 0 40px rgba(204,255,0,0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── GRID BACKGROUND ── */
.bg-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── LAYOUT ── */
.container {
  width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 0 24px;
}
.container-wide {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.font-heading { font-family: var(--font-heading); }
.font-mono    { font-family: var(--font-mono); }
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-green   { color: var(--primary); }
.fw-800       { font-weight: 800; }

/* ── CARD GLASS ── */
.card-glass {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ────────────────────────────────────────────
   NAVBAR — exact CatHood pill style
   fixed inset-x-0 top-3 sm:top-5
   ──────────────────────────────────────────── */
.nav-header {
  position: fixed;
  inset: 12px 12px auto 12px;
  z-index: 1000;
}
@media (min-width: 640px) {
  .nav-header { inset: 20px 16px auto 16px; }
}

.nav-container { max-width: 1020px; margin: 0 auto; position: relative; }

.nav-pill {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 56px;
  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0 8px 0 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
  transition: box-shadow 0.3s;
}
.nav-pill:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06); }

/* Brand */
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  opacity: 1; transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-brand:hover { opacity: 0.8; }
.brand-circle {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--primary-40);
  box-shadow: 0 0 18px rgba(204,255,0,0.25);
  overflow: hidden;
}
.brand-circle.sm { width: 28px; height: 28px; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; color: #fff;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: none;
  align-items: center; gap: 2px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: var(--surface-elev); }
.nav-links a.active { color: #fff; background: var(--surface-elev); }

/* Nav actions */
.nav-actions {
  display: none; align-items: center; gap: 4px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .nav-actions { display: flex; } }

.nav-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.nav-icon-btn:hover { color: #fff; background: var(--surface-elev); }

.btn-join-discord {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 16px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text); background: transparent;
  border: 1px solid var(--border);
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
}
.btn-join-discord:hover {
  background: var(--surface-elev);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: rgba(255,255,255,0.06); border: none;
  border-radius: 50%; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  cursor: pointer; margin-left: 6px;
  color: #ffffff;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px; transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding-top: 100px; padding-bottom: 40px;
  overflow-y: auto;
  gap: 6px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--surface-elev); border: none; color: var(--text-muted);
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 600;
  color: var(--text-muted); padding: 8px 0;
  transition: color 0.2s;
  display: block;
  text-align: center;
}
.mobile-link:hover { color: #fff; }
.mobile-discord { margin-top: 20px; font-size: 0.95rem; padding: 12px 28px; }

/* ────────────────────────────────────────────
   SECTION COMMONS
   ──────────────────────────────────────────── */
.section {
  position: relative; width: 100%;
  padding: 96px 0;
}
.sec-alt { background: rgba(255,255,255,0.018); }

/* Section eyebrow label — exact CatHood style */
.sec-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--primary-25);
}

.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.sec-sub {
  text-align: center; color: var(--text-muted);
  font-size: 1rem; line-height: 1.75;
  max-width: 540px; margin: -32px auto 56px;
}

/* ────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────── */
.hero {
  position: relative; width: 100%;
  padding: 144px 16px 40px;
  overflow: hidden;
}
@media (min-width: 640px) { .hero { padding: 176px 24px 60px; } }

.hero-glow-top {
  position: absolute;
  top: -320px; left: 50%; transform: translateX(-50%);
  width: 704px; height: 896px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(204,255,0,0.13), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  mask-image: radial-gradient(ellipse 62% 55% at 50% 34%, black 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 62% 55% at 50% 34%, black 30%, transparent 72%);
}
.hero-grid .bg-grid-lines { position: absolute; inset: 0; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

/* Robinhood badge */
.rh-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary-10);
  border: 1px solid var(--primary-25);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 10px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.rh-badge strong { color: var(--primary); font-weight: 700; }
.rh-badge-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--primary-30);
  border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(204,255,0,0.08);
  flex-shrink: 0;
}

/* Hero title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 7vw, 6.5rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; margin-bottom: 28px;
}
.hero-green {
  display: block; color: var(--primary);
  text-shadow: 0 0 46px rgba(204,255,0,0.4);
  animation: glow-pulse 3.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { text-shadow: 0 0 46px rgba(204,255,0,0.4); }
  50%      { text-shadow: 0 0 70px rgba(204,255,0,0.6), 0 0 120px rgba(204,255,0,0.2); }
}

/* Hero sub */
.hero-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-muted); line-height: 1.75;
  max-width: 580px; margin-bottom: 36px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
}

/* Hero social proof row */
.hero-proof {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center;
  gap: 20px 0; font-size: 0.82rem;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 34px; height: 34px;
  border-radius: 50%; border: 2px solid #000;
  background: var(--surface-elev);
  overflow: hidden; margin-left: -10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin: 0 20px;
  align-self: center;
}
.proof-stat { color: var(--text-muted); }
.proof-stat b { color: #fff; font-weight: 600; }

/* ────────────────────────────────────────────
   WHAT IS SECTION
   ──────────────────────────────────────────── */
.what-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px;
  align-items: start;
}
@media (max-width: 1024px) { .what-grid { grid-template-columns: 1fr; } }

.what-main-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--primary-20);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex; flex-direction: column; gap: 20px;
}
.what-main-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600; line-height: 1.3;
}
.what-main-card h3 span { color: var(--primary); }
.what-main-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

.what-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--primary-25);
  background: var(--primary-10);
  color: var(--primary);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
}

.what-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.stat-card .mono-num {
  font-family: var(--font-mono);
  font-size: 2.4rem; font-weight: 500;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(204,255,0,0.35);
  letter-spacing: -0.02em;
}
.stat-card .stat-label { text-align: right; }
.stat-card .stat-label b { display: block; font-size: 0.95rem; font-weight: 600; }
.stat-card .stat-label small { font-size: 0.78rem; color: var(--text-muted); }

/* ────────────────────────────────────────────
   HOW IT WORKS — exact CatHood layout
   ──────────────────────────────────────────── */
.steps-wrap {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 40px;
}

/* Connector line */
.steps-connector {
  position: absolute; top: 0;
  left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(204,255,0,0.22) 18%,
    rgba(204,255,0,0.22) 82%,
    transparent
  );
  pointer-events: none;
}

/* Dot above each card */
.step-dot {
  position: absolute; top: -5px;
  left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(204,255,0,0.8);
  pointer-events: none;
}

.step-wrap { position: relative; }

.step-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover {
  border-color: rgba(204,255,0,0.22);
  transform: translateY(-4px);
}

/* Step number — stroke text, exact CatHood */
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 600;
  line-height: 1; margin-bottom: 24px;
  /* Outlined stroke text */
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(204,255,0,0.5);
  text-stroke: 1.5px rgba(204,255,0,0.5);
  font-variant-numeric: tabular-nums;
}

/* Step icon box */
.step-ico-box {
  width: 52px; height: 52px;
  border: 1px solid var(--primary-25);
  background: var(--primary-10);
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

/* Step header row */
.step-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.step-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.72; }

/* ────────────────────────────────────────────
   FEATURES
   ──────────────────────────────────────────── */
.feat-outer { position: relative; }
.feat-coming-soon {
  position: absolute; inset: 0; z-index: 10;
  display: grid; place-items: center;
}
.feat-coming-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px; border-radius: var(--radius-pill);
  border: 1px solid var(--primary-25);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 50px rgba(204,255,0,0.14);
}
.ping-dot { position: relative; display: flex; width: 8px; height: 8px; }
.ping-dot::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%; background: var(--primary);
  animation: ping 1.2s ease-in-out infinite;
  opacity: 0.75;
}
.ping-dot::after {
  content: '';
  position: relative; width: 8px; height: 8px;
  border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(2); opacity: 0; }
}

.feat-grid-blur {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  opacity: 0.5; filter: blur(7px) saturate(0.65);
  pointer-events: none; user-select: none;
}
@media (max-width: 1024px) { .feat-grid-blur { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .feat-grid-blur { grid-template-columns: 1fr; } }

.feat-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.feat-ico-box {
  width: 52px; height: 52px;
  border: 1px solid var(--primary-25);
  background: var(--primary-10);
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; margin-bottom: 24px;
}
.feat-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.feat-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.72; }

/* ────────────────────────────────────────────
   ROADMAP
   ──────────────────────────────────────────── */
.roadmap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px)  { .roadmap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .roadmap-grid { grid-template-columns: 1fr; } }

.rm-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.rm-card.active {
  border-color: var(--primary-25);
  background: rgba(204,255,0,0.03);
}

.rm-status {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin-bottom: 18px;
}
.rm-card.done  .rm-status { background: rgba(204,255,0,0.5); }
.rm-card.active .rm-status {
  background: var(--primary);
  box-shadow: 0 0 14px var(--primary);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 14px rgba(204,255,0,0.7); }
  50%      { box-shadow: 0 0 22px rgba(204,255,0,1.0); }
}

.rm-phase {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.active-phase { color: var(--primary); }

.rm-card ul { display: flex; flex-direction: column; gap: 11px; }
.rm-card li { font-size: 0.84rem; color: var(--text-muted); }
.done-li { color: rgba(255,255,255,0.5); }
.active-li { color: var(--primary); font-weight: 600; }

/* ────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  color: #fff; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  text-align: left; cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  color: var(--primary); flex-shrink: 0; line-height: 1;
  transition: transform 0.3s;
}
.faq-q[aria-expanded="true"] { color: var(--primary); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.8; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a.open { max-height: 280px; padding-bottom: 22px; }

/* ────────────────────────────────────────────
   WHITELIST
   ──────────────────────────────────────────── */
.wl-box {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--primary-20);
  border-radius: var(--radius-lg);
  padding: 60px 40px; position: relative; overflow: hidden;
}
.wl-glow {
  position: absolute; width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(204,255,0,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.wl-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 14px; position: relative;
}
.wl-box > p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 28px; position: relative;
  max-width: 440px; margin-inline: auto; margin-bottom: 28px;
}
.wl-row {
  display: flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 6px 6px 6px 20px;
  position: relative;
}
.wl-row input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-family: var(--font-body); font-size: 0.875rem;
  min-width: 0;
}
.wl-row input::placeholder { color: var(--text-muted); }
.wl-msg {
  margin-top: 12px; font-size: 0.82rem;
  color: var(--primary); font-weight: 600; min-height: 20px;
}
.wl-stats {
  display: flex; align-items: center; justify-content: center;
  margin-top: 28px; position: relative;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 16px 32px;
}
.wl-stat { padding: 0 28px; text-align: center; }
.wl-n {
  display: block; font-family: var(--font-mono);
  font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em;
}
.wl-label { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }
.wl-sep { width: 1px; height: 36px; background: var(--border); }

/* ────────────────────────────────────────────
   VOTE
   ──────────────────────────────────────────── */
.vote-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 768px) { .vote-grid { grid-template-columns: 1fr; max-width: 420px; } }

.vote-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s;
}
.vote-card:hover { border-color: var(--primary-20); transform: translateY(-3px); }
.vote-rank { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.vote-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.vote-ava {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-elev); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.vote-name { font-size: 0.9rem; font-weight: 700; }
.vote-tick { font-size: 0.73rem; color: var(--text-muted); }
.vote-bar-wrap {
  height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 100px; margin-bottom: 10px; overflow: hidden;
}
.vote-bar {
  height: 100%; border-radius: 100px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(204,255,0,0.5);
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}
.vote-meta { display: flex; justify-content: space-between; margin-bottom: 16px; }
.vote-cnt { font-size: 0.73rem; color: var(--text-muted); }
.btn-vote {
  width: 100%; padding: 10px; border-radius: var(--radius-pill);
  background: var(--primary-10); border: 1px solid var(--primary-25);
  color: var(--primary); font-weight: 700; font-size: 0.82rem; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-vote:hover { background: var(--primary-15); transform: scale(1.02); }
.btn-vote.voted { background: var(--primary); color: #000; border-color: var(--primary); }

/* ────────────────────────────────────────────
   CTA SECTION
   ──────────────────────────────────────────── */
.cta-wrap { padding: 120px 0; }
.cta-box {
  max-width: 580px; margin: 0 auto; text-align: center; position: relative;
}
.cta-glow {
  position: absolute; width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(204,255,0,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 16px; position: relative;
}
.cta-box > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #000;
  font-weight: 700; font-size: 0.9rem;
  padding: 12px 24px; border-radius: var(--radius-pill);
  border: none; cursor: pointer;
  box-shadow: 0 0 30px rgba(204,255,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(204,255,0,0.35), 0 0 20px rgba(204,255,0,0.2);
  background: #d4ff1a;
}
.btn-primary.btn-lg { padding: 14px 28px; font-size: 0.95rem; height: 48px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-weight: 600; font-size: 0.9rem;
  padding: 12px 24px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.15s;
  white-space: nowrap;
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  background: var(--surface-elev);
}
.btn-outline.btn-lg { padding: 14px 28px; font-size: 0.95rem; height: 48px; }

/* ────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .footer-desc {
  font-size: 0.845rem; color: var(--text-muted); line-height: 1.7;
  margin-top: 12px; max-width: 260px;
}
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.845rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-rh {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted);
}

/* ────────────────────────────────────────────
   SCROLL REVEAL
   ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps-wrap { grid-template-columns: 1fr; padding-top: 0; }
  .steps-connector { display: none; }
  .step-dot { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 16px 40px; }
  .wl-row { flex-direction: column; padding: 12px 16px; border-radius: 16px; }
  .wl-row .btn-primary { width: 100%; justify-content: center; }
  .wl-stats { flex-direction: column; gap: 12px; padding: 16px; border-radius: 16px; }
  .wl-sep { width: 40px; height: 1px; }
  .wl-stat { padding: 0; }
}

/* ────────────────────────────────────────────
   HELPER UTILITIES
   ──────────────────────────────────────────── */
.sec-header { text-align: center; }
.mt-7  { margin-top: 28px; }
.mt-8  { margin-top: 32px; }
.mt-9  { margin-top: 36px; }
.mt-10 { margin-top: 40px; }
.proof-item { display: inline-flex; align-items: center; gap: 10px; }
.proof-text { font-size: 0.82rem; color: var(--text-muted); }
.proof-text b { color: #fff; font-weight: 600; }

/* ────────────────────────────────────────────
   PAGE HERO (whitelist.html / vote.html)
   ──────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 144px 24px 72px; text-align: center;
}
@media (min-width: 640px) { .page-hero { padding: 176px 24px 80px; } }
.page-hero-glow {
  position: absolute; pointer-events: none;
  top: -220px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 700px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(204,255,0,0.11), transparent 68%);
}
.page-grid {
  position: absolute; inset: 0; pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff; margin-bottom: 20px;
}
.page-sub {
  color: var(--text-muted); font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.75; max-width: 540px;
}
.page-sub strong { color: #fff; font-weight: 600; }

/* ────────────────────────────────────────────
   WHITELIST PAGE
   ──────────────────────────────────────────── */
.wl-page-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 24px;
  align-items: start; max-width: 1000px; margin: 0 auto; padding-top: 40px;
}
@media (max-width: 900px) { .wl-page-grid { grid-template-columns: 1fr; } }

.wl-form-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--primary-20);
  border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden;
}
.wl-form-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px; position: relative;
}
.wl-form-card > p {
  color: var(--text-muted); font-size: 0.875rem; line-height: 1.7;
  margin-bottom: 28px; position: relative;
}
.wl-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.wl-field label {
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em;
}
.wl-field input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; color: #fff; font-family: var(--font-body);
  font-size: 0.875rem; outline: none; transition: border-color 0.2s;
}
.wl-field input:focus { border-color: rgba(204,255,0,0.4); }
.wl-field input::placeholder { color: var(--text-muted); }

.wl-sidebar { display: flex; flex-direction: column; gap: 16px; }
.wl-stat-card {
  background: rgba(255,255,255,0.028); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-card);
}
.wl-stat-card .mono-num {
  font-family: var(--font-mono); font-size: 1.8rem; font-weight: 500;
  letter-spacing: -0.02em; flex-shrink: 0;
  text-shadow: 0 0 24px rgba(204,255,0,0.3);
}
.wl-stat-card b { display: block; font-size: 0.88rem; font-weight: 600; }
.wl-stat-card small { font-size: 0.75rem; color: var(--text-muted); }

.wl-progress-card {
  background: rgba(255,255,255,0.028); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
}
.wl-prog-label {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 10px;
}
.wl-prog-track {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 100px; overflow: hidden; margin-bottom: 10px;
}
.wl-prog-fill {
  height: 100%; background: var(--primary); border-radius: 100px;
  box-shadow: 0 0 10px rgba(204,255,0,0.5);
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.wl-prog-note { font-size: 0.74rem; color: var(--text-muted); line-height: 1.6; }

.wl-perks-card {
  background: rgba(255,255,255,0.028); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
}
.wl-perks-card h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
}
.wl-perks-card ul { display: flex; flex-direction: column; gap: 12px; }
.wl-perks-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.845rem; color: var(--text-muted); line-height: 1.5;
}
.perk-ico { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ────────────────────────────────────────────
   VOTE PAGE
   ──────────────────────────────────────────── */
.vote-filter-bar {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { color: #fff; background: rgba(255,255,255,0.07); }
.filter-btn.active { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.filter-sep { flex: 1; min-width: 16px; }
.vote-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--primary);
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--primary-25); background: var(--primary-10);
  backdrop-filter: blur(8px);
}

.vote-board { display: flex; flex-direction: column; gap: 16px; padding-bottom: 60px; }

.vote-full-card {
  background: rgba(255,255,255,0.028); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  align-items: center; box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.2s;
}
.vote-full-card:hover { border-color: var(--primary-20); transform: translateY(-2px); }
.ended-card { opacity: 0.6; }
.ended-card:hover { border-color: var(--border); transform: none; }
@media (max-width: 768px) { .vote-full-card { grid-template-columns: 1fr; gap: 20px; } }

.vfc-rank {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.vfc-info { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.vfc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface-elev); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.vfc-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.vfc-ticker { font-size: 0.78rem; color: var(--text-muted); }
.vfc-live {
  margin-left: auto; display: flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; color: var(--primary);
  padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--primary-25); background: var(--primary-10);
  white-space: nowrap;
}
.vfc-ended-badge {
  margin-left: auto; font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  padding: 5px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border);
  white-space: nowrap;
}
.vfc-desc { font-size: 0.845rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.vfc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.vfc-right { display: flex; flex-direction: column; gap: 14px; }
.vfc-stat-row {
  display: flex;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.vfc-stat {
  flex: 1; padding: 14px 12px; text-align: center;
  border-right: 1px solid var(--border);
}
.vfc-stat:last-child { border-right: none; }
.vfc-n {
  display: block; font-family: var(--font-mono);
  font-size: 1.05rem; font-weight: 600; margin-bottom: 3px;
}
.vfc-lbl { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }

.btn-vote-full {
  width: 100%; padding: 14px; border-radius: var(--radius-pill);
  background: var(--primary-10); border: 1px solid var(--primary-25);
  color: var(--primary); font-weight: 700; font-size: 0.9rem;
  cursor: pointer; display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
}
.btn-vote-full:hover:not(:disabled) {
  background: var(--primary); color: #000; border-color: var(--primary);
  transform: translateY(-1px); box-shadow: 0 4px 20px rgba(204,255,0,0.25);
}
.btn-vote-full.voted { background: var(--primary); color: #000; border-color: var(--primary); }
.vbf-sub { font-size: 0.68rem; font-weight: 500; opacity: 0.7; }
