:root {
  --bg: #0C0A09;
  --bg-warm: #1C1917;
  --bg-card: #292524;
  --fg: #FAFAF9;
  --fg-muted: #A8A29E;
  --accent: #F97316;
  --accent-soft: #FB923C;
  --accent-glow: rgba(249, 115, 22, 0.15);
  --green: #22C55E;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --max-w: 1120px;
}

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

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
}

.hero-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 32px;
}

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

.hero-accent {
  background: linear-gradient(135deg, var(--accent), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--fg);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.hero-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ─── PRODUCTS ─── */
.products {
  padding: 100px 24px;
  background: var(--bg);
}

.products-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.products h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 56px;
}

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

.product-card {
  background: var(--bg-warm);
  border: 1px solid var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--bg-warm) 60%, var(--accent-glow) 100%);
}

.card-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-soft);
  text-transform: uppercase;
}

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}

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

.card-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--fg);
  margin-top: 8px;
}

/* ─── BUNDLE ─── */
.bundle-callout {
  background: linear-gradient(135deg, var(--accent) 0%, #EA580C 100%);
  border-radius: var(--radius);
  padding: 48px;
}

.bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bundle-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 8px;
  color: #fff;
}

.bundle-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.bundle-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bundle-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}

.bundle-save {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ─── WHY ─── */
.why {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.why h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 56px;
}

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

.why-card {
  padding: 36px 32px;
  border-left: 3px solid var(--accent);
}

.why-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-soft);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

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

/* ─── CLOSING ─── */
.closing {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 24px;
}

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

.closing-sig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--fg-muted);
}

.sig-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--bg-card);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--fg-muted);
}

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

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

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

  .bundle-callout {
    padding: 32px 24px;
  }

  .bundle-inner {
    flex-direction: column;
    text-align: center;
  }

  .bundle-price {
    align-items: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .closing-sig {
    flex-direction: column;
    gap: 8px;
  }

  .sig-dot {
    display: none;
  }

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

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 80px 20px 60px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .stat-num {
    font-size: 24px;
  }
}