:root {
  --bg: #0a0a0f;
  --bg-surface: #111117;
  --bg-card: #18181f;
  --fg: #f0f0f5;
  --fg-muted: #8888a0;
  --accent: #39FF14;
  --accent-dim: rgba(57, 255, 20, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --font-head: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-head);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* HERO */
.hero {
  padding: 8rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-headline br { display: block; }
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-weight: 400;
  line-height: 1.65;
  max-width: 42ch;
}
.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 32ch;
}

/* COMPLIANCE WIDGET */
.compliance-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.widget-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.widget-dot.live {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.widget-label { color: var(--fg-muted); font-size: 0.72rem; }
.widget-score {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.score-num {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.score-label { color: var(--fg-muted); font-size: 0.75rem; }
.widget-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.widget-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.widget-violations { display: flex; flex-direction: column; gap: 0.6rem; }
.violation { display: flex; align-items: flex-start; gap: 0.5rem; }
.v-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.v-dot.green { background: var(--accent); }
.v-dot.red { background: #ff4444; }
.v-text { color: var(--fg-muted); line-height: 1.4; }
.violation.blocked .v-text { color: #ff6666; }
.widget-meta {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.meta-item { color: var(--fg-muted); font-size: 0.72rem; }

/* MANIFESTO */
.manifesto {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
.manifesto-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.35rem;
  white-space: nowrap;
}
.manifesto-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.manifesto-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 65ch;
}
.manifesto-body + .manifesto-body { margin-top: 1rem; }

/* FEATURES */
.features { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.features-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}
.feature { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROOF WIDGET SECTION */
.proof-widget-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.proof-widget-inner { max-width: 1100px; margin: 0 auto; }
.proof-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.report-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 560px;
}
.report-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
}
.report-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.report-body { padding: 1.25rem 1.5rem; }
.report-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.report-row:last-child { border-bottom: none; }
.report-key { color: var(--fg-muted); flex-shrink: 0; }
.report-val { color: var(--fg); text-align: right; }
.violation-count { color: var(--accent); }
.report-footer {
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
  background: var(--bg-surface);
}
.report-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
}
.proof-caption {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 52ch;
  line-height: 1.65;
}

/* CLOSING */
.closing { padding: 8rem 2rem; max-width: 1100px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .closing { padding: 5rem 1.5rem; }
  .proof-widget-section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .report-row { flex-direction: column; gap: 0.2rem; }
  .report-val { text-align: left; }
}