:root {
  --midnight: #0c1929;
  --midnight-light: #132337;
  --navy: #1e3a5f;
  --amber: #f59e0b;
  --amber-dim: #b45309;
  --amber-glow: rgba(245, 158, 11, 0.15);
  --steel: #94a3b8;
  --steel-dim: #475569;
  --surface: #112131;
  --border: rgba(148, 163, 184, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: #e2e8f0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(12, 25, 41, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-wordmark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.25rem;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(24px, 5vw, 80px) 80px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 158, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.08;
  color: #f8fafc;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(245, 158, 11, 0.05);
}

/* Regulatory feed card */
.reg-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.reg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(245,158,11,0.05);
}
.reg-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}
.reg-live {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 5px;
}
.reg-live::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.reg-items { padding: 8px 0; }
.reg-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.reg-item:last-child { border-bottom: none; }
.reg-item--alert {
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid var(--amber);
}
.reg-item--new {
  border-left: 3px solid rgba(245, 158, 11, 0.4);
  margin-left: -3px;
}
.reg-agency {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--amber);
  padding-top: 2px;
}
.reg-text {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.5;
}

/* ── SECTIONS (shared) ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.section-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #f8fafc;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-body {
  font-size: 1rem;
  color: var(--steel);
  max-width: 520px;
  line-height: 1.7;
}

/* ── MONITOR ── */
.monitor {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  background: #0a1421;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.monitor-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.monitor-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.monitor-panel {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
}
.monitor-panel:hover { background: #152438; }
.panel-icon {
  width: 44px; height: 44px;
  background: var(--amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.panel-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.panel-body {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.6;
}

/* ── COMPARE ── */
.compare {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--midnight);
}
.compare-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.compare-table {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ct-row {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.ct-row:last-child { border-bottom: none; }
.ct-header .ct-label,
.ct-header .ct-other,
.ct-header .ct-lexflow {
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 16px 24px;
}
.ct-header .ct-lexflow { color: var(--amber); }
.ct-label {
  font-size: 0.85rem;
  color: var(--steel);
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.ct-other {
  font-size: 0.875rem;
  color: var(--steel-dim);
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.ct-lexflow {
  font-size: 0.875rem;
  color: #e2e8f0;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.ct-row--highlight {
  background: rgba(245, 158, 11, 0.03);
}
.ct-wrong { color: #ef4444; opacity: 0.8; }
.ct-right { color: #10b981; font-weight: 600; }

/* ── MANIFESTO ── */
.manifesto {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  background: #09111c;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-quote {
  border-left: 3px solid var(--amber);
  padding-left: 32px;
}
.manifesto-quote p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
}
.manifesto-quote cite {
  font-size: 0.8rem;
  color: var(--steel-dim);
  font-style: normal;
}
.manifesto-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  color: #f8fafc;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.manifesto-sub {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 48px;
}
.manifesto-stats {
  display: flex;
  gap: 40px;
}
.stat-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--steel-dim);
  line-height: 1.4;
}

/* ── CLOSING ── */
.closing {
  padding: clamp(100px, 14vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--midnight);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: #f8fafc;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}
.closing-footer {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.closing-tag {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--steel-dim);
}

/* ── FOOTER ── */
.footer {
  padding: 48px clamp(24px, 5vw, 80px);
  background: #09111c;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.1rem;
  color: #f1f5f9;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--steel-dim);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--steel-dim);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--steel-dim);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .monitor-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-row { grid-template-columns: 160px 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding-top: 100px; }
  .hero-headline { font-size: 2.2rem; }
  .monitor-panels { grid-template-columns: 1fr; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-label { border-right: none; border-bottom: 1px solid var(--border); }
  .ct-other, .ct-lexflow { border-right: none; }
  .manifesto-stats { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .compare-table { overflow-x: auto; }
  .ct-row { min-width: 480px; }
}