:root {
  --navy: #0F2A4A;
  --navy-light: #1a3d6b;
  --navy-dark: #071a30;
  --gold: #C9A227;
  --gold-light: #d4b545;
  --red: #B22234;
  --white: #FFFFFF;
  --off-white: #f4f6f9;
  --gray-100: #e8ecf0;
  --gray-300: #b8c2ce;
  --gray-500: #6b7a8a;
  --gray-700: #3d4a5c;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1100px;
  --section-pad: 80px 40px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 40px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.65;
  max-width: 480px;
}

/* Hero Visual - Regulatory Status Grid */
.hero-visual {
  background: var(--navy-light);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 32px;
}

.data-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.data-row {
  display: grid;
  grid-template-columns: 70px 1fr 100px;
  align-items: center;
  gap: 14px;
}

.data-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.data-bar {
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  width: calc(var(--pct) * 100%);
  opacity: 0.6;
  position: relative;
}

.data-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.data-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-align: right;
}

.update-stamp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
}

.update-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-scroller {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SHARED SECTION STYLES ─────────────────────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ── DAILY / PRODUCT ───────────────────────────────── */
.daily {
  background: var(--white);
  padding: var(--section-pad);
}

.daily-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.issue-mockup {
  background: var(--navy);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(201,162,39,0.15);
  box-shadow: 0 24px 64px rgba(15,42,74,0.15);
}

.issue-header {
  background: var(--navy-light);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.issue-logo {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--navy);
  flex-shrink: 0;
}

.issue-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.issue-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.issue-number {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
}

.issue-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.issue-section {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.issue-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.tag-fda { background: rgba(56,135,226,0.15); color: #6ba3e0; }
.tag-eu { background: rgba(201,162,39,0.15); color: var(--gold-light); }
.tag-qmsr { background: rgba(178,34,52,0.15); color: #e05565; }

.issue-text {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.7;
  font-weight: 300;
}

.issue-text strong { color: var(--white); font-weight: 600; }

.issue-footer {
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.issue-cta {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.daily-caption {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 300;
  font-style: italic;
}

/* ── OUTCOMES ──────────────────────────────────────── */
.outcomes {
  background: var(--off-white);
  padding: var(--section-pad);
}

.outcomes-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
}

.outcome-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.2s;
}

.outcome-card:hover { background: var(--navy); color: var(--white); }
.outcome-card:hover .outcome-icon { color: var(--gold); }
.outcome-card:hover p { color: var(--gray-300); }

.outcome-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  font-weight: 300;
}

/* ── COVERAGE ──────────────────────────────────────── */
.coverage {
  background: var(--white);
  padding: var(--section-pad);
}

.coverage-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.regulators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.regulator-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}

.regulator-card:hover { background: var(--navy); color: var(--white); }

.reg-flag {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.regulator-card:hover .reg-flag {
  background: var(--gold);
  color: var(--navy);
}

.reg-info h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.reg-info p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
  font-weight: 300;
}

.regulator-card:hover .reg-info p { color: var(--gray-300); }

/* ── QUALITY ────────────────────────────────────────── */
.quality {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-pad);
}

.quality-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.quality-content {
  max-width: 680px;
}

.quality h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.quality p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

.quality-principles {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}

.principle {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.principle-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}

.principle span:last-child {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ── MANIFESTO ─────────────────────────────────────── */
.manifesto {
  background: var(--navy-dark);
  padding: 80px 40px 100px;
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 32px;
  font-weight: 400;
}

.manifesto-body {
  font-size: 17px;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--navy);
}

.footer-tagline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-product {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-sub {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 300;
}

.footer-meta {
  text-align: right;
}

.footer-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-weight: 300;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-700);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right { order: -1; }
  .hero-visual { padding: 20px; }
  .hero-headline { font-size: 32px; }
  
  .outcomes-grid { grid-template-columns: 1fr; }
  .regulators-grid { grid-template-columns: 1fr; }
  
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-meta { text-align: left; }
  
  section { padding: 60px 24px; }
  .manifesto { padding: 60px 24px 80px; }
}