/* ==========================================================================
   OPEC Fund Quarterly 3/2026 — interactive edition
   Brand tokens sampled from the print edition
   ========================================================================== */
:root {
  --navy: #214482;
  --navy-700: #1a3769;
  --navy-800: #152c56;
  --navy-900: #0f1f40;
  --navy-950: #0a1530;
  --sky: #69a8de;
  --sky-200: #bfdcf3;
  --sky-50: #eef6fc;
  --gold: #efc850;
  --gold-600: #d9ad2a;
  --teal: #7bb9ae;
  --teal-700: #176974;
  --teal-900: #0f4a52;
  --mint: #e8f1ef;
  --mint-200: #cfe3de;
  --terra: #b76859;
  --sand: #d9954f;

  /* chart series (validated: see README) */
  --s-russia: #2b56a0;
  --s-china: #b76859;
  --s-indonesia: #4f9bd9;
  --s-egypt: #d9954f;

  --paper: #f7f6f2;
  --surface: #ffffff;
  --ink: #0f1a33;
  --ink-2: #3c4760;
  --muted: #6b7489;
  --line: #e2e1dc;
  --grid: #ebeae5;

  --f-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  --wrap: 1200px;
  --col: 700px;
  --r: 14px;
  --shadow: 0 1px 2px rgba(15, 26, 51, .06), 0 8px 28px rgba(15, 26, 51, .07);
  --shadow-lg: 0 2px 6px rgba(15, 26, 51, .08), 0 24px 60px rgba(15, 26, 51, .14);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-700); }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--navy-950); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

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

