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

:root {
  --bg: #0c0c0c;
  --bg-alt: #111111;
  --fg: #f0ede8;
  --fg-muted: #7a7672;
  --accent: #e8a445;
  --accent-dim: rgba(232, 164, 69, 0.12);
  --border: #1e1e1e;
  --border-light: #2a2a2a;
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.nav-status {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 7rem 3rem 6rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 860px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.status-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: var(--fg);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.meta-value {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

/* ── THREAT ── */
.threat {
  padding: 6rem 3rem;
  background: var(--bg-alt);
}
.threat-inner { max-width: 900px; }
.threat-header { margin-bottom: 4rem; }
.threat-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.3;
  max-width: 700px;
  color: var(--fg);
}
.threat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.threat-card {
  background: var(--bg-alt);
  padding: 2.5rem;
}
.threat-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-family: 'Fraunces', serif;
}
.threat-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.threat-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 900px; }
.process-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  margin-bottom: 4rem;
  max-width: 600px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.step { position: relative; }
.step-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.process-note {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.process-note p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 640px;
  font-style: italic;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 6rem 3rem;
  background: var(--bg-alt);
}
.outcomes-inner { max-width: 900px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.outcome h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.outcome p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.outcomes-stat {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}
.outcomes-stat p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 3rem 7rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.closing-qualifiers p {
  font-size: 0.8rem;
  color: #555;
  font-style: italic;
}

/* ── FOOTER ── */
.footer {
  padding: 2rem 3rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-brand span:first-child {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.footer-meta span {
  font-size: 0.75rem;
  color: #444;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 4rem; }
  .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .threat { padding: 4rem 1.5rem; }
  .threat-grid { grid-template-columns: 1fr; }
  .process { padding: 4rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .outcomes { padding: 4rem 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem 4rem; }
  .footer { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 1rem; }
}