/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg2: #111111;
  --bg3: #181818;
  --border: #222222;
  --accent: #00e887;
  --accent-dim: rgba(0, 232, 135, 0.12);
  --text: #f0f0f0;
  --text-muted: #777;
  --text-dim: #444;
  --font: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --max: 960px;
}

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.8; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

.accent { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); opacity: 1; }

/* ===== HERO ===== */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 24px 80px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 232, 135, 0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-family: var(--mono);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-block;
  transition: opacity 0.2s, transform 0.1s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); color: #000; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); opacity: 1; }

/* ===== SECTIONS ===== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.section.alt {
  background: var(--bg2);
  max-width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section.alt h2,
.section.alt .section-label,
.section.alt .section-sub {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--mono);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ===== METRICS ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .metrics-grid { grid-template-columns: 1fr; }
}

.metric-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.metric-card.main {
  background: var(--bg3);
  border-color: rgba(0, 232, 135, 0.2);
}

.metric-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-family: var(--mono);
  margin-bottom: 12px;
}

.metric-value {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  font-family: var(--mono);
  margin-bottom: 6px;
}

.metric-value.accent { color: var(--accent); }

.metric-note {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
}

/* ===== MONEY LADDER ===== */
.ladder {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.ladder-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-family: var(--mono);
  margin-bottom: 20px;
}

.ladder-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ladder-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
}

.ladder-item.done {
  color: var(--text-muted);
  text-decoration: line-through;
}

.ladder-item.current {
  color: var(--accent);
  font-weight: 600;
}

.ladder-item.current .ladder-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.ladder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.ladder-item.done .ladder-dot {
  background: var(--text-muted);
}

.ladder-amount { font-weight: 600; min-width: 90px; }
.ladder-reward { color: inherit; }

.revenue-footer {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
  text-align: center;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--mono);
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-features li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--mono);
  letter-spacing: -1px;
  color: var(--accent);
}

/* ===== STORY GRID ===== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .story-grid { grid-template-columns: 1fr; }
}

.story-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.story-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.story-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.story-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-note {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
}

/* ===== LOADING STATE ===== */
.loading {
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 1.2rem;
}
