:root {
  --red: #a60c24;
  --red-bright: #cf1735;
  --red-dark: #620616;
  --ink: #151827;
  --navy: #171b31;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --gold: #f6d45d;
  --green: #08755a;
  --muted: #646776;
  --line: rgba(21, 24, 39, .13);
  --shadow: 0 22px 60px rgba(27, 13, 19, .12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 10px 14px; background: #fff; color: var(--ink); border-radius: 8px; }
.skip:focus { top: 12px; }

.network-bar { background: #111522; color: #fff; font-size: 12px; letter-spacing: .02em; }
.network-bar .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.network-bar a { text-decoration: none; opacity: .9; }
.network-bar a:hover { opacity: 1; text-decoration: underline; }
.network-mark { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; }
.network-mark::before { content: "AG"; display: grid; place-items: center; width: 25px; height: 25px; background: var(--gold); color: #111522; border-radius: 7px; font-size: 10px; }
.network-links { display: flex; align-items: center; gap: 18px; }

.campaign-strip {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright));
  color: #fff;
  text-align: center;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 253, 249, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: max-content; }
.brand-number { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--red); color: #fff; font-size: 22px; font-weight: 950; box-shadow: inset 0 0 0 4px rgba(255,255,255,.28); }
.brand-copy strong { display: block; font-size: 18px; line-height: 1.05; letter-spacing: -.025em; }
.brand-copy small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links a { padding: 10px 10px; border-radius: 9px; color: #343746; font-size: 13px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(166, 12, 36, .08); color: var(--red); }
.nav-links .nav-cta { margin-left: 5px; background: var(--red); color: #fff; padding-inline: 15px; }
.nav-links .nav-cta:hover { background: var(--red-dark); color: #fff; }
.menu-btn { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 10px 13px; font-weight: 850; color: var(--ink); }

.eyebrow, .kicker { color: var(--red); font-size: 12px; line-height: 1.3; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(246,212,93,.2), transparent 28%), linear-gradient(135deg, #22080e 0%, var(--red-dark) 44%, var(--red) 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, #000, transparent 76%); }
.hero-grid { position: relative; min-height: 680px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 56px; padding-block: 74px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { max-width: 760px; margin: 18px 0 22px; font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { max-width: 690px; color: rgba(255,255,255,.88); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.hero-slogan { margin: 24px 0 0; color: #fff; font-weight: 850; font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 19px; border: 1px solid transparent; border-radius: 10px; font-weight: 850; font-size: 14px; text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #22160b; }
.btn-secondary { background: var(--red); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.05); }
.btn-light { background: #fff; color: var(--ink); }
.hero-media { position: relative; align-self: end; min-height: 590px; display: flex; align-items: end; justify-content: center; }
.hero-media::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: var(--gold); opacity: .94; top: 47px; right: -60px; }
.hero-media img { position: relative; z-index: 1; width: min(100%, 520px); aspect-ratio: 1 / 1.08; object-fit: cover; object-position: top center; border-radius: 48% 48% 24px 24px; filter: drop-shadow(0 28px 45px rgba(0,0,0,.25)); }
.hero-badge { position: absolute; z-index: 2; left: -25px; bottom: 32px; width: min(280px, 70%); padding: 17px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 15px; background: rgba(22,15,21,.8); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-badge strong { display: block; color: var(--gold); font-size: 20px; }
.hero-badge span { display: block; margin-top: 4px; color: rgba(255,255,255,.8); font-size: 12px; }

.fact-strip { background: var(--navy); color: #fff; }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.fact:last-child { border-right: 0; }
.fact strong { display: block; color: var(--gold); font-size: 27px; line-height: 1; }
.fact span { display: block; margin-top: 8px; color: rgba(255,255,255,.75); font-size: 12px; }

.section { padding-block: 86px; }
.section-sm { padding-block: 52px; }
.section-white { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); color: #fff; }
.section-red { background: linear-gradient(135deg, var(--red-dark), var(--red)); color: #fff; }
.section-head { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 54px; margin-bottom: 38px; }
.section-head h2, .story-copy h2, .prose h2, .cta h2 { margin: 8px 0 0; font-size: clamp(31px, 4vw, 51px); line-height: 1.08; letter-spacing: -.045em; }
.section-head > p { margin: 0; color: var(--muted); font-size: 17px; }
.section-dark .section-head > p, .section-red .section-head > p { color: rgba(255,255,255,.72); }

.editorial-split { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 64px; }
.editorial-split.reverse { grid-template-columns: 1.12fr .88fr; }
.editorial-split.reverse .story-media { order: 2; }
.story-media { position: relative; }
.story-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-media.landscape img { aspect-ratio: 3/2; }
.story-media.fit img { height: auto; aspect-ratio: auto; object-fit: contain; }
.story-credit { margin-top: 10px; color: var(--muted); font-size: 11px; }
.section-dark .story-credit, .section-red .story-credit { color: rgba(255,255,255,.65); }
.story-copy > p { font-size: 17px; }
.pull { margin: 26px 0; padding: 19px 22px; border-left: 5px solid var(--gold); background: rgba(246,212,93,.12); border-radius: 0 13px 13px 0; font-size: 18px; font-weight: 750; }
.section-cream .pull { background: #fff; }

.grid-2, .grid-3, .grid-6 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; overflow: hidden; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(27,13,19,.055); }
.card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--red); opacity: 0; transition: opacity .2s; }
.card:hover::before { opacity: 1; }
.card .number { color: var(--red); font-size: 12px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; }
.card h3 { margin: 11px 0 9px; font-size: 22px; line-height: 1.18; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); }
.card .link { margin-top: 17px; }
.icon { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 16px; border-radius: 13px; background: rgba(166,12,36,.09); color: var(--red); font-size: 21px; font-weight: 950; }
.link { display: inline-flex; color: var(--red); font-weight: 850; text-decoration: none; }
.link:hover { text-decoration: underline; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.stat strong { display: block; color: var(--red); font-size: 29px; line-height: 1; }
.stat span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; }
.source-tag { display: inline-block; margin-top: 11px; padding: 5px 8px; border-radius: 999px; background: var(--cream); color: #68604f; font-size: 9px; font-weight: 850; font-style: normal; letter-spacing: .07em; text-transform: uppercase; }

.federal-case { position: relative; overflow: hidden; }
.federal-case::after { content: "13"; position: absolute; right: -34px; bottom: -118px; color: rgba(166,12,36,.045); font-size: 390px; line-height: 1; font-weight: 950; pointer-events: none; }
.evidence-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.evidence-card { padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(27,13,19,.055); }
.evidence-card strong { display: block; color: var(--red); font-size: clamp(30px, 4vw, 46px); line-height: 1; letter-spacing: -.045em; }
.evidence-card h3 { margin: 13px 0 8px; font-size: 19px; line-height: 1.2; }
.evidence-card p { margin: 0; color: var(--muted); font-size: 14px; }
.evidence-card a { display: inline-flex; margin-top: 14px; color: var(--red); font-size: 12px; font-weight: 850; }
.source-footnote { position: relative; z-index: 1; margin-top: 20px; padding: 15px 18px; border-left: 4px solid var(--red); background: rgba(255,255,255,.72); color: var(--muted); font-size: 12px; }
.source-footnote strong { color: var(--ink); }

.lula-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.lula-photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: #ece8e0; box-shadow: var(--shadow); }
.lula-photo img { width: 100%; height: auto; aspect-ratio: 1500/921; object-fit: contain; }
.lula-photo figcaption { padding: 11px 14px; background: #171b31; color: rgba(255,255,255,.82); font-size: 11px; }
.lula-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 65px); border-radius: var(--radius); background: var(--red); color: #fff; }
.section-red .lula-copy { border: 1px solid rgba(255,255,255,.14); background: rgba(98,6,22,.48); }
.lula-copy .kicker { color: var(--gold); }
.lula-copy h2 { margin: 10px 0 18px; font-size: clamp(34px, 4vw, 54px); line-height: 1.05; letter-spacing: -.05em; }
.lula-copy p { color: rgba(255,255,255,.83); font-size: 17px; }

.timeline { position: relative; margin-top: 34px; }
.timeline::before { content: ""; position: absolute; left: 96px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.moment { position: relative; display: grid; grid-template-columns: 76px 1fr; gap: 42px; padding: 0 0 29px; }
.moment:last-child { padding-bottom: 0; }
.moment time { color: var(--red); font-weight: 950; }
.moment time::after { content: ""; position: absolute; left: 90px; top: 7px; width: 13px; height: 13px; border: 3px solid var(--paper); border-radius: 50%; background: var(--red); box-shadow: 0 0 0 1px var(--line); }
.section-cream .moment time::after { border-color: var(--cream); }
.moment h3 { margin: 0 0 5px; font-size: 20px; }
.moment p { margin: 0; color: var(--muted); }

.page-hero { padding-block: 68px; background: radial-gradient(circle at 82% 12%, rgba(246,212,93,.19), transparent 28%), linear-gradient(135deg, #28090f, var(--red-dark) 52%, var(--red)); color: #fff; }
.breadcrumbs { margin-bottom: 26px; color: rgba(255,255,255,.62); font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.page-hero-grid { display: grid; grid-template-columns: 1.08fr .72fr; align-items: center; gap: 58px; }
.page-hero-grid.wide-media { grid-template-columns: .9fr 1.1fr; }
.page-hero h1 { margin: 12px 0 18px; font-size: clamp(39px, 5.6vw, 68px); line-height: 1; letter-spacing: -.055em; }
.page-hero .lead { margin: 0; color: rgba(255,255,255,.82); font-size: clamp(17px, 2vw, 21px); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero-media { position: relative; }
.page-hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center top; border-radius: 22px; box-shadow: var(--shadow); }
.page-hero-media.portrait img { aspect-ratio: 1/1; object-fit: contain; object-position: center; background: #eef0f2; }
.page-hero-media.lula-wide { width: min(100%, 680px); }
.page-hero-media.lula-wide img { height: auto; aspect-ratio: 1500/921; object-fit: contain; }
.caption { margin-top: 9px; color: rgba(255,255,255,.62); font-size: 10px; }

.article-layout { display: grid; grid-template-columns: 245px minmax(0, 760px); justify-content: center; gap: 58px; align-items: start; }
.toc { position: sticky; top: 112px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.toc strong { display: block; margin-bottom: 9px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.toc a { display: block; padding: 8px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-decoration: none; }
.toc a:hover { color: var(--red); }
.prose { min-width: 0; }
.prose > :first-child { margin-top: 0; }
.prose h2 { scroll-margin-top: 120px; margin-top: 48px; font-size: clamp(28px, 3vw, 40px); }
.prose h3 { margin-top: 31px; font-size: 23px; line-height: 1.2; }
.prose p, .prose li { font-size: 17px; }
.prose a { color: var(--red); font-weight: 700; }
.prose blockquote { margin: 28px 0; padding: 22px 24px; border-left: 5px solid var(--red); background: var(--cream); border-radius: 0 14px 14px 0; font-size: 19px; font-weight: 720; }
.notice { padding: 20px 22px; border: 1px solid rgba(166,12,36,.18); border-radius: 14px; background: rgba(166,12,36,.055); }
.notice strong { color: var(--red); }
.data-table { width: 100%; margin: 22px 0; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--navy); color: #fff; }
.data-table tr:nth-child(even) td { background: var(--cream); }
.source-list { display: grid; gap: 12px; }
.source-item { padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.source-item a { color: var(--red); font-weight: 850; word-break: break-word; }
.source-item small { display: block; margin-top: 6px; color: var(--muted); }

.faq { display: grid; gap: 11px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq summary { position: relative; padding: 18px 54px 18px 20px; cursor: pointer; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 14px; color: var(--red); font-size: 27px; }
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 20px 19px; color: var(--muted); }

.media-list { display: grid; gap: 16px; }
.media-item { display: grid; grid-template-columns: 210px 1fr; gap: 24px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.media-item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; }
.media-item small { color: var(--red); font-weight: 850; }
.media-item h3 { margin: 6px 0 8px; font-size: 22px; line-height: 1.22; }
.media-item p { margin: 0; color: var(--muted); }

.cta { padding-block: 60px; background: var(--navy); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 48px; }
.cta h2 { margin: 0; }
.cta p { color: rgba(255,255,255,.72); }

.site-footer { padding: 65px 0 20px; background: #0e111d; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .75fr); gap: 38px; }
.footer-brand { font-size: 23px; font-weight: 950; letter-spacing: -.03em; }
.footer-brand span { color: var(--gold); }
.footer-grid h3 { margin: 0 0 14px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.footer-grid p { color: rgba(255,255,255,.62); font-size: 13px; font-weight: 400; }
.footer-grid a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.disclosure { padding-top: 17px; border-top: 1px solid rgba(255,255,255,.1); }
.copyright { margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: 11px; }
.portal-return { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.portal-return strong { font-size: 12px; color: var(--gold); }
.portal-return a { color: rgba(255,255,255,.72); font-size: 12px; }
.mobile-action { display: none; }

@media (max-width: 1080px) {
  .nav-links { position: fixed; inset: 120px 20px auto; display: none; max-height: calc(100vh - 145px); overflow-y: auto; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 12px; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
  .menu-btn { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr .82fr; gap: 30px; }
  .hero-media { min-height: 520px; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 820px) {
  .network-links a:first-child { display: none; }
  .hero-grid, .page-hero-grid, .editorial-split, .editorial-split.reverse, .lula-feature, .section-head, .cta-grid { grid-template-columns: 1fr; }
  .page-hero-grid.wide-media { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 58px; min-height: auto; }
  .hero-media { min-height: 520px; }
  .hero-media::before { width: 420px; height: 420px; right: -40px; }
  .hero-media img { width: min(100%, 480px); }
  .editorial-split.reverse .story-media { order: 0; }
  .page-hero-media { max-width: 620px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .evidence-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .network-bar .container { justify-content: center; min-height: 34px; }
  .network-links { display: none; }
  .campaign-strip { font-size: 9px; }
  .nav { min-height: 72px; }
  .nav-links { inset: 106px 14px auto; }
  .brand-number { width: 43px; height: 43px; font-size: 19px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .hero h1 { font-size: 45px; }
  .hero-media { min-height: 450px; }
  .hero-media::before { width: 350px; height: 350px; top: 50px; right: -48px; }
  .hero-badge { left: 0; bottom: 18px; }
  .section { padding-block: 65px; }
  .page-hero { padding-block: 50px; }
  .page-hero h1 { font-size: 41px; }
  .fact-grid, .grid-2, .grid-3, .grid-6, .stats, .footer-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .fact:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .fact:last-child { border-bottom: 0; }
  .lula-photo { margin: 0; }
  .media-item { grid-template-columns: 1fr; }
  .timeline::before { left: 74px; }
  .moment { grid-template-columns: 58px 1fr; gap: 32px; }
  .moment time::after { left: 68px; }
  .prose p, .prose li { font-size: 16px; }
  .data-table { display: block; overflow-x: auto; }
  .mobile-action { position: fixed; z-index: 90; inset: auto 12px 12px; display: flex; justify-content: center; padding: 13px 16px; border-radius: 12px; background: var(--gold); color: #271b0d; box-shadow: 0 10px 32px rgba(0,0,0,.24); font-size: 12px; font-weight: 950; text-decoration: none; text-align: center; }
  .site-footer { padding-bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
