:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #52616a;
  --line: #d6dedb;
  --paper: #f6f3eb;
  --white: #fffdf8;
  --green: #0f6b5b;
  --teal: #2e8fa3;
  --red: #b44333;
  --gold: #c29328;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 33, 38, 0.12);
  background: rgba(246, 243, 235, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--green);
  color: white;
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 82vh;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 56px) 48px;
  background:
    linear-gradient(130deg, rgba(15, 107, 91, 0.16), transparent 38%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.3), rgba(255, 253, 248, 0.3)),
    repeating-linear-gradient(90deg, rgba(23, 33, 38, 0.08) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(23, 33, 38, 0.07) 0 1px, transparent 1px 80px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy > p:not(.eyebrow),
.section-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel div,
.signal-card,
.case-card,
.lead-list article,
.global-grid article {
  border: 1px solid rgba(23, 33, 38, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 50px rgba(23, 33, 38, 0.08);
}

.hero-panel div {
  padding: 20px;
}

.big {
  display: block;
  margin-bottom: 4px;
  font-size: 38px;
  font-weight: 860;
}

.hero-panel span:last-child {
  color: var(--muted);
  line-height: 1.35;
}

.strip {
  padding: 30px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: white;
}

.strip p {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.page-jump-nav {
  position: sticky;
  top: 65px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
}

.page-jump-nav a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-head {
  margin-bottom: 26px;
}

.module-section {
  background: #f9fbf6;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.module-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(23, 33, 38, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 33, 38, 0.08);
  text-decoration: none;
}

.module-card h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.module-kicker,
.card-cta {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.card-cta {
  margin-top: 14px;
  color: var(--red);
}

.module-card p {
  color: var(--muted);
  line-height: 1.5;
}

.signal-grid,
.case-grid,
.lead-list,
.global-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.case-grid,
.lead-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lead-list,
.global-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-card,
.case-card,
.lead-list article,
.global-grid article {
  padding: 22px;
}

.signal-card {
  border-top: 5px solid var(--green);
}

.signal-card.medium {
  border-top-color: var(--gold);
}

.confidence,
.case-card span,
.global-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-card p,
.case-card p,
.lead-list p,
.global-grid p,
td {
  color: var(--muted);
  line-height: 1.5;
}

.signal-card a {
  font-weight: 760;
}

.policy-section {
  background: #eef5f2;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 760;
}

input[type="search"] {
  width: min(720px, 100%);
  min-height: 46px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.sources {
  background: var(--white);
}

.global {
  background: #f9fbf6;
}

.global-grid article {
  border-left: 5px solid var(--teal);
}

.global-grid a {
  font-weight: 760;
}

.questions {
  background: #efe8dc;
}

.questions ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0;
  padding-left: 24px;
}

.questions li {
  padding: 14px 16px 14px 6px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.sources ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  padding-left: 20px;
}

.sources li {
  line-height: 1.45;
}

.about-hero {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px) clamp(46px, 6vw, 72px);
  background:
    linear-gradient(130deg, rgba(46, 143, 163, 0.18), transparent 38%),
    repeating-linear-gradient(90deg, rgba(23, 33, 38, 0.08) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(23, 33, 38, 0.06) 0 1px, transparent 1px 80px);
}

.about-hero p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.about-coverage,
.about-editorial,
.about-bottom-row {
  display: grid;
  gap: 16px;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 56px);
}

.about-coverage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
}

.about-coverage article,
.update-card,
.author-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(23, 33, 38, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.about-coverage h2,
.update-card h2,
.author-card h2 {
  font-size: 24px;
}

.about-coverage p,
.about-editorial p,
.update-card p,
.author-card p {
  color: var(--muted);
  line-height: 1.55;
}

.coverage-mark,
.author-mark {
  flex: 0 0 auto;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--green);
  color: white;
  font-weight: 850;
}

.about-editorial {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
}

.status-guide {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #eef5f2;
}

.status-guide h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.status-guide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.about-bottom-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.update-card,
.author-card {
  min-height: 220px;
}

.glossary-section {
  padding: clamp(42px, 6vw, 82px) clamp(18px, 4vw, 56px);
  background: var(--white);
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.glossary-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.glossary-grid h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.glossary-grid p {
  color: var(--muted);
  line-height: 1.5;
}

footer {
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .hero,
  .module-grid,
  .signal-grid,
  .case-grid,
  .lead-list,
  .global-grid,
  .questions ol,
  .sources ul,
  .about-coverage,
  .about-editorial,
  .about-bottom-row,
  .status-guide,
  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-jump-nav {
    position: static;
  }

  h1 {
    font-size: 46px;
  }
}
