:root {
  --bg-primary: #060b08;
  --bg-secondary: #0a1310;
  --bg-card: #0d1a14;
  --bg-surface: #111e1a;
  --fg-primary: #e8f0ec;
  --fg-secondary: #9bb5aa;
  --fg-muted: #5a7268;
  --accent: #00d4a0;
  --accent-dim: #00a07a;
  --accent-glow: rgba(0, 212, 160, 0.15);
  --danger: #e05a4a;
  --border: rgba(0, 212, 160, 0.12);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* HERO */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 160, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 160, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 212, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 160, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
  margin-bottom: 24px;
}

.hero .lede {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* OVERVIEW */
.overview {
  padding: 80px 40px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.overview-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-text h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--fg-primary);
  line-height: 1.25;
}

.overview-text p {
  color: var(--fg-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.overview-text strong { color: var(--fg-primary); }

.gap-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gap-layer {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
}

.layer-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.layer-bar {
  height: 32px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.regulated { background: rgba(0, 212, 160, 0.15); color: var(--accent); }
.ungoverned { background: rgba(224, 90, 74, 0.2); color: var(--danger); border: 1px solid rgba(224, 90, 74, 0.3); }
.no-response { background: rgba(224, 90, 74, 0.15); color: var(--danger); border: 1px solid rgba(224, 90, 74, 0.25); }

.gap-sentinel {
  margin-top: 8px;
  padding: 10px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.03em;
}

/* PILLARS */
.pillars {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.pillars-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.pillars h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--fg-primary);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.pillar:hover { border-color: rgba(0, 212, 160, 0.3); }

.pillar-icon { margin-bottom: 16px; }

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg-primary);
}

.pillar p {
  font-size: 0.875rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* PROTOCOL */
.protocol {
  padding: 80px 40px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

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

.protocol-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.protocol h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fg-primary);
}

.protocol-intro {
  color: var(--fg-secondary);
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.protocol-elements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.protocol-element {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.element-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 12px;
}

.protocol-element h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg-primary);
}

.protocol-element p {
  font-size: 0.8rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

.protocol-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* PARTNERS */
.partners {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.partners-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.partners h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--fg-primary);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.partner-icon { margin-bottom: 16px; }

.partner-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg-primary);
}

.partner-card p {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

.partner-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 80px 40px;
  background: var(--bg-secondary);
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg-primary);
}

.closing-statement {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 40px;
}

.closing-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--fg-secondary);
}

.fact-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fact strong { color: var(--fg-primary); }

.closing-quote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  font-size: 1rem;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.65;
}

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

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-primary);
  margin-bottom: 4px;
}

.footer-logo .accent { color: var(--accent); }

.footer-brand p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-contact {
  display: flex;
  gap: 40px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 600;
}

.contact-item span:not(.contact-label) {
  font-size: 0.8rem;
  color: var(--fg-secondary);
}

.footer-status {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator { display: flex; align-items: center; gap: 6px; }

.blink-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .overview-inner { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .protocol-elements { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-contact { flex-direction: column; gap: 16px; }
}