/* --- Variables --- */
:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --teal: #00c9a7;
  --teal-dim: rgba(0, 201, 167, 0.15);
  --cream: #f8f6f1;
  --cream-dark: #edeae3;
  --text-light: #d4d0c8;
  --text-body: #c2bdb5;
  --text-dim: #7a756d;
  --border: rgba(255,255,255,0.07);
  --warn: #f59e0b;
  --ok: #00c9a7;
  --accent-text: #00c9a7;
}

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

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }

/* --- Nav --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo { color: var(--teal); font-size: 16px; }
.nav-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 420px;
  font-weight: 300;
}

/* --- Cmd Display --- */
.hero-visual { position: relative; z-index: 1; }
.cmd-display {
  background: #060d1a;
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,201,167,0.08), 0 40px 80px rgba(0,0,0,0.5);
}
.cmd-header {
  background: var(--navy-mid);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cmd-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.cmd-dot.red { background: #ff5f57; }
.cmd-dot.yellow { background: #febc2e; }
.cmd-dot.green { background: #28c840; }
.cmd-title {
  margin-left: 8px;
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}
.cmd-body {
  padding: 20px;
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  line-height: 1.8;
}
.cmd-line { display: flex; align-items: center; gap: 8px; }
.cmd-prompt { color: var(--teal); }
.cmd-cmd { color: #e8e4dc; }
.cmd-output { color: var(--text-dim); padding: 2px 0; }
.highlight { color: var(--ok) !important; }
.warn { color: var(--warn) !important; }
.ok { color: var(--ok) !important; }
.accent-text { color: var(--teal) !important; font-weight: 600; }
.cmd-bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 36px;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
}
.client-label { font-size: 11px; color: var(--text-dim); }
.cmd-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill { height: 100%; border-radius: 3px; }
.bar-high { background: var(--teal); }
.bar-mid { background: #f59e0b; }
.bar-val { font-size: 12px; color: var(--text-body); text-align: right; }
.cmd-cursor { color: var(--teal); animation: blink 1.2s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* --- Manifesto --- */
.manifesto {
  background: var(--cream);
  padding: 120px 80px;
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.manifesto-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--navy-mid);
}
.manifesto-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.manifesto-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4540;
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 28px 32px;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  background: var(--cream-dark);
  align-self: stretch;
}

/* --- Pillars --- */
.pillars {
  background: #eceae4;
  padding: 120px 80px;
}
.pillars-inner { max-width: 1100px; margin: 0 auto; }
.pillars-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillars-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--navy-mid);
}
.pillars-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  max-width: 500px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
}
.pillar {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s;
}
.pillar:hover { background: #fff; }
.pillar-icon {
  margin-bottom: 20px;
  display: flex;
}
.pillar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b6560;
  font-weight: 300;
}

/* --- Outcomes --- */
.outcomes {
  background: var(--cream);
  padding: 80px 80px;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.outcome-card {
  padding: 40px 36px;
  background: var(--navy);
  border-radius: 10px;
}
.outcome-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.outcome-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}

/* --- Closing --- */
.closing {
  background: var(--navy);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.closing-mark {
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 32px;
  display: block;
}
.closing-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
  font-weight: 300;
}
.closing-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  line-height: 1.8;
}

/* --- Footer --- */
.site-footer {
  background: #060d1a;
  padding: 28px 80px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-logo { color: var(--teal); font-size: 14px; }
.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    gap: 40px;
  }
  .hero-sub { max-width: 100%; }
  .manifesto, .pillars, .outcomes, .closing { padding: 80px 32px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .site-footer { padding: 24px 32px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}