:root {
  --bg:       #0f1923;
  --bg2:      #141f2e;
  --bg3:      #1a2738;
  --bg4:      #203044;
  --text:     #cdd8e8;
  --text-hi:  #eaf0f9;
  --muted:    #7a9ab8;
  --accent:   #4c9bff;
  --accent-d: #2d7de8;
  --accent-g: rgba(76,155,255,0.08);
  --green:    #34d399;
  --red:      #f87171;
  --amber:    #fbbf24;
  --line:     rgba(76,155,255,0.12);
  --line2:    rgba(205,216,232,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* subtle dot grid bg */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(76,155,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  height: 64px;
  background: #0e1419;
  border-bottom: 1px solid var(--line2);
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text-hi); }
.nav-cta {
  background: var(--accent) !important; color: var(--bg) !important;
  padding: .45rem 1.1rem !important; border-radius: 3px !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-d) !important; color: var(--bg) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 9.5rem 3.5rem 6rem;
  position: relative; z-index: 1;
  border-bottom: 1px solid var(--line2);
}

.hero-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  opacity: 0; animation: up .7s .1s forwards;
}
.hero-kicker::before {
  content: ''; width: 28px; height: 1px; background: var(--accent); display: block;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3.8rem, 8.5vw, 8rem);
  line-height: 1.0;
  overflow-wrap: break-word;
  word-break: normal;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-hi);
  max-width: 18ch;
  opacity: 0; animation: up .8s .25s forwards;
}
.hero-headline .hi { color: var(--accent); }
.hero-headline .block { display: block; }

.hero-sub {
  margin-top: 2.5rem;
  max-width: 54ch;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  opacity: 0; animation: up .8s .4s forwards;
}
.hero-sub strong { font-weight: 600; color: var(--text-hi); }

.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0; animation: up .8s .55s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--accent); color: var(--bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none;
  padding: .85rem 2rem; border-radius: 3px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-d); transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  border: 1px solid var(--line2); padding: .85rem 1.5rem; border-radius: 3px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--text-hi); border-color: rgba(205,216,232,0.2); }

.hero-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em;
}

/* hero right side — floating code block */
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-left {}
.hero-right {
  opacity: 0; animation: fadeIn .9s .7s forwards;
}

/* ─── TICKER ─── */
.ticker {
  position: relative; z-index: 1;
  overflow: hidden;
  background: var(--bg2); z-index: 2;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: .6rem 0;
}
.ticker-track {
  display: flex; gap: 3.5rem; white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0;
}
.ticker-sep { color: var(--accent); }

/* ─── SECTIONS ─── */
section { position: relative; z-index: 1; background: var(--bg); }

.section-inner { padding: 7rem 3.5rem; }

.label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.label::before { content: '//'; opacity: .5; }

/* ─── PROBLEM ─── */
.problem { background: var(--bg2); border-bottom: 1px solid var(--line2); }

.problem-grid {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 6rem; align-items: start; margin-top: 3rem;
}

.problem-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05; color: var(--text-hi);
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}
.problem-hed em { font-style: italic; color: var(--accent); }

.problem-hed-attr {
  margin-top: 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; color: var(--muted); letter-spacing: 0.1em;
}

.problem-body {
  font-size: .95rem; font-weight: 300; line-height: 1.8; color: var(--text);
}
.problem-body p + p { margin-top: 1.1rem; }
.problem-body strong { color: var(--text-hi); font-weight: 600; }

.symptoms {
  margin-top: 5rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line2);
  border: 1px solid var(--line2);
  border-radius: 4px; overflow: hidden;
}
.symptom {
  background: var(--bg);
  padding: 1.75rem 2rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.symptom-icon {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .15rem;
  font-size: .65rem; color: var(--red);
}
.symptom-text { font-size: .88rem; line-height: 1.6; color: var(--text); }
.symptom-text strong { display: block; color: var(--text-hi); font-weight: 600; margin-bottom: .25rem; font-size: .9rem; }

/* ─── WHAT ─── */
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; align-items: start;
}
.what-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.0; color: var(--text-hi);
  letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.what-hed em { font-style: italic; color: var(--accent); }
