:root {
  --bg: #0e0e1a;
  --bg-2: #141428;
  --bg-3: #1a1a35;
  --fg: #f4f0e8;
  --fg-2: #a8a4b8;
  --accent: #f5a623;
  --accent-dim: #c47a0a;
  --border: rgba(255,255,255,0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(14,14,26,0.85);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.proof-stat { display: flex; flex-direction: column; }
.proof-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pipeline-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.step-icon {
  width: 36px; height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.step-label {
  font-size: 0.68rem;
  color: var(--fg-2);
  text-align: center;
  letter-spacing: 0.04em;
}
.pipeline-arrow { color: var(--fg-2); flex-shrink: 0; }

.content-preview {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.preview-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.preview-label {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.preview-bar {
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
}
.bar-1 { width: 90%; }
.bar-2 { width: 75%; }
.bar-3 { width: 60%; }
.bar-4 { width: 85%; }
.bar-5 { width: 50%; }
.bar-6 { width: 70%; }

/* SECTION TITLES */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.65;
}

/* PIPELINE SECTION */
.pipeline-section {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.pipeline-inner { max-width: 1100px; margin: 0 auto; }
.pipeline-stages {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.stage {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  min-width: 160px;
}
.stage-num {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.stage h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.stage p {
  font-size: 0.82rem;
  color: var(--fg-2);
  line-height: 1.55;
}
.stage-arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  color: var(--fg-2);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.65rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* RESULTS */
.results {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.results-inner { max-width: 1100px; margin: 0 auto; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.result-item {
  background: var(--bg-2);
  padding: 2.5rem 2rem;
  text-align: center;
}
.result-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.result-desc {
  font-size: 0.8rem;
  color: var(--fg-2);
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.manifesto-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.manifesto-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.manifesto-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg);
}
.footer-tag {
  font-size: 0.75rem;
  color: var(--fg-2);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-stages { flex-direction: column; }
  .stage-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
  .hero { padding-top: 6rem; }
  .hero-proof { gap: 1rem; }
}

/* NAV CTA */
.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 0.4rem 1rem;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }
