:root {
  --bg: #0d0d0d;
  --bg-alt: #111111;
  --bg-card: #161616;
  --fg: #f0ede6;
  --fg-muted: #888880;
  --accent: #FF6B00;
  --accent-dim: rgba(255,107,0,0.12);
  --border: #222222;
  --border-accent: rgba(255,107,0,0.3);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,0,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.flow-pipes {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  transform: translateY(-50%);
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0.3;
}

.pipe {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pipe-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.pipe-flow {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}

.pipe-flow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--bg), transparent);
  animation: pipeSlide 3s linear infinite;
}

@keyframes pipeSlide {
  0% { left: -100%; }
  100% { left: 200%; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  padding: 0 32px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

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

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

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

/* ── MANIFESTO ─────────────────────────────────────────── */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}

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

.manifesto-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.manifesto-content {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-divider {
  background: var(--border);
  align-self: stretch;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
}

.manifesto-title-alt { color: var(--accent); }

.manifesto-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.manifesto-body-accent { color: var(--fg); font-weight: 400; }

/* ── PROCESS ───────────────────────────────────────────── */
.process {
  padding: 100px 60px;
  background: var(--bg);
}

.section-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}

.section-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.05;
}

.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-right: 16px;
}

.step:last-child { margin-right: 0; }

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon { margin-bottom: 16px; }

.step-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 80px;
  flex-shrink: 0;
  opacity: 0.4;
}

/* ── OUTCOMES ──────────────────────────────────────────── */
.outcomes {
  padding: 100px 60px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.outcomes-inner { max-width: 1100px; margin: 0 auto; }

.outcomes-header { margin-bottom: 64px; }

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

.outcome {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-right: none;
  border-top: none;
}

.outcome:nth-child(3n) { border-right: 1px solid var(--border); }

.outcome-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.outcome-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.outcome-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── PRICING ───────────────────────────────────────────── */
.pricing {
  padding: 100px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 0.01em;
  color: var(--accent);
  line-height: 0.95;
  margin-bottom: 24px;
}

.pricing-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 60px;
}

.pricing-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.price-item {
  flex: 1;
  padding: 40px;
}

.price-divider {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  opacity: 0.5;
  padding: 0 8px;
}

.price-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.price-item-value {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--fg);
  margin-bottom: 6px;
}

.price-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-muted);
}

.pricing-math {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

/* ── CLOSING ───────────────────────────────────────────── */
.closing {
  padding: 120px 60px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

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

.closing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  margin-bottom: 40px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 0.01em;
  color: var(--fg);
  line-height: 0.95;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
}

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

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
}

.footer-links {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-sep { opacity: 0.4; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 60px 32px; }
  .manifesto { padding: 80px 32px; }
  .process { padding: 80px 32px; }
  .outcomes { padding: 80px 32px; }
  .pricing { padding: 80px 32px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 40px 32px; }

  .manifesto-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifesto-divider { display: none; }

  .process-steps { flex-direction: column; }
  .step { margin-right: 0; margin-bottom: 16px; }
  .step-arrow { display: none; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-right: 1px solid var(--border); }

  .pricing-breakdown { flex-direction: column; }
  .price-divider { padding: 16px 0; }

  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .stat-value { font-size: 36px; }
}