/* ── Variables ── */
:root {
  --bg-deep:     #03030a;
  --bg-card:     rgba(12, 12, 30, 0.85);
  --purple:      #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.4);
  --purple-dim:  rgba(168, 85, 247, 0.12);
  --cyan:        #06b6d4;
  --cyan-glow:   rgba(6, 182, 212, 0.4);
  --cyan-dim:    rgba(6, 182, 212, 0.12);
  --green:       #53fc18;
  --orange:      #ff6b35;
  --text:        #f1f5f9;
  --muted:       #94a3b8;
  --dim:         #475569;
  --border-p:    rgba(168, 85, 247, 0.22);
  --border-c:    rgba(6, 182, 212, 0.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Grid background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Scanlines ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,.025) 3px, rgba(0,0,0,.025) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── Orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-purple {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,.13) 0%, transparent 70%);
}
.orb-cyan {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.10) 0%, transparent 70%);
}

/* ── Keyframes ── */
@keyframes glitch-1 {
  0%   { clip-path: inset(30% 0 55% 0); transform: translate(-5px,0); }
  20%  { clip-path: inset(80% 0  5% 0); transform: translate( 5px,0); }
  40%  { clip-path: inset(50% 0 30% 0); transform: translate(-3px,0); }
  60%  { clip-path: inset(15% 0 70% 0); transform: translate( 3px,0); }
  80%  { clip-path: inset(65% 0 10% 0); transform: translate(-5px,0); }
  100% { clip-path: inset(40% 0 45% 0); transform: translate( 0,  0); }
}
@keyframes glitch-2 {
  0%   { clip-path: inset(60% 0 25% 0); transform: translate( 5px,0); }
  25%  { clip-path: inset(10% 0 75% 0); transform: translate(-5px,0); }
  50%  { clip-path: inset(88% 0  2% 0); transform: translate( 2px,0); }
  75%  { clip-path: inset(35% 0 50% 0); transform: translate(-2px,0); }
  100% { clip-path: inset(72% 0 18% 0); transform: translate( 0,  0); }
}
@keyframes flicker {
  0%,89%,91%,93%,100% { opacity:1; }
  90%,92% { opacity:.75; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse-p {
  0%,100% { box-shadow: 0 0 15px var(--purple-glow), 0 0 30px rgba(168,85,247,.12); }
  50%     { box-shadow: 0 0 28px var(--purple-glow), 0 0 55px rgba(168,85,247,.28); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Glitch text ── */
.glitch {
  position: relative;
  animation: flicker 5s infinite;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.glitch::before {
  color: #ff00c1;
  animation: glitch-1 3s infinite linear;
  opacity: .75;
}
.glitch::after {
  color: #00fff9;
  animation: glitch-2 2.5s infinite linear;
  opacity: .75;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  border-bottom: 1px solid rgba(168,85,247,.1);
  background: rgba(3,3,10,.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 0 14px rgba(168,85,247,.5);
}
.nav-logo-text { font-size: 18px; font-weight: 700; }
.nav-logo-text span:first-child { color: var(--purple); }
.nav-logo-text span:last-child  { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-ghost {
  color: var(--muted); font-size: 14px; transition: color .2s;
}
.btn-ghost:hover { color: var(--text); }
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, var(--purple));
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 8px 18px; border-radius: 8px;
  transition: all .2s; border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  box-shadow: 0 0 22px var(--purple-glow);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-p);
  color: var(--purple); font-size: 14px; font-weight: 600;
  padding: 8px 18px; border-radius: 8px;
  transition: all .2s; cursor: pointer; display: inline-block;
}
.btn-secondary:hover {
  background: var(--purple-dim);
  box-shadow: 0 0 15px var(--purple-glow);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); transition: all .3s; }

/* ── Cards ── */
.card-p {
  background: var(--bg-card);
  border: 1px solid var(--border-p);
  box-shadow: 0 0 14px rgba(168,85,247,.07), inset 0 0 14px rgba(168,85,247,.04);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  transition: border-color .3s, box-shadow .3s;
}
.card-p:hover {
  border-color: rgba(168,85,247,.48);
  box-shadow: 0 0 28px rgba(168,85,247,.18), inset 0 0 20px rgba(168,85,247,.06);
}
.card-c {
  background: var(--bg-card);
  border: 1px solid var(--border-c);
  box-shadow: 0 0 14px rgba(6,182,212,.07), inset 0 0 14px rgba(6,182,212,.04);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  transition: border-color .3s, box-shadow .3s;
}
.card-c:hover {
  border-color: rgba(6,182,212,.48);
  box-shadow: 0 0 28px rgba(6,182,212,.18), inset 0 0 20px rgba(6,182,212,.06);
}

/* ── Inputs ── */
.input {
  background: rgba(12,12,30,.9);
  border: 1px solid var(--border-p);
  color: var(--text);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.input::placeholder { color: var(--dim); }
.input:focus {
  border-color: rgba(168,85,247,.6);
  box-shadow: 0 0 15px rgba(168,85,247,.25);
}
.input-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ── Countdown ── */
.countdown { display: flex; gap: 12px; justify-content: center; }
.cd-segment { display: flex; flex-direction: column; align-items: center; }
.cd-box {
  background: rgba(12,12,30,.9);
  border: 1px solid rgba(168,85,247,.35);
  box-shadow: 0 0 22px rgba(168,85,247,.15), inset 0 0 22px rgba(168,85,247,.05);
  border-radius: 10px;
  padding: 14px 18px;
  min-width: 80px;
  text-align: center;
}
.cd-number {
  font-family: 'Courier New', monospace;
  font-size: 42px;
  font-weight: 700;
  color: #c4b5fd;
  line-height: 1;
}
.cd-sep { font-size: 36px; color: rgba(168,85,247,.45); font-weight: 700; margin-bottom: 22px; user-select: none; }
.cd-label { margin-top: 8px; font-size: 10px; color: var(--dim); letter-spacing: .2em; font-weight: 600; text-transform: uppercase; }

/* ── Sections ── */
section { position: relative; z-index: 1; }
.section-tag { display: block; font-size: 11px; color: var(--purple); letter-spacing: .3em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.section-tag-c { color: var(--cyan); }
.section-title { font-size: clamp(26px, 5vw, 40px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.section-sub { color: var(--muted); max-width: 520px; margin: 0 auto 56px; line-height: 1.65; }
.section-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  overflow: hidden;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-p);
  background: var(--purple-dim);
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
  animation: pulse-p 1.8s infinite;
  box-shadow: 0 0 8px var(--purple-glow);
}
.hero-title {
  font-size: clamp(54px, 12vw, 110px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #c084fc, #a855f7 40%, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  color: rgba(255,255,255,.88);
  margin-bottom: 16px;
}
.hero-desc {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-desc .tw { color: var(--purple); font-weight: 500; }
.hero-desc .ki { color: var(--green);  font-weight: 500; }
.hero-desc .ve { color: var(--orange); font-weight: 500; }
.hero-countdown { margin-bottom: 48px; }
.hero-cd-label {
  font-size: 11px; color: var(--dim); letter-spacing: .25em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 18px;
}

/* ── Waitlist form ── */
.waitlist-form { width: 100%; max-width: 440px; margin: 0 auto; }
.waitlist-row { display: flex; gap: 10px; }
.waitlist-row .input { flex: 1; }
.waitlist-msg { margin-top: 12px; font-size: 13px; text-align: center; }
.waitlist-msg.success { color: #4ade80; }
.waitlist-msg.error   { color: #f87171; }
.waitlist-note { color: var(--dim); font-size: 12px; text-align: center; margin-top: 10px; }
.waitlist-success-box {
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.3);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
}
.waitlist-success-box p { color: #67e8f9; font-weight: 600; }

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(168,85,247,.4), transparent); }

/* ── Platforms ── */
.platforms { padding: 96px 0; }
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.platform-card {
  padding: 36px 28px;
  border-radius: 20px;
  text-align: center;
  transition: transform .3s;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}
.platform-card:hover { transform: scale(1.025); }
.platform-name { font-size: 36px; font-weight: 900; margin-bottom: 10px; }
.platform-desc { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.platform-stat {
  display: inline-block;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}

/* ── Features ── */
.features { padding: 96px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.feature-card { padding: 28px; cursor: default; }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-title-p { color: #c4b5fd; }
.feature-title-c { color: #67e8f9; }
.feature-desc { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── How it works ── */
.how { padding: 96px 0; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 40px; position: relative; }
.step { display: flex; flex-direction: column; align-items: flex-start; }
.step-num {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: flex; align-items: center; justify-content: center;
  color: #ddd6fe; font-weight: 900; font-size: 13px;
  box-shadow: 0 0 22px rgba(168,85,247,.45);
  margin-bottom: 20px; flex-shrink: 0;
}
.step-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── Avatar preview ── */
.avatar-section { padding: 96px 0; }
.avatar-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 48px;
  padding: 56px 48px;
}
@media (min-width: 900px) {
  .avatar-inner { flex-direction: row; }
}
.avatar-mock-wrap { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.avatar-mock {
  width: 180px; height: 180px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(124,58,237,.5), rgba(6,182,212,.3));
  border: 1px solid var(--border-p);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
.avatar-status-bar {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; align-items: center; gap: 8px;
}
.avatar-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.avatar-bar-track { flex: 1; height: 4px; border-radius: 2px; background: rgba(168,85,247,.25); overflow: hidden; }
.avatar-bar-fill { height: 100%; width: 65%; background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.avatar-console {
  padding: 12px 20px; border-radius: 12px; text-align: center;
}
.avatar-console-line { color: #67e8f9; font-size: 12px; font-family: 'Courier New', monospace; }
.avatar-console-sub { color: var(--muted); font-size: 12px; margin-top: 4px; }
.avatar-text { flex: 1; }
.avatar-text .section-title { text-align: left; }
.avatar-text .section-tag { text-align: left; }
.avatar-text p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-size: 15px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #cbd5e1; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--purple-dim); border: 1px solid var(--border-p);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 11px; flex-shrink: 0;
}

/* ── Pricing ── */
.pricing { padding: 96px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card { padding: 36px 28px; position: relative; display: flex; flex-direction: column; gap: 24px; }
.pricing-card-highlight {
  border-color: rgba(168,85,247,.5);
  background: rgba(168,85,247,.05);
  box-shadow: 0 0 32px rgba(168,85,247,.2);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, var(--purple));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px;
  white-space: nowrap;
}
.pricing-name { font-size: 18px; font-weight: 700; color: #fff; }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; }
.pricing-amount { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; }
.pricing-period { color: var(--muted); font-size: 14px; padding-bottom: 4px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #cbd5e1; }
.pricing-check { color: var(--purple); margin-top: 2px; flex-shrink: 0; }
.pricing-locked-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(234,179,8,.2);
  background: rgba(234,179,8,.05);
  color: rgba(234,179,8,.8);
  font-size: 14px; font-weight: 500;
  max-width: 280px; margin: 0 auto 48px;
}
.btn-locked {
  width: 100%; padding: 12px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  color: var(--dim); border: 1px solid rgba(71,85,105,.4);
  background: rgba(30,41,59,.3); cursor: not-allowed;
}

/* ── Final CTA ── */
.final-cta { padding: 96px 0; text-align: center; }
.final-cta .section-title {
  font-size: clamp(28px, 6vw, 52px);
}
.cta-perks { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.cta-perk { color: var(--dim); font-size: 14px; }

/* ── Footer ── */
.footer { border-top: 1px solid rgba(168,85,247,.1); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-text { color: var(--muted); font-size: 14px; max-width: 280px; line-height: 1.65; margin: 16px 0 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--muted);
  transition: color .2s;
}
.footer-social:hover { color: var(--purple); }
.footer-col-title { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .05em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #cbd5e1; }
.footer-bottom { border-top: 1px solid rgba(168,85,247,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { color: var(--dim); font-size: 13px; }
.footer-tagline { color: rgba(71,85,105,.6); font-size: 12px; }

/* ── Auth pages ── */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 40px;
  position: relative;
}
.auth-card { width: 100%; max-width: 420px; padding: 40px; }
.auth-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; }
.auth-logo-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 20px;
  box-shadow: 0 0 22px rgba(168,85,247,.5);
  margin-bottom: 14px;
}
.auth-title { font-size: 22px; font-weight: 700; color: #fff; }
.auth-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-field { display: flex; flex-direction: column; }
.auth-error {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
  border-radius: 8px; padding: 12px 16px; color: #f87171; font-size: 14px;
}
.auth-success {
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.3);
  border-radius: 8px; padding: 12px 16px; color: #4ade80; font-size: 14px;
}
.auth-link-row { text-align: center; color: var(--muted); font-size: 14px; margin-top: 20px; }
.auth-link-row a { color: var(--purple); transition: color .2s; }
.auth-link-row a:hover { color: #c4b5fd; }
.auth-back { display: block; text-align: center; color: var(--dim); font-size: 13px; margin-top: 20px; transition: color .2s; }
.auth-back:hover { color: var(--muted); }
.btn-full { width: 100%; padding: 13px; font-size: 15px; border-radius: 10px; }
.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .6s linear infinite;
  vertical-align: middle; margin-right: 6px;
}

/* ── Dashboard ── */
.dash-page { padding: 100px 24px 60px; min-height: 100vh; }
.dash-header { margin-bottom: 40px; }
.dash-greeting { color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.dash-name { font-size: 32px; font-weight: 900; color: #fff; }
.dash-email { color: var(--dim); font-size: 14px; margin-top: 4px; }
.dash-banner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; margin-bottom: 32px; flex-wrap: wrap; }
.dash-banner-status { display: flex; align-items: center; gap: 8px; }
.dash-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #fbbf24; }
.dash-status-label { color: #fbbf24; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dash-banner-text { color: #cbd5e1; font-size: 15px; margin-top: 4px; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { padding: 24px; }
.stat-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.stat-icon { font-size: 22px; }
.stat-badge { font-size: 11px; color: var(--dim); background: rgba(71,85,105,.25); padding: 3px 8px; border-radius: 999px; }
.stat-value { font-size: 32px; font-weight: 900; color: var(--dim); }
.stat-label { font-size: 12px; color: var(--dim); margin-top: 4px; }
.perks-card { padding: 32px; }
.perks-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.perks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; }
.perk-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #cbd5e1; }
.perk-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple-dim); border: 1px solid var(--border-p);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 11px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile {
    display: flex; flex-direction: column; gap: 18px;
    border-top: 1px solid rgba(168,85,247,.1);
    background: rgba(3,3,10,.95);
    padding: 24px; position: fixed;
    top: 64px; left: 0; right: 0; z-index: 999;
  }
  .nav-mobile a { color: var(--muted); font-size: 15px; }
  .nav-mobile a:hover { color: var(--text); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .countdown { gap: 6px; }
  .cd-box { min-width: 62px; padding: 10px 12px; }
  .cd-number { font-size: 30px; }
  .cd-sep { font-size: 26px; }
  .waitlist-row { flex-direction: column; }
  .avatar-inner { padding: 32px 24px; }
  .auth-card { padding: 28px 24px; }
  .dash-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .features-grid, .steps, .pricing-grid { grid-template-columns: 1fr; }
}
