:root {
  --bg: #0a0a0a;
  --fg: #f0ede6;
  --fg-muted: #8a8680;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --surface: #141414;
  --surface-border: #222;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', 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;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow), transparent),
    var(--bg);
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
}

.price-symbol {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.price-label {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === HOW === */
.how {
  padding: 8rem 2rem;
  background: var(--bg);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.how-step {
  padding: 2rem;
  border-top: 1px solid var(--surface-border);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.how-step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === FORMATS === */
.formats {
  padding: 8rem 2rem;
  background: var(--surface);
}

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

.format-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.format-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--surface-border);
}

.format-item:first-child {
  border-top: 1px solid var(--surface-border);
}

.format-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  border: 1px solid var(--surface-border);
  background: var(--bg);
}

.format-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.format-text p {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* === WHY === */
.why {
  padding: 8rem 2rem;
  background: var(--bg);
}

.why-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.why-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.why-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.why-numbers {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
}

.number-block {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.big-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.num-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 100%, var(--accent-glow), transparent),
    var(--bg);
  text-align: center;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--surface-border);
  background: var(--bg);
}

.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: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.footer-line {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

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

  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .hero-inner {
    text-align: left;
  }

  .formats {
    padding: 5rem 1.5rem;
  }

  .how, .why, .closing {
    padding: 5rem 1.5rem;
  }

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

  .format-item {
    gap: 1rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}