.what-body { font-size: .95rem; font-weight: 300; line-height: 1.8; color: var(--text); }
.what-body p + p { margin-top: 1rem; }
.what-body strong { color: var(--text-hi); font-weight: 600; }

.callout {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--accent-g);
  border-left: 3px solid var(--accent);
  border-radius: 0 3px 3px 0;
}
.callout p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: .95rem; font-weight: 300; font-style: italic;
  color: var(--text-hi); line-height: 1.6;
}

/* ─── CODE BLOCK ─── */
.code-block {
  background: #080e17;
  border: 1px solid var(--line2);
  border-radius: 6px; overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
}
.code-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1.1rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--line2);
}
.code-dots { display: flex; gap: .35rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.code-fname { font-size: .68rem; color: var(--muted); letter-spacing: .1em; }
.code-body { padding: 1.4rem 1.25rem; font-size: .76rem; line-height: 1.85; overflow-x: auto; white-space: pre-wrap; word-break: break-word; }
.ck { color: #c792ea; }   /* keyword */
.cs { color: #89ddff; }   /* string */
.cm { color: #546e7a; font-style: italic; } /* comment */
.cp { color: var(--accent); } /* property */
.cv { color: var(--green); }  /* value */
.cn { color: #f78c6c; }   /* number/name */

/* ─── AUDITOR ─── */
.auditor { background: var(--bg2); border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); }

.auditor-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.0; color: var(--text-hi);
  letter-spacing: -0.01em; max-width: 22ch;
  margin-bottom: 1rem;
}
.auditor-hed em { font-style: italic; color: var(--accent); }
.auditor-sub { font-size: .95rem; font-weight: 300; color: var(--text); max-width: 58ch; margin-bottom: 4rem; line-height: 1.75; }

.detect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line2); border: 1px solid var(--line2); border-radius: 4px; overflow: hidden;
}
.detect-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background .2s;
}
.detect-card:hover { background: var(--bg3); }
.detect-icon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.detect-icon::before { content: '→'; }
.detect-title { font-weight: 600; font-size: .9rem; color: var(--text-hi); margin-bottom: .5rem; }
.detect-desc { font-size: .83rem; font-weight: 300; color: var(--text); line-height: 1.6; }

/* ─── HOW ─── */
.how-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  margin-bottom: 5rem; align-items: end;
}
.how-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); line-height: 1.0;
  color: var(--text-hi); letter-spacing: -0.01em;
}
.how-sub { font-size: .9rem; font-weight: 300; color: var(--text); line-height: 1.75; }

.steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 2rem; left: 2.5rem; right: 2.5rem; height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(76,155,255,.15));
}
.step { padding: 0 1.25rem 0 0; position: relative; }
.step-num {
  width: 4rem; height: 4rem; border-radius: 50%;
  border: 1px solid var(--accent); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: var(--accent);
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.step-done .step-num { border-color: var(--green); color: var(--green); }
.step-title { font-weight: 600; font-size: .88rem; color: var(--text-hi); margin-bottom: .4rem; }
.step-value {
  font-size: .8rem; font-weight: 300; color: var(--text); line-height: 1.55;
}
.step-tag {
  display: inline-block; margin-top: .75rem;
  font-family: 'IBM Plex Mono', monospace; font-size: .6rem; letter-spacing: .1em;
  color: var(--accent); border: 1px solid rgba(76,155,255,.25);
  padding: .2rem .5rem; border-radius: 2px;
}

/* ─── AGENT AGNOSTIC ─── */
.agents { background: var(--bg2); border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); }

