/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --bg:             #0a0a1a;
  --bg-deep:        #070712;
  --surface:        #13132a;
  --surface-light:  #1e1e3a;
  --border:         #2a2a4a;
  --primary:        #6c5ce7;
  --primary-dark:   #5849c2;
  --primary-glow:   rgba(108, 92, 231, 0.25);
  --accent:         #00ff88;
  --accent-dim:     rgba(0, 255, 136, 0.15);
  --text:           #ffffff;
  --text-secondary: #a0a0c0;
  --text-muted:     #606080;
  --success:        #00b894;
  --warning:        #fdcb6e;
  --error:          #e74c3c;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:     0.2s ease;
}

/* ===========================
   LIGHT MODE
   =========================== */
[data-theme="light"] {
  --bg:             #f4f4f8;
  --bg-deep:        #eaeaf0;
  --surface:        #ffffff;
  --surface-light:  #f0f0f6;
  --border:         #d8d8e8;
  --text:           #0a0a1a;
  --text-secondary: #4a4a6a;
  --text-muted:     #8888aa;
  --primary-glow:   rgba(108, 92, 231, 0.15);
}
[data-theme="light"] .nav {
  background: rgba(244, 244, 248, 0.85);
}
[data-theme="light"] .nav-scrolled {
  background: rgba(244, 244, 248, 0.96);
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
[data-theme="light"] .phone-frame {
  box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .phone-screen {
  background: linear-gradient(160deg, #1a1a2e 0%, #0d0d22 100%);
}
[data-theme="light"] .blob-1 {
  background: radial-gradient(circle, rgba(108,92,231,0.12) 0%, transparent 70%);
}
[data-theme="light"] .blob-2 {
  background: radial-gradient(circle, rgba(0,200,100,0.08) 0%, transparent 70%);
}
[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(108,92,231,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,92,231,0.08) 1px, transparent 1px);
}
[data-theme="light"] .btn-ghost {
  color: var(--text-secondary);
}
[data-theme="light"] .btn-accent {
  color: #0a0a1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 600; }

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.label-accent { color: var(--accent); }
.label-primary { color: var(--primary); }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text { color: var(--accent); }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); }

.btn-sm  { font-size: 0.82rem; padding: 0.45rem 1.1rem; }
.btn-lg  { font-size: 0.95rem; padding: 0.9rem 1.9rem; }
.btn-xl  { font-size: 1rem;    padding: 1rem 2rem; width: 100%; border-radius: var(--radius-lg); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 6px 28px rgba(108,92,231,0.55); }

.btn-accent {
  background: var(--accent);
  color: #0a0a1a;
  box-shadow: 0 4px 20px rgba(0,255,136,0.3);
}
.btn-accent:hover:not(:disabled) { box-shadow: 0 6px 28px rgba(0,255,136,0.45); }
.btn-accent:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-accent.loading { opacity: 0.75; cursor: not-allowed; }
.btn-accent.success {
  background: var(--success);
  box-shadow: 0 4px 20px rgba(0,184,148,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--text); }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 42, 74, 0.5);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-scrolled {
  background: rgba(10, 10, 26, 0.92);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 10px;
  padding: 4px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme toggle switch */
.theme-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.theme-toggle-track {
  width: 46px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--surface-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 2px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}
.theme-toggle-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  transition: transform var(--transition), background var(--transition);
  color: #fff;
  position: relative;
  z-index: 1;
}
.theme-toggle-thumb .icon-sun { display: none; }
.theme-toggle-thumb .icon-moon { display: block; }