/* ---------- layout ---------- */
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.col { width: min(var(--col), 100% - 32px); margin-inline: auto; }
.wide { width: min(1040px, 100% - 32px); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--mint { background: var(--mint); }
.section--white { background: var(--surface); }
.section--navy { background: var(--navy-800); color: #e9eef8; }
.section--deep { background: var(--navy-950); color: #dfe6f5; }
.section--sky { background: var(--sky-50); }

/* ---------- top bar ---------- */
.topbar {
  color: var(--navy) !important;
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 20px;
  height: 80px; padding: 0 clamp(16px, 3vw, 32px);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), color .35s;
  color: #fff;
}
.topbar.is-solid { background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); box-shadow: 0 1px 0 var(--line); color: var(--navy); }
.topbar__logo { display: flex; align-items: center; height: 66px; flex: none; }
.topbar__logo img { height: 66px; width: auto; }
.logo .n { fill: currentColor; }
.logo .s { fill: var(--sky); }
.topbar__issue { font: 600 12px/1 var(--f-sans); letter-spacing: .14em; text-transform: uppercase; opacity: .8; padding-left: 18px; border-left: 1px solid currentColor; white-space: nowrap; }
.topbar__nav { margin-left: auto; display: flex; gap: 2px; font-family: var(--f-sans); }
.topbar__nav a { color: inherit; text-decoration: none; font-size: 13px; font-weight: 600; padding: 8px 11px; border-radius: 999px; transition: background .2s; white-space: nowrap; }
.topbar__nav a:hover { background: rgba(127,127,127,.14); }
.topbar__nav a.is-active { background: var(--gold); color: var(--navy-950); }
.topbar__menu { display: none; margin-left: auto; background: none; border: 1px solid currentColor; border-radius: 999px; padding: 7px 14px; font: 600 13px var(--f-sans); cursor: pointer; }
.progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); width: 0; z-index: 60; }
@media (max-width: 1180px) {
  .topbar__nav { display: none; }
  .topbar__menu { display: inline-flex; }
  .topbar__nav.is-open { display: flex; flex-direction: column; position: absolute; top: 80px; right: 12px; background: #fff; color: var(--navy); padding: 10px; border-radius: 16px; box-shadow: var(--shadow-lg); max-height: calc(100vh - 80px); overflow: auto; }
  .topbar__nav.is-open a { font-size: 15px; padding: 10px 16px; }
}
@media (max-width: 560px) { .topbar__issue { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; color: #fff; overflow: hidden; display: flex; flex-direction: column; }
.hero__bg { position: absolute; inset: 0; background: url(assets/img/cover.jpg) center 62% / cover no-repeat; transform: scale(1.06); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(240,246,252,.97) 0%, rgba(236,243,251,.94) 34%, rgba(232,241,250,.82) 43%, rgba(228,239,249,0) 53%),
  linear-gradient(0deg, rgba(10,21,48,.94) 0%, rgba(10,21,48,.8) 28%, rgba(10,21,48,.5) 44%, rgba(10,21,48,0) 56%),
  linear-gradient(90deg, rgba(10,21,48,.45) 0%, rgba(10,21,48,.1) 50%, rgba(10,21,48,.4) 100%); }
.hero__inner { position: relative; z-index: 2; flex: 1; display: grid; grid-template-rows: auto 1fr auto; padding: 112px 0 40px; }
.masthead { font-family: var(--f-sans); font-weight: 800; line-height: .84; letter-spacing: -.035em; text-transform: uppercase; }
.masthead__a { color: var(--navy); font-size: clamp(38px, 12vw, 176px); display: block; }
.masthead__b { color: var(--sky); font-size: clamp(38px, 12vw, 176px); display: block; }
.masthead__c { display: flex; align-items: flex-end; justify-content: flex-end; gap: 18px; margin-top: 8px; }
.masthead__issue { font-weight: 400; font-size: clamp(44px, 10vw, 140px); line-height: .8; letter-spacing: -.03em; color: #3d86c9; }
.masthead__issue b { font-weight: 800; color: var(--sky); }
.masthead__org { font: 500 clamp(12px, 1.3vw, 16px)/1.3 var(--f-sans); color: var(--navy); text-transform: none; letter-spacing: 0; padding-bottom: 8px; }
.hero__cover { align-self: end; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; }
.hero__title { font-family: var(--f-sans); font-weight: 800; font-size: clamp(46px, 9vw, 132px); line-height: .88; letter-spacing: -.03em; margin: 0; text-shadow: 0 4px 40px rgba(0,0,0,.25); }
.hero__title small { display: block; font-size: .5em; letter-spacing: -.01em; }
.hero__dek { font: 700 clamp(17px, 2vw, 24px)/1.3 var(--f-sans); color: var(--gold); margin: 18px 0 0; max-width: 560px; }
.hero__quote { margin: 0; max-width: 270px; text-align: right; font: 600 17px/1.4 var(--f-sans); }
.hero__quote::before { content: "\201C"; display: block; font: 800 72px/0.6 var(--f-serif); color: var(--gold); margin-bottom: 14px; }
.hero__quote cite { display: block; font-style: normal; font-size: 12px; margin-top: 10px; opacity: .85; border-top: 1px solid rgba(255,255,255,.5); padding-top: 8px; }
.teasers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.teaser { display: block; text-decoration: none; color: #fff; padding: 16px 16px 14px; border-radius: 12px; background: rgba(10,21,48,.34); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); transition: transform .3s var(--ease), background .3s; font-family: var(--f-sans); }
.teaser::before { content: ""; display: block; width: 36px; height: 5px; background: var(--gold); margin-bottom: 10px; }
.teaser b { display: block; font-size: 15px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.teaser span { display: block; font-size: 13px; line-height: 1.4; opacity: .9; margin-top: 4px; }
.teaser:hover { transform: translateY(-4px); background: rgba(10,21,48,.55); color: #fff; }
.scroll-cue { position: absolute; left: 50%; bottom: 14px; z-index: 3; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; }
.scroll-cue::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@media (max-width: 900px) {
  .hero__cover { grid-template-columns: 1fr; }
  .hero__quote { text-align: left; max-width: none; }
  .teasers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) { .teasers { grid-template-columns: 1fr 1fr; gap: 10px; } .teaser span { display: none; } }

/* ---------- typography ---------- */
.kicker { font: 700 12px/1 var(--f-sans); letter-spacing: .28em; text-transform: uppercase; color: var(--teal-700); display: inline-flex; align-items: center; gap: 14px; margin: 0 0 18px; }
.kicker::before, .kicker::after { content: ""; width: 1px; height: 22px; background: currentColor; opacity: .6; }
.kicker--plain::before, .kicker--plain::after { display: none; }
.kicker--gold { color: var(--gold); }
.kicker--sky { color: var(--sky); }
.section--navy .kicker, .section--deep .kicker { color: var(--teal); }
.eyebrow { font: 700 13px/1 var(--f-sans); letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin: 0 0 12px; display: flex; gap: 10px; align-items: center; }
.eyebrow::before { content: ""; width: 28px; height: 5px; background: var(--gold); }
.h-display { font: 800 clamp(40px, 6.6vw, 88px)/.95 var(--f-sans); letter-spacing: -.025em; text-transform: uppercase; margin: 0 0 24px; color: var(--navy); }
.h-display--teal { color: var(--teal-700); }
.h-1 { font: 800 clamp(32px, 4.4vw, 56px)/1.04 var(--f-sans); letter-spacing: -.02em; margin: 0 0 20px; color: var(--navy); }
.h-2 { font: 800 clamp(24px, 2.8vw, 34px)/1.12 var(--f-sans); letter-spacing: -.01em; margin: 0 0 14px; color: var(--navy); }
.h-3 { font: 700 20px/1.25 var(--f-sans); margin: 0 0 8px; color: var(--navy); }
.section--navy .h-display, .section--navy .h-1, .section--navy .h-2, .section--navy .h-3,
.section--deep .h-display, .section--deep .h-1, .section--deep .h-2, .section--deep .h-3 { color: #fff; }
.dek { font: 500 clamp(18px, 1.8vw, 22px)/1.5 var(--f-sans); color: var(--ink-2); margin: 0 0 18px; max-width: 820px; }
.section--navy .dek, .section--deep .dek { color: #c7d3ea; }
.byline { font: 600 14px/1.4 var(--f-sans); color: var(--muted); margin: 0 0 8px; }
.byline b { color: var(--navy); }
.section--navy .byline b, .section--deep .byline b { color: var(--gold); }
.prose p { margin: 0 0 1.15em; }
.prose h3 { font: 800 22px/1.25 var(--f-sans); color: var(--navy); margin: 1.8em 0 .6em; letter-spacing: -.01em; }
.section--navy .prose h3, .section--deep .prose h3 { color: #fff; }
.prose.dropcap > p:first-of-type::first-letter { float: left; font: 800 4.2em/.8 var(--f-sans); color: var(--teal-700); margin: .06em .1em 0 0; }
.prose strong { font-weight: 700; }
.note { font: 500 13px/1.5 var(--f-sans); color: var(--muted); }
.source { font: 500 12px/1.4 var(--f-sans); color: var(--muted); margin-top: 10px; }
.lead { font-size: 21px; line-height: 1.6; }

.pull { margin: 48px auto; padding: 0 0 0 28px; border-left: 5px solid var(--gold); font: 700 clamp(20px, 2.2vw, 26px)/1.35 var(--f-sans); color: var(--navy); max-width: 820px; }
.pull cite { display: block; font: 600 14px/1.4 var(--f-sans); font-style: normal; color: var(--muted); margin-top: 12px; }
.section--navy .pull, .section--deep .pull { color: #fff; }
.section--navy .pull cite, .section--deep .pull cite { color: #a8b7d6; }
.pull--teal { border-color: var(--teal); color: var(--teal-700); }

/* ---------- header blocks ---------- */
.feature-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 72px); align-items: center; margin-bottom: 56px; }
.feature-head__media { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.feature-head__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-head--flip { grid-template-columns: .9fr 1.1fr; }
.feature-head--flip .feature-head__media { order: -1; }
@media (max-width: 860px) { .feature-head, .feature-head--flip { grid-template-columns: 1fr; } .feature-head__media { aspect-ratio: 16/10; } .feature-head--flip .feature-head__media { order: 0; } }

.banner { position: relative; min-height: 78vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.banner__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,21,48,.9) 0%, rgba(10,21,48,.45) 45%, rgba(10,21,48,.05) 100%); }
.banner__inner { position: relative; z-index: 2; padding: 120px 0 64px; }
.banner .h-display, .banner .h-1 { color: #fff; }
.banner .dek { color: #dce5f5; }
.banner .kicker { color: var(--gold); }

/* ---------- stat tiles ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.stat { background: var(--surface); border-radius: var(--r); padding: 22px 22px 20px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.stat__value { font: 800 clamp(34px, 3.6vw, 48px)/1 var(--f-sans); color: var(--navy); letter-spacing: -.02em; }
.stat__value small { font-size: .5em; font-weight: 700; letter-spacing: 0; margin-left: 2px; }
.stat__label { font: 500 14px/1.45 var(--f-sans); color: var(--ink-2); margin-top: 10px; }
.stat::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.stat--teal::before { background: var(--teal); }
.stat--sky::before { background: var(--sky); }
.section--navy .stat, .section--deep .stat { background: rgba(255,255,255,.06); box-shadow: none; border: 1px solid rgba(255,255,255,.12); }
.section--navy .stat__value, .section--deep .stat__value { color: #fff; }
.section--navy .stat__label, .section--deep .stat__label { color: #c2cee6; }

/* ---------- figure cards ---------- */
.fig { background: var(--surface); border-radius: 20px; box-shadow: var(--shadow); padding: clamp(18px, 3vw, 32px); margin: 40px 0; }
.fig__head { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.fig__title { font: 800 21px/1.25 var(--f-sans); color: var(--navy); margin: 0; }
.fig__sub { font: 500 14px/1.45 var(--f-sans); color: var(--muted); margin: 4px 0 0; }
.fig__controls { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.seg { display: inline-flex; background: #f0efea; border-radius: 999px; padding: 3px; }
.seg button { border: 0; background: none; padding: 7px 14px; border-radius: 999px; font: 600 13px var(--f-sans); color: var(--ink-2); cursor: pointer; transition: background .2s, color .2s; }
.seg button[aria-pressed="true"] { background: var(--navy); color: #fff; }
.legend { display: flex; flex-wrap: wrap; gap: 6px 8px; margin: 0 0 12px; padding: 0; list-style: none; }
.legend button { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 5px 12px 5px 8px; font: 600 13px var(--f-sans); color: var(--ink); cursor: pointer; transition: opacity .2s, border-color .2s; }
.legend button:hover { border-color: #c9c8c2; }
.legend button[aria-pressed="false"] { opacity: .45; }
.legend button[aria-pressed="false"] .sw { background: transparent !important; box-shadow: inset 0 0 0 2px var(--muted); }
.sw { width: 12px; height: 12px; border-radius: 4px; flex: none; }
.chart { position: relative; width: 100%; }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.chart .axis text { font: 500 12px var(--f-sans); fill: var(--muted); font-variant-numeric: tabular-nums; }
.chart .axis path, .chart .axis line { stroke: var(--grid); }
.chart .grid line { stroke: var(--grid); }
.chart .axis-title { font: 600 12px var(--f-sans); fill: var(--muted); }
.chart .lbl { font: 700 12px var(--f-sans); pointer-events: none; }
.chart .lbl-out { font: 700 13px var(--f-sans); fill: var(--ink); pointer-events: none; }
.chart .anno { font: 600 12px var(--f-sans); fill: var(--ink-2); }
.chart .anno-line { stroke: var(--ink-2); stroke-width: 1; fill: none; }
.fig__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin-top: 8px; }
.linkbtn { background: none; border: 0; padding: 4px 0; font: 600 13px var(--f-sans); color: var(--navy); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.dtable { width: 100%; border-collapse: collapse; font: 500 14px/1.4 var(--f-sans); margin-top: 12px; font-variant-numeric: tabular-nums; }
.dtable th, .dtable td { padding: 8px 10px; text-align: right; border-bottom: 1px solid var(--line); }
.dtable th:first-child, .dtable td:first-child { text-align: left; }
.dtable thead th { font-weight: 700; color: var(--navy); background: #f7f6f2; }
.dtable-wrap { overflow-x: auto; }

/* tooltip */
.tt { position: fixed; z-index: 80; pointer-events: none; background: var(--navy-950); color: #fff; border-radius: 10px; padding: 10px 12px; font: 500 13px/1.4 var(--f-sans); box-shadow: 0 10px 30px rgba(0,0,0,.25); opacity: 0; transform: translateY(4px); transition: opacity .12s, transform .12s; max-width: 280px; }
.tt.is-on { opacity: 1; transform: none; }
.tt b { font-weight: 700; }
.tt .tt-h { font-weight: 800; margin-bottom: 6px; font-size: 13px; }
.tt .tt-row { display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.tt .tt-row span:first-child { display: inline-flex; gap: 6px; align-items: center; }
.tt .tt-row i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.tt .tt-tot { border-top: 1px solid rgba(255,255,255,.25); margin-top: 6px; padding-top: 6px; }

/* ---------- Q&A ---------- */
.qa { margin: 32px 0; border-top: 1px solid var(--line); }
.qa details { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font: 700 18px/1.4 var(--f-sans); color: var(--navy); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%; background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6 11h10M11 6v10' stroke='%23176974' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/100% no-repeat; transition: transform .3s var(--ease); }
.qa details[open] summary::after { transform: rotate(45deg); }
.qa summary:hover { color: var(--teal-700); }
.qa .ans { padding: 0 0 20px; }
.qa .ans p { margin: 0 0 1em; }
.qa .who { font: 800 13px var(--f-sans); letter-spacing: .06em; color: var(--teal-700); margin-right: 6px; }
.qa-tools { display: flex; justify-content: flex-end; gap: 16px; }
.section--navy .qa, .section--navy .qa details { border-color: rgba(255,255,255,.15); }
.section--navy .qa summary { color: #fff; }

/* ---------- people ---------- */
.person { display: flex; gap: 18px; align-items: center; background: var(--surface); border-radius: var(--r); padding: 16px; box-shadow: var(--shadow); }
.person__img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: top; flex: none; background: var(--sky-200); }
.person__name { font: 800 17px/1.2 var(--f-sans); color: var(--navy); margin: 0; }
.person__role { font: 500 13px/1.45 var(--f-sans); color: var(--muted); margin: 4px 0 0; }
.bio { background: var(--mint); border-radius: var(--r); padding: 20px 22px; font: 500 14.5px/1.6 var(--f-sans); color: var(--ink-2); }
.bio h4 { font: 800 16px var(--f-sans); color: var(--teal-700); margin: 0 0 6px; }

/* ---------- misc components ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 48px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); }
.card--mint { background: var(--mint); box-shadow: none; }
.card h4 { font: 800 18px/1.3 var(--f-sans); color: var(--navy); margin: 0 0 8px; }
.card p { margin: 0; font: 500 15px/1.6 var(--f-sans); color: var(--ink-2); }
.chip { display: inline-flex; align-items: center; gap: 6px; font: 600 12px/1 var(--f-sans); padding: 7px 11px; border-radius: 999px; background: var(--mint); color: var(--teal-700); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.takeaways { background: var(--navy); color: #fff; border-radius: 20px; padding: 28px; position: relative; overflow: hidden; }
.takeaways h3 { font: 800 20px var(--f-sans); margin: 0 0 14px; color: var(--gold); }
.takeaways ul { margin: 0; padding: 0; list-style: none; font: 500 15.5px/1.55 var(--f-sans); }
.takeaways li { padding: 12px 0 12px 30px; border-top: 1px solid rgba(255,255,255,.15); position: relative; }
.takeaways li::before { content: ""; position: absolute; left: 0; top: 18px; width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--gold); }
.callout { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; background: var(--surface); border-left: 6px solid var(--navy); border-radius: 0 var(--r) var(--r) 0; padding: 22px 24px; box-shadow: var(--shadow); font-family: var(--f-sans); }
.callout img { width: 72px; }
.callout h4 { margin: 0 0 6px; font: 800 17px var(--f-sans); color: var(--navy); }
.callout p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.readmore { display: inline-flex; gap: 8px; align-items: center; font: 700 14px var(--f-sans); color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.btn { display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer; background: var(--navy); color: #fff; font: 700 14px var(--f-sans); padding: 11px 18px; border-radius: 999px; text-decoration: none; transition: background .2s, transform .2s; }
.btn:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }

/* tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tab { border: 0; cursor: pointer; padding: 11px 18px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line); font: 700 14px var(--f-sans); color: var(--ink-2); transition: all .2s; }
.tab:hover { box-shadow: inset 0 0 0 1.5px var(--navy); }
.tab[aria-selected="true"] { background: var(--navy); color: #fff; box-shadow: none; }
.tabpanel[hidden] { display: none; }
.tabpanel { animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- contents ---------- */
.toc { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.toc a { grid-column: span 4; position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 230px; padding: 20px; border-radius: 18px; overflow: hidden; color: #fff; text-decoration: none; background: var(--navy) center/cover; isolation: isolate; font-family: var(--f-sans); transition: transform .35s var(--ease), box-shadow .35s; }
.toc a::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,21,48,.92) 0%, rgba(10,21,48,.35) 60%, rgba(10,21,48,.1) 100%); transition: background .35s; }
.toc a:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.toc a.big { grid-column: span 8; grid-row: span 2; min-height: 476px; }
.toc a.big b { font-size: clamp(28px, 3.4vw, 44px); line-height: 1; }
.toc .pg { position: absolute; top: 16px; left: 18px; font: 800 13px var(--f-sans); letter-spacing: .08em; background: var(--gold); color: var(--navy-950); padding: 5px 9px; border-radius: 999px; }
.toc .sec { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.toc b { display: block; font-size: 20px; line-height: 1.15; margin: 6px 0 4px; font-weight: 800; }
.toc span.d { font-size: 13px; line-height: 1.45; opacity: .9; }
@media (max-width: 900px) { .toc a, .toc a.big { grid-column: span 6; grid-row: auto; min-height: 220px; } }
@media (max-width: 560px) { .toc a, .toc a.big { grid-column: span 12; } }

/* ---------- waffle ---------- */
.waffle { display: grid; grid-template-columns: repeat(10, 1fr); gap: 3px; width: clamp(110px, 14vw, 190px); }
.waffle i { aspect-ratio: 1; border-radius: 3px; background: rgba(255,255,255,.12); transition: background .5s var(--ease); }
.waffle i.on { background: var(--gold); }
.waffle--light i { background: #e5e4df; }
.waffle--light i.on { background: var(--navy); }

/* ---------- policy dial ---------- */
.dial { background: var(--navy-900); color: #fff; border-radius: 22px; padding: clamp(20px, 3vw, 34px); }
.dial__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0 26px; }
@media (max-width: 700px) { .dial__row { grid-template-columns: 1fr; } }
.lever { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 16px; font-family: var(--f-sans); }
.lever h4 { margin: 0 0 4px; font: 800 16px var(--f-sans); color: var(--gold); }
.lever p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.5; color: #c5d1e8; }
.lever .seg { background: rgba(255,255,255,.1); }
.lever .seg button { color: #dbe3f3; }
.lever .seg button[aria-pressed="true"] { background: var(--gold); color: var(--navy-950); }
.gauge { position: relative; height: 64px; margin: 8px 0 6px; }
.gauge__track { position: absolute; left: 0; right: 0; top: 26px; height: 12px; border-radius: 999px; background: linear-gradient(90deg, #7bb9ae, #efc850 55%, #d9954f 80%, #b76859); }
.gauge__needle { position: absolute; top: 12px; width: 4px; height: 40px; margin-left: -2px; background: #fff; border-radius: 2px; box-shadow: 0 0 0 3px var(--navy-900); transition: left .8s var(--ease); }
.gauge__needle::after { content: attr(data-label); position: absolute; bottom: 48px; left: 50%; transform: translateX(var(--tx, -50%)); font: 800 14px var(--f-sans); white-space: nowrap; background: #fff; color: var(--navy-950); padding: 4px 8px; border-radius: 6px; }
.gauge__ends { display: flex; justify-content: space-between; font: 700 14px var(--f-sans); color: #fff; }
.gauge__ends span small { display: block; font-weight: 500; font-size: 12px; color: #9fb1d3; }
.dial__msg { font: 500 15px/1.55 var(--f-sans); color: #dbe3f3; min-height: 3.2em; margin-top: 16px; }

/* ---------- map ---------- */
.mapwrap { display: grid; grid-template-columns: 1.55fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .mapwrap { grid-template-columns: 1fr; } }
.map { position: relative; background: #eef4f2; border-radius: 16px; overflow: hidden; }
.map svg { display: block; width: 100%; height: auto; }
.map .land { fill: #cadfd9; stroke: #eef4f2; stroke-width: .5; }
.map .land.hl { fill: var(--teal); cursor: pointer; transition: fill .2s; }
.map .land.hl:hover, .map .land.hl.is-active { fill: var(--teal-700); }
.map .land.gulf { fill: #e6c67a; }
.map .pin { cursor: pointer; }
.map .pin circle.dot { fill: var(--navy); stroke: #fff; stroke-width: 2; transition: r .2s; }
.map .pin circle.halo { fill: var(--navy); opacity: .18; }
.map .pin.is-active circle.dot { fill: var(--gold); stroke: var(--navy); }
.map .pin text { font: 700 11px var(--f-sans); fill: var(--navy-950); paint-order: stroke; stroke: rgba(255,255,255,.85); stroke-width: 3px; pointer-events: none; }
.map .maplabel { font: 800 12px var(--f-sans); fill: #fff; pointer-events: none; letter-spacing: .02em; }
.map .maplabel.dark { fill: var(--navy-950); }
.pulse { animation: pulse 2.2s infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2.4); opacity: 0; } }
.panel { background: var(--surface); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); font-family: var(--f-sans); display: flex; flex-direction: column; }
.panel__k { font: 700 11px var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--teal-700); margin: 0; }
.panel h3 { font: 800 30px/1.05 var(--f-sans); color: var(--navy); margin: 6px 0 10px; }
.panel p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 12px; }
.panel .mini { margin-top: auto; padding-top: 12px; }
.mapnav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* mini bars */
.mbar { display: grid; grid-template-columns: 110px 1fr 58px; gap: 10px; align-items: center; font: 600 13px var(--f-sans); margin: 7px 0; }
.mbar__t { height: 14px; background: #eeede8; border-radius: 0 4px 4px 0; overflow: hidden; }
.mbar__f { height: 100%; background: var(--navy); border-radius: 0 4px 4px 0; width: 0; transition: width 1s var(--ease); }
.mbar__v { text-align: right; font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; }

/* ---------- flow diagram (SIDS) ---------- */
.flow { display: grid; grid-template-columns: 1fr auto 1.6fr; gap: 0 18px; align-items: center; }
.flow__src { display: grid; gap: 10px; }
.flow__src div { background: var(--navy); color: #fff; border-radius: 12px; padding: 14px 16px; font: 800 15px var(--f-sans); }
.flow__src div small { display: block; font-weight: 500; font-size: 12px; color: #b9c8e4; }
.flow__arrow { width: 60px; height: 100%; }
.flow__out { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.flow__out button { text-align: left; border: 0; cursor: pointer; background: #fff; border-radius: 12px; padding: 14px; box-shadow: var(--shadow); font-family: var(--f-sans); transition: transform .2s, box-shadow .2s, background .2s; }
.flow__out button b { display: block; font: 800 15px var(--f-sans); color: var(--navy); }
.flow__out button span { display: block; font: 500 13px/1.45 var(--f-sans); color: var(--muted); margin-top: 4px; }
.flow__out button[aria-pressed="true"] { background: var(--navy); }
.flow__out button[aria-pressed="true"] b { color: var(--gold); }
.flow__out button[aria-pressed="true"] span { color: #d7e1f3; }
.flow__detail { grid-column: 1 / -1; margin-top: 16px; background: var(--mint); border-radius: 14px; padding: 16px 20px; font: 500 15px/1.6 var(--f-sans); color: var(--ink-2); min-height: 80px; }
@media (max-width: 800px) { .flow { grid-template-columns: 1fr; } .flow__arrow { display: none; } .flow__out { margin-top: 12px; } }

/* region panel */
.region { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 860px) { .region { grid-template-columns: 1fr; } }
.region__facts { display: grid; gap: 10px; }
.fact { display: grid; grid-template-columns: 28px 1fr; gap: 10px; font: 500 15px/1.55 var(--f-sans); color: var(--ink-2); }
.fact i { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; font: 800 13px/28px var(--f-sans); text-align: center; font-style: normal; }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 24px; font-family: var(--f-sans); transition: transform .3s var(--ease), background .3s; }
.pillar:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.pillar .n { font: 800 44px/1 var(--f-sans); color: var(--gold); }
.pillar h4 { font: 800 19px/1.25 var(--f-sans); margin: 10px 0 8px; color: #fff; }
.pillar p { margin: 0; font-size: 14.5px; line-height: 1.55; color: #c9d5ec; }
.pillar--light { background: #fff; border: 0; box-shadow: var(--shadow); }
.pillar--light h4 { color: var(--navy); }
.pillar--light p { color: var(--ink-2); }
.pillar--light .n { color: var(--teal-700); }

/* toggle view (two perspectives) */
.persp { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.persp > div { padding: 28px; font: 500 15.5px/1.65 var(--f-sans); color: var(--ink-2); transition: opacity .35s, filter .35s; }
.persp > div h4 { font: 800 18px var(--f-sans); margin: 0 0 10px; color: var(--navy); }
.persp > div:last-child { background: #fbf5e3; }
.persp.focus-a > div:last-child, .persp.focus-b > div:first-child { opacity: .35; filter: grayscale(1); }
@media (max-width: 800px) { .persp { grid-template-columns: 1fr; } }

/* ---------- digital risk ---------- */
.dr { background: #111b3f; color: #e2e8f7; position: relative; overflow: hidden; }
.dr__pixels { position: absolute; inset: 0; pointer-events: none; opacity: .55; }
.dr .h-display { color: #fff; text-shadow: 4px 4px 0 var(--teal-700), -3px -2px 0 rgba(105,168,222,.6); }
.dr .kicker { color: var(--teal); }
.dr .prose { color: #d4dcf0; }
.dr .prose h3 { color: #fff; }
.dr .pull { color: #fff; border-color: var(--teal); }
.ring { position: relative; width: min(560px, 90vw); aspect-ratio: 1; margin: 0 auto; }
.ring svg { width: 100%; height: 100%; }
.ring .node { cursor: pointer; }
.ring .node circle { fill: #1a2a5e; stroke: var(--teal); stroke-width: 2; transition: fill .25s, stroke .25s; }
.ring .node.is-active circle, .ring .node:hover circle { fill: var(--teal); stroke: #fff; }
.ring .node text { font: 800 12.5px var(--f-sans); fill: #fff; text-anchor: middle; pointer-events: none; }
.ring .edge { stroke: rgba(123,185,174,.35); stroke-width: 2; fill: none; }
.ring .edge.is-hot { stroke: var(--gold); stroke-width: 3; stroke-dasharray: 6 6; animation: dash 1s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -12; } }
.ring .core { fill: #0b1330; stroke: rgba(255,255,255,.2); }
.ring .core-t { font: 800 14px var(--f-sans); fill: #fff; text-anchor: middle; }
.ring .core-s { font: 500 11px var(--f-sans); fill: #9fb1d3; text-anchor: middle; }
.drcard { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 24px; font-family: var(--f-sans); }
.drcard .yr { font: 800 13px var(--f-sans); letter-spacing: .1em; color: var(--gold); }
.drcard h4 { font: 800 22px/1.2 var(--f-sans); color: #fff; margin: 6px 0 10px; }
.drcard p { font-size: 15px; line-height: 1.6; color: #c9d4ec; margin: 0; }
.timeline { position: relative; display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding: 24px 0 8px; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.timeline::-webkit-scrollbar, .events::-webkit-scrollbar { display: none; }
.tl { flex: 0 0 220px; align-self: flex-start; scroll-snap-align: start; position: relative; padding: 32px 18px 0 0; font-family: var(--f-sans); background: none; border: 0; text-align: left; cursor: pointer; color: inherit; }
.tl::after { content: ""; position: absolute; top: 15px; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.18); }
.tl:last-child::after { right: auto; width: 20px; }
.tl::before { content: ""; position: absolute; z-index: 1; top: 9px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: #111b3f; border: 3px solid var(--teal); transition: background .2s, transform .2s; }
.tl:hover::before, .tl[aria-pressed="true"]::before { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }
.tl b { font: 800 22px var(--f-sans); color: #fff; display: block; }
.tl span { display: block; font-size: 13px; line-height: 1.45; color: #aebcd9; margin-top: 4px; }
.people10 { display: flex; gap: 6px; align-items: flex-end; flex-wrap: wrap; }
.people10 svg { width: 26px; height: 44px; }
.people10 svg path { fill: rgba(255,255,255,.18); transition: fill .4s var(--ease); }
.people10 svg.on path { fill: var(--gold); }
.people10 svg.first path { fill: var(--teal); }

/* ---------- survey bars (ODI) ---------- */
.hbar-row { display: grid; grid-template-columns: minmax(150px, 280px) 1fr; gap: 16px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-family: var(--f-sans); cursor: default; }
.hbar-row:last-child { border-bottom: 0; }
.hbar-row .lab { font: 600 14.5px/1.35 var(--f-sans); color: var(--ink); }
.hbar-row .track { position: relative; height: 22px; }
.hbar-row .fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--navy); border-radius: 0 4px 4px 0; width: 0; transition: width 1.1s var(--ease); }
.hbar-row .fill.alt { background: var(--teal-700); }
.hbar-row .val { position: absolute; top: 50%; transform: translateY(-50%); font: 800 14px var(--f-sans); color: var(--ink); padding-left: 8px; transition: left 1.1s var(--ease); }
.hbar-row:hover .lab { color: var(--navy); }

/* ---------- people / quotes carousel ---------- */
.quotes { position: relative; }
.quote-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: var(--shadow); font: 600 20px/1.45 var(--f-sans); color: var(--navy); }
.quote-card cite { display: block; margin-top: 12px; font: 500 14px var(--f-sans); color: var(--muted); font-style: normal; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.dots button { width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 0; background: #cfd4df; cursor: pointer; }
.dots button[aria-pressed="true"] { background: var(--navy); width: 26px; border-radius: 6px; }

/* stacked share bar */
.share { display: flex; height: 44px; border-radius: 10px; overflow: hidden; gap: 2px; font: 700 13px var(--f-sans); }
.share div { display: flex; align-items: center; padding: 0 12px; color: #fff; white-space: nowrap; transition: flex-grow 1s var(--ease); min-width: 0; overflow: hidden; }

/* Mottley fund */
.fund { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.fund > div { background: #fff; border-radius: 14px; padding: 18px; box-shadow: var(--shadow); font-family: var(--f-sans); text-align: center; }
.fund b { display: block; font: 800 30px var(--f-sans); color: var(--navy); }
.fund span { font-size: 13px; color: var(--ink-2); line-height: 1.4; display: block; margin-top: 4px; }
.fund .eq { background: var(--navy); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.fund .eq b { color: var(--gold); font-size: 20px; }
.fund .eq span { color: #cbd6ec; }
@media (max-width: 800px) { .fund { grid-template-columns: 1fr 1fr; } }

.tenor { font-family: var(--f-sans); }
.tenor-row { display: grid; grid-template-columns: 150px 1fr; gap: 12px; align-items: center; margin: 12px 0; font-size: 14px; font-weight: 600; }
.tenor-t { position: relative; height: 26px; background: #eeede8; border-radius: 0 6px 6px 0; }
.tenor-loan, .tenor-life { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 0 6px 6px 0; transition: width 1.2s var(--ease); width: 0; }
.tenor-life { background: var(--sky-200); }
.tenor-loan { background: var(--navy); display: flex; align-items: center; justify-content: flex-end; padding-right: 8px; color: #fff; font-size: 12px; font-weight: 700; white-space: nowrap; }
.tenor-t .end { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 12px; font-weight: 700; color: var(--navy); }

/* news */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }
.news { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; font-family: var(--f-sans); transition: transform .3s var(--ease), box-shadow .3s, opacity .3s; cursor: pointer; border: 2px solid transparent; }
.news:hover, .news.is-active { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news.is-active { border-color: var(--gold); }
.news.is-dim { opacity: .35; }
.news__img { aspect-ratio: 16/9; background: var(--mint) center/cover; position: relative; }
.news__amt { position: absolute; left: 12px; bottom: 12px; background: var(--gold); color: var(--navy-950); font: 800 15px var(--f-sans); padding: 6px 10px; border-radius: 8px; }
.news__body { padding: 16px 18px 18px; }
.news__body .c { font: 700 11px var(--f-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--teal-700); }
.news__body h4 { font: 800 17px/1.25 var(--f-sans); color: var(--navy); margin: 6px 0 8px; }
.news__body p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* events carousel */
.events { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 380px); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 22px; scrollbar-width: none; }
.event { scroll-snap-align: start; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); font-family: var(--f-sans); display: flex; flex-direction: column; }
.event__img { aspect-ratio: 4/3; background: center/cover; position: relative; }
.event__tag { position: absolute; top: 12px; right: 12px; width: 92px; height: 92px; border-radius: 50%; background: var(--sky); color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; font: 800 11px/1.2 var(--f-sans); padding: 10px; box-shadow: 0 0 0 4px rgba(255,255,255,.8); }
.event__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event__body h4 { font: 800 19px/1.25 var(--f-sans); color: var(--navy); margin: 0; }
.event__body p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.event__nums { display: flex; flex-wrap: wrap; gap: 16px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.event__nums div b { display: block; font: 800 22px var(--f-sans); color: var(--teal-700); }
.event__nums div span { font-size: 12px; color: var(--muted); }
.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff; box-shadow: var(--shadow); cursor: pointer; font: 800 18px var(--f-sans); color: var(--navy); }
.carousel-nav button:hover { background: var(--navy); color: #fff; }

/* review */
.book { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center; }
.book img { border-radius: 6px; box-shadow: 12px 16px 40px rgba(0,0,0,.25); transform: rotate(-3deg); transition: transform .4s var(--ease); }
.book img:hover { transform: rotate(0) scale(1.03); }
@media (max-width: 640px) { .book { grid-template-columns: 1fr; } .book img { width: 160px; } }
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vs > div { border-radius: 18px; padding: 24px; font-family: var(--f-sans); }
.vs h4 { font: 800 20px var(--f-sans); margin: 0 0 12px; }
.vs ol { margin: 0; padding-left: 20px; font-size: 14.5px; line-height: 1.6; }
.vs li { margin-bottom: 8px; }
@media (max-width: 760px) { .vs { grid-template-columns: 1fr; } }

/* footer */
.footer { background: var(--navy-950); color: #b9c6e0; padding: 72px 0 40px; font-family: var(--f-sans); font-size: 14px; line-height: 1.6; }
.footer .logo .n { fill: #fff; }
.footer a { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h5 { font: 800 12px var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.footer small { display: block; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; color: #8a99bb; }

/* misc helpers */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 40px; }
.center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.round-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.round-img img { width: 100%; height: 100%; object-fit: cover; }
.caption { font: 500 12.5px/1.4 var(--f-sans); color: var(--muted); margin-top: 8px; }
.divider { height: 1px; background: var(--line); margin: 56px 0; border: 0; }
.bignum { font: 800 clamp(64px, 11vw, 150px)/.9 var(--f-sans); letter-spacing: -.04em; color: var(--navy); }
.bignum small { font-size: .35em; letter-spacing: 0; }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photo-strip figure { margin: 0; }
.photo-strip img { border-radius: 14px; aspect-ratio: 1; object-fit: cover; width: 100%; }
@media (max-width: 640px) { .photo-strip { grid-template-columns: 1fr 1fr; } }

.flowdash { animation: dash 1s linear infinite; }
.pillar .ico { width: 44px; height: 44px; color: var(--gold); }
.section--mint .bio, .section--mint .card--mint { background: #fff; }
.h-quote { font-size: clamp(28px, 3.3vw, 44px); }
.section--mint .fig .card--mint, .section--mint .fig .bio { background: var(--mint); }
.dr .byline b { color: var(--gold); } .dr .byline { color: #9fb1d3; } .dr .dek { color: #c7d3ea; } .dr .prose.dropcap > p:first-of-type::first-letter { color: var(--teal); }
.section--navy .prose.dropcap > p:first-of-type::first-letter { color: var(--gold); }
.dr .h-1, .dr .h-2, .dr .h-3 { color: #fff; }
.dr .stat { background: rgba(255,255,255,.06); box-shadow: none; border: 1px solid rgba(255,255,255,.12); }
.dr .stat__value { color: #fff; font-size: clamp(26px, 2.6vw, 36px); }
.dr .stat__label { color: #c2cee6; }
.tenor-lab { position: absolute; top: 50%; transform: translateY(-50%); font-size: 12px; font-weight: 800; color: var(--navy); white-space: nowrap; }
@media (max-width: 860px) {
  .grid-2, .grid-3, #ifpri-grid { grid-template-columns: 1fr !important; }
  #drRecs { grid-template-columns: 1fr 1fr !important; }
  .hero__dek { text-shadow: 0 2px 12px rgba(0,0,0,.55); }
}
@media (max-width: 520px) {
  .hbar-row { grid-template-columns: 1fr; gap: 6px; }
  .flow__out { grid-template-columns: 1fr; }
  .mbar { grid-template-columns: 92px 1fr 52px; }
}
.grid-2 > *, .grid-3 > *, .pillars > *, .mapwrap > *, .feature-head > *, .stats > * { min-width: 0; }
.share div { text-overflow: ellipsis; }
@media (max-width: 520px) { .share { font-size: 11px; } .share div { padding: 0 8px; } .pillar { padding: 18px; } }
@media (max-width: 520px) { .hero__quote { font-size: 15px; } .hero__quote::before { font-size: 52px; margin-bottom: 6px; } }

.hero__dek, .hero__quote { text-shadow: 0 2px 14px rgba(0,0,0,.6); }
.teaser { background: rgba(10,21,48,.55); }
@media (max-width: 560px) { .topbar { height: 68px; } .topbar__logo, .topbar__logo img { height: 54px; } .topbar__nav.is-open { top: 68px; } }

.carousel-nav button { display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s, opacity .2s; }
.carousel-nav button:disabled { opacity: .35; cursor: default; }
.carousel-nav button:disabled:hover { background: #fff; color: var(--navy); }
.carousel-nav--dark button { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.25); }
.carousel-nav--dark button:hover { background: var(--gold); color: var(--navy-950); box-shadow: none; }
.carousel-nav--dark button:disabled:hover { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.25); }

.stat__value { white-space: nowrap; }
.dr .stat__value { font-size: clamp(24px, 2.4vw, 34px); }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr !important; } }