.agents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.agents-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); line-height: 1.0;
  color: var(--text-hi); letter-spacing: -0.01em; margin-bottom: 1.25rem;
}
.agents-hed em { font-style: italic; color: var(--accent); }
.agents-body { font-size: .95rem; font-weight: 300; color: var(--text); line-height: 1.8; }
.agents-body strong { color: var(--text-hi); font-weight: 600; }

.agent-list {
  display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem;
}
.agent-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg3); border: 1px solid var(--line2); border-radius: 4px;
}
.agent-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.agent-name { font-family: 'IBM Plex Mono', monospace; font-size: .78rem; color: var(--text-hi); font-weight: 500; }
.agent-file { font-family: 'IBM Plex Mono', monospace; font-size: .7rem; color: var(--muted); margin-left: auto; }

/* ─── INSTALL ─── */
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.install-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.0;
  color: var(--text-hi); letter-spacing: -0.01em; margin-bottom: 1.25rem;
}
.install-body { font-size: .92rem; font-weight: 300; color: var(--text); line-height: 1.75; margin-bottom: 2rem; }

.install-steps { display: flex; flex-direction: column; gap: 1rem; }
.istep { display: flex; gap: 1rem; align-items: flex-start; }
.istep-n {
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: rgba(76,155,255,.12); border: 1px solid rgba(76,155,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: .65rem; color: var(--accent);
  flex-shrink: 0; margin-top: .15rem;
}
.istep-text { font-size: .88rem; font-weight: 300; color: var(--text); line-height: 1.6; }
.istep-text strong { color: var(--text-hi); font-weight: 600; }

.btn-install {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 2.5rem;
  background: var(--accent); color: var(--bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none;
  padding: .85rem 2rem; border-radius: 3px;
  transition: background .2s, transform .15s;
}
.btn-install:hover { background: var(--accent-d); transform: translateY(-1px); }

.terminal {
  background: #060c14; border: 1px solid var(--line2); border-radius: 6px; overflow: hidden;
}
.term-header {
  display: flex; align-items: center; gap: .35rem;
  padding: .65rem 1rem; background: rgba(255,255,255,.02);
  border-bottom: 1px solid var(--line2);
}
.term-body {
  padding: 1.25rem; font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem; line-height: 1.9; white-space: pre-wrap; word-break: break-word;
}
.t-prompt { color: var(--muted); }
.t-cmd { color: var(--text-hi); }
.t-ok { color: var(--green); }
.t-warn { color: var(--amber); }
.t-comment { color: #546e7a; }

.file-tree {
  margin-top: 1.5rem;
  background: #060c14; border: 1px solid var(--line2); border-radius: 6px;
  padding: 1.25rem; font-family: 'IBM Plex Mono', monospace; font-size: .75rem; line-height: 2;
  white-space: pre-wrap; word-break: break-word;
}
.ft-dir { color: var(--text-hi); }
.ft-spell { color: var(--accent); }
.ft-md { color: var(--green); }
.ft-plain { color: var(--text); }
.ft-dim { color: var(--muted); font-size: .68rem; }

/* ─── CTA ─── */
.cta-section {
  background: var(--bg2); border-top: 1px solid var(--line2);
  text-align: center; padding: 8rem 3.5rem;
}
.cta-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: .95;
  color: var(--text-hi); letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.cta-hed em { font-style: italic; color: var(--accent); }
.cta-sub {
  font-size: 1rem; font-weight: 300; color: var(--muted);
  max-width: 42ch; margin: 0 auto 3rem; line-height: 1.7;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--accent); color: var(--bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 1rem; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  padding: 1.1rem 2.5rem; border-radius: 3px;
  transition: background .2s, transform .15s;
  box-shadow: 0 0 40px rgba(76,155,255,.2);
}
.btn-cta:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 0 60px rgba(76,155,255,.35); }
.cta-meta {
  margin-top: 1.25rem; font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem; color: var(--muted); letter-spacing: .12em;
}

/* ─── AUTHOR ─── */
.author-section { border-top: 1px solid var(--line2); padding: 3.5rem 3.5rem; background: var(--bg); }
.author-inner { display: flex; align-items: center; gap: 2rem; max-width: 620px; }
.author-photo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: center 15%;
  border: 1px solid rgba(76,155,255,.25); flex-shrink: 0;
  filter: grayscale(20%) brightness(.95);
}
.author-name { font-weight: 600; font-size: .88rem; color: var(--text-hi); margin-bottom: .2rem; }
.author-bio { font-size: .8rem; font-weight: 300; color: var(--muted); line-height: 1.6; }
.author-bio a { color: var(--accent); text-decoration: none; }
.author-bio a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg); border-top: 1px solid var(--line2); padding: 1.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.foot-left { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }
.foot-right { font-family: 'IBM Plex Mono', monospace; font-size: .65rem; color: var(--muted); letter-spacing: .1em; }

