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

:root {
  --bg: #080808;
  --fg: #f0f0f0;
  --muted: #888;
  --accent: #d4ff00;
  --accent-dim: rgba(212, 255, 0, 0.08);
  --border: rgba(255,255,255,0.08);
  --surface: rgba(255,255,255,0.04);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.95) 40%,
    rgba(8,8,8,0.4) 70%,
    rgba(8,8,8,0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
}
.hero-content {
  max-width: 620px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240,240,240,0.75);
  max-width: 480px;
}

/* ===== STATS ===== */
.stats {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 60px;
}
.stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--fg);
  font-weight: 500;
}
.stat-source {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 48px;
}

/* ===== WHAT ===== */
.what {
  padding: 120px 60px;
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 72px;
}
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.what-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.what-card:hover { background: rgba(212,255,0,0.04); }
.what-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.what-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.what-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== HOW ===== */
.how {
  padding: 120px 60px;
  background: #0d0d0d;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 24px;
  opacity: 0.4;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 72px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 60px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 0;
}
.pricing-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: rgba(212,255,0,0.04);
}
.pricing-tier {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: rgba(240,240,240,0.75);
  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 {
  display: block;
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.pricing-cta {
  margin-top: 48px;
  font-size: 1.125rem;
  color: var(--muted);
  text-align: center;
  font-weight: 300;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 60px;
  background: #0d0d0d;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.closing-vision {
  font-size: 0.9rem;
  color: rgba(240,240,240,0.45);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero-overlay { padding: 60px 24px; }
  .hero-headline { font-size: 3rem; }
  .stats { padding: 36px 24px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .what, .how, .pricing, .closing { padding: 80px 24px; }
  .what-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 2px; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; }
}
