:root {
  --bg: #0B1D3A;
  --bg-mid: #0f2240;
  --bg-card: #132848;
  --fg: #F0F4F8;
  --fg-muted: #8899b0;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

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

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

/* NAV */
.nav-bar {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: rgba(11, 29, 58, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-wordmark { font-family: var(--font-display); font-size: 22px; letter-spacing: 4px; color: var(--fg); }
.nav-status { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.status-label { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.5px; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 100px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}
.hero-content { max-width: 860px; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.eyebrow-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(255,107,53,0.3); padding: 4px 10px; border-radius: 2px; }
.eyebrow-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.accent-text { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--fg-muted); max-width: 580px; line-height: 1.7; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 0; align-items: stretch; margin-bottom: 56px; }
.stat { padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-value { font-family: var(--font-display); font-size: 40px; color: var(--accent); line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* DEAL SHEET PREVIEW */
.deal-sheet-preview { border-left: 2px solid var(--accent); padding-left: 24px; }
.deal-sheet-label { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.deal-sheet { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 20px; max-width: 460px; }
.deal-sheet-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.deal-equipment { font-weight: 600; font-size: 14px; }
.deal-score { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); }
.deal-score strong { color: #22c55e; }
.deal-sheet-grid { display: flex; flex-direction: column; gap: 6px; }
.deal-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); }
.deal-row.highlight { color: var(--fg); font-weight: 500; }
.margin { color: #22c55e; font-weight: 600; }
.status-pending { color: #f59e0b; }

/* HOW IT WORKS */
.how-it-works { padding: 100px 48px; background: var(--bg-mid); }
.section-header { margin-bottom: 56px; }
.section-label { font-family: var(--font-mono); font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: 1px; }
.pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.pipeline-step { padding: 0 24px; }
.step-number { font-family: var(--font-display); font-size: 48px; color: var(--accent); opacity: 0.4; line-height: 1; margin-bottom: 12px; }
.step-content h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; margin-bottom: 10px; }
.step-content p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.pipeline-connector { display: flex; align-items: center; padding-top: 20px; }
.pipeline-note { display: flex; align-items: center; gap: 8px; margin-top: 40px; font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); background: rgba(255,107,53,0.06); border: 1px solid rgba(255,107,53,0.2); padding: 12px 16px; border-radius: 2px; max-width: 520px; }

/* SCORING ENGINE */
.scoring-engine { padding: 100px 48px; display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center; }
.score-visual { display: flex; align-items: center; gap: 48px; }
.score-circle { flex-shrink: 0; }
.score-factors { display: flex; flex-direction: column; gap: 16px; }
.factor { display: flex; flex-direction: column; gap: 4px; }
.factor-name { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.factor-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.factor-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.factor-val { font-family: var(--font-mono); font-size: 11px; color: var(--accent); }
.score-text h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: 1px; margin-bottom: 20px; }
.score-text p { color: var(--fg-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }

/* CATEGORIES */
.categories { padding: 100px 48px; background: var(--bg); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 28px; transition: border-color 0.2s; }
.category-card:hover { border-color: rgba(255,107,53,0.3); }
.cat-icon { margin-bottom: 16px; }
.category-card h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; margin-bottom: 10px; }
.category-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* TRANSPARENCY */
.transparency { padding: 100px 48px; background: var(--bg-mid); }
.trans-content { max-width: 800px; }
.trans-lead { font-family: var(--font-display); font-size: 28px; color: var(--accent); margin: 16px 0 40px; }
.trans-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.pillar { display: flex; flex-direction: column; gap: 8px; }
.pillar-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.pillar h4 { font-weight: 600; font-size: 15px; }
.pillar p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.warning-box { background: rgba(255,107,53,0.06); border: 1px solid rgba(255,107,53,0.25); border-radius: 2px; padding: 20px 24px; }
.warning-box strong { display: block; font-size: 13px; margin-bottom: 10px; color: var(--accent); font-family: var(--font-mono); }
.warning-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.warning-box li { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); padding-left: 16px; position: relative; }
.warning-box li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* CLOSING */
.closing {
  position: relative; padding: 120px 48px;
  overflow: hidden; text-align: center;
}
.closing-bg-art { position: absolute; inset: 0; pointer-events: none; }
.bg-triangle {
  position: absolute;
  border: 1px solid rgba(255,107,53,0.06);
}
.bg-triangle-1 { width: 400px; height: 400px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); top: -100px; left: -80px; border: none; border-left: 1px solid rgba(255,107,53,0.06); border-right: 1px solid rgba(255,107,53,0.06); border-bottom: 1px solid rgba(255,107,53,0.06); }
.bg-triangle-2 { width: 300px; height: 300px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); bottom: -60px; right: 80px; border: none; border-left: 1px solid rgba(255,107,53,0.04); border-right: 1px solid rgba(255,107,53,0.04); border-bottom: 1px solid rgba(255,107,53,0.04); }
.bg-triangle-3 { width: 200px; height: 200px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); bottom: 40px; left: 40%; border: none; border-left: 1px solid rgba(255,107,53,0.03); border-right: 1px solid rgba(255,107,53,0.03); border-bottom: 1px solid rgba(255,107,53,0.03); }
.closing-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.closing h2 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: 1px; margin-bottom: 28px; }
.closing p { color: var(--fg-muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.closing-tagline { margin-top: 48px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.tagline-line { font-family: var(--font-display); font-size: 36px; letter-spacing: 2px; color: var(--fg-muted); }
.tagline-line.accent { color: var(--accent); }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px; }
.footer-inner { max-width: 700px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-wordmark { font-family: var(--font-display); font-size: 16px; letter-spacing: 3px; color: var(--fg-muted); }
.footer-legal { font-size: 12px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 12px; }
.footer-copy { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.25); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-bar { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .pipeline { grid-template-columns: 1fr; gap: 32px; }
  .pipeline-connector { display: none; }
  .scoring-engine { grid-template-columns: 1fr; gap: 40px; }
  .category-grid { grid-template-columns: 1fr; }
  .trans-pillars { grid-template-columns: 1fr; }
  .how-it-works, .scoring-engine, .categories, .transparency, .closing { padding: 60px 24px; }
  footer { padding: 36px 24px; }
}

@media (max-width: 600px) {
  .nav-status { display: none; }
  .closing-tagline { gap: 16px; }
  .tagline-line { font-size: 28px; }
}