:root {
  --bg: #0B0B0F;
  --bg-surface: #111118;
  --fg: #E8E8EC;
  --fg-muted: #8888A0;
  --accent: #F5A623;
  --accent-dim: rgba(245,166,35,0.12);
  --accent-glow: rgba(245,166,35,0.08);
  --border: rgba(255,255,255,0.06);
  --section-pad: 100px 0;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

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

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

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

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}

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

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

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.15);
}

.ring-1 { width: 320px; height: 320px; animation: pulse 4s ease-in-out infinite; }
.ring-2 { width: 220px; height: 220px; border-color: rgba(245,166,35,0.25); animation: pulse 4s ease-in-out infinite 0.5s; }
.ring-3 { width: 120px; height: 120px; border-color: rgba(245,166,35,0.4); animation: pulse 4s ease-in-out infinite 1s; }

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

.visual-core {
  position: relative;
  z-index: 2;
}

.visual-nodes {
  position: absolute;
  inset: 0;
}

.node {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.node::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.node-1 { top: 10%; left: 20%; }
.node-1::before { right: calc(100% + 8px); }
.node-2 { top: 10%; right: 20%; }
.node-2::before { left: calc(100% + 8px); }
.node-3 { bottom: 30%; left: 0; }
.node-3::before { right: calc(100% + 8px); }
.node-4 { bottom: 30%; right: 0; }
.node-4::before { left: calc(100% + 8px); }
.node-5 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.node-5::before { top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-50%); }

/* SECTIONS BASE */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-inner.centered {
  text-align: center;
}

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

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* WORKFLOW */
.workflow {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.workflow .section-body {
  margin-bottom: 72px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.step {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-right: none; }

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: rgba(245,166,35,0.2);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* INTELLIGENCE */
.intelligence {
  padding: var(--section-pad);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intelligence .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intelligence .section-body {
  margin-bottom: 32px;
}

/* TERMINAL */
.intel-terminal {
  background: #0D0D14;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.terminal-header {
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.terminal-title {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
}

.terminal-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terminal-line {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.tl-time { color: var(--fg-muted); flex-shrink: 0; opacity: 0.5; }
.tl-action { color: var(--accent); font-weight: 600; flex-shrink: 0; }
.tl-val { color: var(--fg); }

.terminal-active {
  background: var(--accent-dim);
  border-radius: 4px;
  padding: 4px 6px;
  margin: -4px -6px;
}

.terminal-active .tl-val { color: var(--accent); }

/* INTEL FACTS */
.intel-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intel-fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.intel-fact p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* OUTCOMES */
.outcomes {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin: 56px 0 56px;
}

.outcome {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.outcome:last-child { border-right: none; }

.outcome-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.outcome-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.outcomes-quote {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  text-align: left;
  display: inline-block;
}

.outcomes-quote p {
  font-size: 18px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 600px;
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}

.manifesto-content {
  max-width: 720px;
}

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

.manifesto-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
}

.manifesto-vision {
  padding: 28px 32px;
  border: 1px solid rgba(245,166,35,0.2);
  background: var(--accent-dim);
  border-radius: 4px;
}

.manifesto-vision p {
  font-size: 17px;
  color: var(--fg);
  line-height: 1.7;
}

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

.footer .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.footer-meta p {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 280px; }
  .ring-1 { width: 200px; height: 200px; }
  .ring-2 { width: 140px; height: 140px; }
  .ring-3 { width: 80px; height: 80px; }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(5) { border-right: none; }
  .intelligence .section-inner { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome:nth-child(2) { border-right: none; }
}

@media (max-width: 600px) {
  .section-inner { padding: 0 24px; }
  .hero-inner { padding: 0 24px; }
  .hero { padding: 60px 0 80px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer .section-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-meta p { text-align: left; }
}