/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAFAF5;
  --fg: #1A2B4A;
  --accent: #D4943A;
  --accent-dim: rgba(212,148,58,0.15);
  --text-muted: #5A6B7E;
  --border: rgba(26,43,74,0.1);
  --card-bg: #FFFFFF;
  --danger: #B71C1C;
  --success: #2E7D32;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* === NAV === */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(250,250,245,0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--accent-dim);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* === HERO === */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__inner {}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero__stages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.stage-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  background: var(--card-bg);
}
.stage-chip--active {
  border-color: var(--accent);
  color: var(--fg);
  background: var(--accent-dim);
}
.stage-arrow {
  width: 16px;
  height: 1px;
  background: var(--border);
  display: inline-block;
}

/* Hero visual */
.hero__visual { position: relative; }
.compliance-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 32px rgba(26,43,74,0.08);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.card-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.card-status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.card-status--live { background: #E8F5E9; color: var(--success); }
.card-product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--fg);
}
.product-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.product-dot--safe { background: var(--success); }
.card-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.card-bar__fill {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(212,148,58,0.3) 100%);
  border-radius: 2px;
  flex: 1;
}
.card-bar__label { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }
.card-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.meta-item { display: flex; justify-content: space-between; font-size: 0.8rem; }
.meta-key { color: var(--text-muted); font-weight: 500; }
.meta-val { color: var(--fg); font-weight: 500; display: flex; align-items: center; gap: 0.25rem; }
.meta-val--done { color: var(--success); }
.meta-val--warn { color: #F57C00; }
.hero__geometric { position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; pointer-events: none; }
.geo { position: absolute; border-radius: 50%; }
.geo-1 { width: 60px; height: 60px; border: 1.5px solid var(--accent-dim); top: 0; right: 0; }
.geo-2 { width: 36px; height: 36px; background: var(--accent-dim); bottom: 10px; left: -10px; }

/* === PROCESS === */
.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
}
.process__steps { display: flex; align-items: flex-start; gap: 0; }
.step {
  flex: 1;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.step__content h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step__content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.step__list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.step__list li {
  font-size: 0.82rem;
  color: var(--fg);
  padding-left: 1rem;
  position: relative;
}
.step__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  align-self: 2rem;
  flex-shrink: 0;
  position: relative;
  top: 6rem;
}
.step-connector::after {
  content: '→';
  position: absolute;
  right: -4px;
  top: -0.75em;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.process__speed {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--fg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.speed-stat { display: flex; align-items: baseline; gap: 0.5rem; }
.speed-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.speed-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.speed-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }
.speed-context p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 480px; }

/* === URGENCY === */
.urgency { background: #0E1628; padding: 5rem 2rem; }
.urgency__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.urgency__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FFFFFF;
  margin: 0.75rem 0 1.5rem;
  line-height: 1.2;
}
.urgency__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.urgency__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.reg-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: rgba(255,255,255,0.6);
}
.recall-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
}
.recall-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #EF5350;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.recall-substance { margin-bottom: 1.25rem; }
.substance-name { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.9); font-family: monospace; }
.substance-tag { display: inline-block; font-size: 0.72rem; background: rgba(183,28,28,0.2); color: #EF9A9A; padding: 0.2rem 0.5rem; border-radius: 4px; margin-top: 0.3rem; }
.recall-effects { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.effect { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.recall-products {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}
.recall-products span { color: #EF5350; font-weight: 700; }

/* === PROOF === */
.proof {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.proof__stat { padding: 2rem; border-right: 1px solid var(--border); }
.proof__stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* === CLOSING === */
.closing { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.closing__inner { max-width: 680px; }
.closing__line { width: 48px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 2rem; }
.closing__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.closing__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.closing__body em { color: var(--fg); font-style: normal; font-weight: 500; }

/* === FOOTER === */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--fg); }
.footer__brand p { font-size: 0.78rem; color: var(--text-muted); }
.footer__meta p { font-size: 0.78rem; color: var(--text-muted); text-align: right; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .hero__sub { max-width: 100%; }
  .process__steps { flex-direction: column; }
  .step-connector { display: none; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__stat:nth-child(2) { border-right: none; }
  .proof__stat:nth-child(3) { border-top: 1px solid var(--border); }
  .proof__stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .urgency__inner { grid-template-columns: 1fr; }
  .process__speed { flex-direction: column; gap: 1.5rem; }
  .speed-divider { width: 60px; height: 1px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta p { text-align: left; }
}
@media (max-width: 600px) {
  .proof__grid { grid-template-columns: 1fr; }
  .proof__stat { border-right: none; border-bottom: 1px solid var(--border); }
  .proof__stat:last-child { border-bottom: none; }
  .hero__stages { flex-wrap: wrap; }
}