[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(22px);
  background: var(--primary);
}
[data-theme="light"] .theme-toggle-track {
  background: rgba(108,92,231,0.12);
  border-color: rgba(108,92,231,0.3);
}
[data-theme="light"] .theme-toggle-thumb .icon-sun { display: block; }
[data-theme="light"] .theme-toggle-thumb .icon-moon { display: none; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blob-1 {
  width: 600px; height: 600px;
  top: -150px; right: -150px;
  background: radial-gradient(circle, rgba(108,92,231,0.18) 0%, transparent 70%);
  animation: drift 10s ease-in-out infinite alternate;
}
.blob-2 {
  width: 400px; height: 400px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(0,255,136,0.1) 0%, transparent 70%);
  animation: drift 13s ease-in-out infinite alternate-reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.07) 0%, transparent 70%);
  animation: drift 8s ease-in-out infinite alternate;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,42,74,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,42,74,0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 75%);
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-title { margin-bottom: 1.1rem; }
.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.stat-pill .stat-value { font-size: 1.3rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-pill .stat-label { font-size: 0.72rem; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Phone mockup */
.hero-phone { position: relative; flex-shrink: 0; }
.phone-frame {
  width: 260px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 40px;
  padding: 10px 10px 14px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.phone-notch {
  width: 90px; height: 22px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: linear-gradient(160deg, #1a1a2e 0%, #0d0d22 100%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.phone-home-bar {
  width: 100px;
  height: 4px;
  background: var(--border);
  border-radius: var(--radius-full);
  margin: 8px auto 0;
}
.phone-content {
  padding: 1rem 0.85rem;
}
.phone-header { margin-bottom: 0.85rem; }
.phone-greeting {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.phone-xp-bar { }
.phone-xp-label {
  font-size: 0.5rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.phone-xp-track {
  height: 5px;
  background: #252545;
  border-radius: var(--radius-full);
  overflow: hidden;
}
.phone-xp-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.phone-stats-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.phone-stat {
  flex: 1;
  background: rgba(108,92,231,0.15);
  border: 1px solid rgba(108,92,231,0.25);
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
  text-align: center;
}
.phone-stat-value { font-size: 0.8rem; font-weight: 800; color: #fff; display: block; }
.phone-stat-label { font-size: 0.45rem; color: var(--text-muted); }

.phone-section-title {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.phone-quest {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.35rem;
}
.phone-quest-icon { font-size: 0.9rem; flex-shrink: 0; }
.phone-quest-info { flex: 1; min-width: 0; }
.phone-quest-name {
  font-size: 0.52rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-quest-track {
  height: 3px;
  background: #252545;
  border-radius: var(--radius-full);
  overflow: hidden;
}
.phone-quest-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}
.phone-quest-xp {
  font-size: 0.45rem;
  font-weight: 700;
  color: var(--warning);
  flex-shrink: 0;
}

.phone-badge-row {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.7rem;
}
.phone-badge {
  font-size: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.3rem;
  opacity: 0.4;
}
.phone-badge.earned { opacity: 1; }

.phone-glow {
  position: absolute;
  width: 200px; height: 200px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, rgba(108,92,231,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 auto;
  animation: bounce-dot 2s ease-in-out infinite;
}
@keyframes bounce-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .label { display: inline-block; margin-bottom: 0.75rem; }
.section-title { margin-bottom: 0.75rem; }
.section-subtitle { max-width: 520px; margin: 0 auto; font-size: 1.05rem; color: var(--text-secondary); }

/* ===========================
   FEATURES
   =========================== */
.features { background: var(--bg-deep); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: rgba(108,92,231,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108,92,231,0.1);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--icon-color, var(--primary)) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color, var(--primary)) 30%, transparent);
  color: var(--icon-color, var(--primary));
}
.feature-title { color: var(--text); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.9rem; line-height: 1.65; color: var(--text-secondary); }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}
.step { text-align: center; padding: 0 1rem; }
.step-number {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}
.step-content { }
.step-title { color: var(--text); margin-bottom: 0.5rem; font-size: 1rem; }
.step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--border));
  margin-top: 29px;
  flex-shrink: 0;
}

/* ===========================
   ROADMAP
   =========================== */
.roadmap { background: var(--bg-deep); }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.roadmap-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.roadmap-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.roadmap-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-shipped  { background: var(--success); }
.dot-progress { background: var(--primary); animation: pulse-dot 1.5s ease-in-out infinite; }
.dot-future   { background: var(--text-muted); }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.roadmap-shipped .label  { color: var(--success); }
.roadmap-progress .label { color: var(--primary); }
.roadmap-future .label   { color: var(--text-muted); }
.roadmap-progress { border-color: rgba(108,92,231,0.35); }

.roadmap-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.check-icon    { color: var(--success); font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem; }
.progress-icon { color: var(--primary); font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem; font-weight: 700; }
.future-icon   { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ===========================
   FOUNDER PASS
   =========================== */
.founder { position: relative; overflow: hidden; }
.founder::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(108,92,231,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.founder-inner {
  background: var(--surface);
  border: 1px solid rgba(108,92,231,0.35);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 60px rgba(108,92,231,0.1), 0 0 0 1px rgba(108,92,231,0.06);
  position: relative;
  z-index: 1;
}
.founder-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(253,203,110,0.1);
  border: 1px solid rgba(253,203,110,0.3);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}
.founder-badge-icon { font-size: 1rem; }
.founder-badge-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warning); }
.founder-title { margin-bottom: 0.75rem; }
.founder-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.founder-subtitle strong { color: var(--text); }

/* Storytelling block */
.founder-story {
  text-align: left;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.founder-story p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.founder-story strong { color: var(--text); }

.founder-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}
@media (min-width: 641px) {
  .founder-perks { grid-template-columns: repeat(2, 1fr); }
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--surface-light);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}
.perk-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
.perk-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.perk-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.45; }

/* Spots progress bar */
.spots-bar-wrapper {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.spots-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.spots-bar-label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.spots-bar-count { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.spots-track {
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.spots-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(.4,0,.2,1);
}
.spots-remaining-text { font-size: 0.75rem; color: var(--text-muted); }

.founder-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin-bottom: 1.5rem;
}
.price-value { font-size: 2.8rem; font-weight: 800; color: var(--accent); white-space: nowrap; }
.price-note  { font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; }

/* Founder form */
.founder-form { display: flex; flex-direction: column; gap: 0.85rem; }
.form-row { display: flex; gap: 0.75rem; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-align: left; }
.form-input {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,92,231,0.15); }

.form-message {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  display: none;
}
.form-message--success { background: rgba(0,184,148,0.12); border: 1px solid rgba(0,184,148,0.3); color: #00c9a7; display: block; }
.form-message--error   { background: rgba(231,76,60,0.12);  border: 1px solid rgba(231,76,60,0.3);  color: #e74c3c; display: block; }
.form-message--info    { background: rgba(108,92,231,0.12); border: 1px solid rgba(108,92,231,0.3); color: var(--primary); display: block; }

.founder-submit { font-weight: 700; }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

/* CTA + reassurance */
.founder-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
.founder-reassurance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.reassurance-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Objection handler */
.founder-objection {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
}
.objection-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.objection-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.objection-text strong { color: var(--text); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-up { opacity: 0; transform: translateY(24px); }
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-phone { display: none; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 2rem;
  }
  .step-connector { display: none; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .founder-perks { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .hero-stats { flex-direction: column; align-items: center; }
  .stat-divider { width: 40px; height: 1px; }
  .price-value { font-size: 2.2rem; }
  .btn-xl { font-size: 0.92rem; padding: 0.9rem 1.5rem; }
  .founder-inner { padding: 1.75rem 1.25rem; }
}
