:root {
  --bg: #0f0f0f;
  --bg-alt: #1a1a1a;
  --bg-card: #222222;
  --fg: #f0ece4;
  --fg-muted: #a09a90;
  --accent: #FF4D2D;
  --accent-glow: rgba(255, 77, 45, 0.15);
  --accent-soft: #FF6B4D;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 900px;
}

.hero-strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
  max-width: 160px;
}

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

/* ===== PROOF ===== */
.proof {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.proof-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 480px;
}

.proof-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.proof-card {
  background: var(--bg);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 1.5rem;
}

.proof-icon {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.proof-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.proof-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== VERTICALS ===== */
.verticals {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1rem;
}

.vertical-item {
  padding: 2.5rem 2rem;
  border: 1px solid #1f1f1f;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.vertical-item:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.vertical-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.vertical-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.vertical-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.process .section-label,
.process-subtitle,
.process-steps {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 3.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3rem;
}

.process-step {
  position: relative;
  padding: 2rem 0;
}

.step-line {
  position: absolute;
  left: -2.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #2a2a2a;
}

.process-step:first-child .step-line { top: 50%; }
.process-step:last-child .step-line { bottom: 50%; }

.step-dot {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* ===== PRICING PHILOSOPHY ===== */
.pricing {
  padding: 6rem 2rem;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pricing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 480px;
}

.pricing-comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
  background: var(--bg-alt);
}

.tier-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 100px;
}

.tier-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  flex: 1;
}

.tier-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: right;
  min-width: 140px;
}

.tier-expensive {
  opacity: 0.5;
}

.tier-reelforge {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.tier-reelforge .tier-price {
  color: var(--accent);
}

.tier-cheap {
  opacity: 0.5;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--bg) 0%, #1a0f0a 50%, var(--bg) 100%);
  text-align: center;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.manifesto-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: #2a2a2a;
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
  .hero-stats { gap: 2rem; }
  .proof-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .verticals-grid { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-tier { flex-direction: column; text-align: center; gap: 0.3rem; }
  .tier-label, .tier-note { text-align: center; min-width: auto; }
  .process-steps { padding-left: 2.5rem; }
  .step-line { left: -1.75rem; }
  .step-dot { left: -2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-number { font-size: 1.6rem; }
}