:root {
  --bg: #08080b;
  --surface: #111117;
  --surface2: #1a1a22;
  --accent: #00ff94;
  --accent-dim: #00cc77;
  --text: #f0f0f0;
  --text-muted: #888899;
  --text-dim: #555566;
  --border: #1e1e28;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  padding: 96px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-overline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── HERO VISUAL ───────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.ghost-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,255,148,0.12) 0%, rgba(0,255,148,0.04) 40%, transparent 70%);
  filter: blur(8px);
}
.hero-cards {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.platform-icon::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.8;
}
.platform-label {
  font-size: 0.9rem;
  color: var(--text);
  width: 100px;
  flex-shrink: 0;
}
.platform-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), rgba(0,255,148,0.3));
  border-radius: 3px;
  margin-left: auto;
}

/* ─── HOW ──────────────────────────────────────── */
.how {
  border-top: 1px solid var(--border);
  padding: 96px 24px;
  background: var(--surface);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 64px;
  max-width: 640px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── NICHES ───────────────────────────────────── */
.niches {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.niche {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.niche:hover {
  border-color: rgba(0,255,148,0.25);
}
.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.niche h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.niche p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PRICING ───────────────────────────────────── */
.pricing {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0,255,148,0.15), inset 0 0 60px rgba(0,255,148,0.04);
}
.pricing-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-note {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: center;
}

/* ─── CLOSING ───────────────────────────────────── */
.closing {
  padding: 96px 24px 120px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-ghost {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ghost-silhouette {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,255,148,0.15) 0%, transparent 70%);
  margin: 0 auto 32px;
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin: 0 auto 32px;
}
.closing-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FOOTER ────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  background: var(--surface);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
}
.wordmark-footer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-col-head {
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim) !important;
  margin-bottom: 8px !important;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ─── NICHE PILL TOOLTIP ────────────────────────── */
.niche-pill-soon {
  position: relative;
}
.niche-pill-soon::after {
  content: 'Coming soon';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface2);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.niche-pill-soon:hover::after {
  opacity: 1;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .step-grid { grid-template-columns: 1fr; gap: 40px; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 20px 56px; }
  .how, .niches, .pricing, .closing { padding: 64px 20px; }
  .niche-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 24px; }
}