/* ─── ANIMATIONS ─── */
@keyframes up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-headline { font-size: clamp(2.8rem, 10vw, 4.5rem) !important; word-break: normal; }
  .problem-hed { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .what-hed, .how-hed, .agents-hed, .install-hed { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
  .auditor-hed { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .cta-hed { font-size: clamp(2.5rem, 10vw, 4rem) !important; }
}
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .section-inner { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .problem-grid, .what-grid, .agents-grid, .install-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .detect-grid { grid-template-columns: 1fr; }
  .symptoms { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps::before { display: none; }
  .how-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { flex-direction: column; gap: .5rem; text-align: center; padding: 1.5rem; }
  .author-section { padding: 3rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .code-body { font-size: .68rem; padding: 1rem; }
  .term-body { font-size: .68rem; padding: 1rem; }
  .file-tree { font-size: .68rem; padding: 1rem; }
  .section-inner { padding: 4rem 1.25rem; }
}

  /* ─── MANIFESTO ─── */
  .manifesto-section {
    background: var(--bg);
    border-top: 1px solid var(--line2);
    border-bottom: 1px solid var(--line2);
    position: relative;
    overflow: hidden;
  }
  .manifesto-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(76,155,255,0.07), transparent);
    pointer-events: none;
  }
  .manifesto-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 8rem 3.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .manifesto-evolution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .evo-item {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--line2);
    border-radius: 2px;
  }
  .evo-item.evo-active {
    color: var(--accent);
    border-color: rgba(76,155,255,0.4);
    background: rgba(76,155,255,0.06);
  }
  .evo-arrow {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--muted);
    font-size: 0.85rem;
  }
  .manifesto-hed {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: var(--text-hi);
    margin-bottom: 2.5rem;
  }
  .manifesto-body {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.85;
    max-width: 62ch;
    margin: 0 auto 3rem;
  }
  .manifesto-quote {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--muted);
    border-top: 1px solid var(--line2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .manifesto-attr {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    font-style: normal;
    letter-spacing: 0.12em;
    color: var(--accent);
  }
  @media (max-width: 600px) {
    .manifesto-inner { padding: 5rem 1.5rem; }
    .manifesto-evolution { flex-wrap: wrap; }
  }

  /* ─── HAMBURGER + MOBILE MENU ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-hi);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: #0e1419;
    border-bottom: 1px solid var(--line2);
    flex-direction: column;
    z-index: 199;
    padding: 0.5rem 0 1rem;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
  }
  .mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .mm-link {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line2);
    transition: color .15s, background .15s;
  }
  .mm-link:last-child { border-bottom: none; }
  .mm-link:hover { color: var(--text-hi); background: rgba(76,155,255,0.05); }
  .mm-cta {
    color: var(--accent) !important;
    margin: 0.5rem 2rem 0;
    border: 1px solid rgba(76,155,255,0.3) !important;
    border-radius: 3px;
    text-align: center;
    padding: 0.75rem 1rem !important;
  }
  .mm-cta:hover { background: rgba(76,155,255,0.1) !important; }

  @media (max-width: 860px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none !important; }
    .mobile-menu { display: flex; }
  }
