:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --accent: #ff3d00;
  --accent-glow: rgba(255, 61, 0, 0.15);
  --accent-soft: #ff6e40;
  --border: #2a2a2a;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,61,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 100%, rgba(255,61,0,0.04) 0%, transparent 50%),
              var(--bg);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ==================== PROOF ==================== */
.proof {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.proof-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.proof-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.proof-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

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

.proof-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.proof-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ==================== PACKAGES ==================== */
.packages {
  padding: 120px 24px;
}

.packages-inner {
  max-width: 900px;
  margin: 0 auto;
}

.packages-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow), inset 0 1px 0 rgba(255,61,0,0.2);
}

.package-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.package-card ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 20px;
}

.package-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.package-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ==================== TARGETS ==================== */
.targets {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.targets-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.targets-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.target-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  transition: border-color 0.2s;
}

.target-item:hover {
  border-color: var(--accent);
}

.target-emoji {
  font-size: 22px;
}

.targets-why {
  font-size: 18px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ==================== SYSTEM ==================== */
.system {
  padding: 120px 24px;
}

.system-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.system-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.system-lead {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 56px;
  max-width: 560px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.system-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.system-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.system-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.system-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ==================== CLOSING ==================== */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,61,0,0.08) 0%, transparent 60%),
              var(--bg-elevated);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-location {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

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

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}