:root {
  --bg: #0e0e0e;
  --surface: #181818;
  --surface-2: #222222;
  --border: #2e2e2e;
  --text: #f0efe9;
  --text-muted: #7a7870;
  --accent: #BAFF39;
  --accent-dim: #8abf2c;
  --sev-high: #FF4444;
  --sev-med: #FFB800;
  --sev-low: #4CAF50;
  --code-green: #7ee787;
  --code-red: #ff7b72;
}

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

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

/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.nav-links { display: flex; gap: 24px; align-items: center; }

.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

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

.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* PR CARD */
.pr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(186,255,57,0.08);
}

.pr-card-header {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.pr-card-dots {
  display: flex;
  gap: 6px;
}

.pr-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.pr-card-dots span:first-child { background: #ff5f57; }
.pr-card-dots span:nth-child(2) { background: #febc2e; }
.pr-card-dots span:nth-child(3) { background: #28c840; }

.pr-card-repo {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Bricolage Grotesque', monospace;
}

.pr-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pr-diff-line {
  font-family: 'Bricolage Grotesque', monospace;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--surface-2);
}

.pr-diff-line.removed { color: var(--code-red); border-left: 3px solid var(--code-red); }
.pr-diff-line.added { color: var(--code-green); border-left: 3px solid var(--code-green); }

.pr-comment {
  background: rgba(186,255,57,0.06);
  border: 1px solid rgba(186,255,57,0.2);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pr-comment-badge {
  background: var(--accent);
  color: #0e0e0e;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  height: fit-content;
  flex-shrink: 0;
}

.pr-comment p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.pr-comment code {
  background: rgba(255,255,255,0.1);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'Bricolage Grotesque', monospace;
  font-size: 12px;
}

.pr-severity-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.pr-severity-badge.sev-high { background: rgba(255,68,68,0.2); color: #ff6b6b; }

/* HERO METRICS */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.metric {
  background: var(--surface);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.metric-l {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #111 100%);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.manifesto-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.manifesto-text strong {
  color: var(--text);
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.how-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.step {
  background: var(--surface);
  padding: 40px 32px;
}

.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.features-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.features-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  color: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(186,255,57,0.08);
  border-radius: 8px;
  border: 1px solid rgba(186,255,57,0.15);
}

.feature-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CODEBLOCK / COMPARISON */
.codeblock {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.codeblock-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.codeblock-header {
  margin-bottom: 48px;
}

.codeblock-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-col {
  background: var(--bg);
  padding: 40px 36px;
}

.comparison-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-col ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.comparison-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.comparison-col.with ul li::before {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.comparison-col.with ul li {
  color: var(--text);
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #080808 100%);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.footer-tagline { font-size: 12px; color: var(--text-muted); }

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar, .hero, .manifesto, .howitworks, .features, .codeblock, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }

  .steps, .features-grid { grid-template-columns: 1fr; }

  .comparison { grid-template-columns: 1fr; }

  .hero-metrics { grid-template-columns: repeat(3, 1fr); }

  .nav-links { display: none; }

  .pr-card-body { gap: 6px; }
}