@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0e0d0d;
  --dark: #1c1b17;
  --cream: #f5f4f0;
  --paper: #ffffff;
  --page: #ededef;
  --yellow: #e9fe0f;
  --soft-yellow: #e2f55c;
  --grey: #6b6b6b;
  --muted: #a5a4a0;
  --border: #e5e4e0;
  --max: 1160px;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 0;
  height: 3px;
  background: var(--yellow);
}

.shell { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 110;
  padding: 16px 24px;
  color: var(--paper);
  pointer-events: none;
}

.header-inner {
  width: min(650px, 100%);
  min-height: 56px;
  margin: 0 auto;
  padding: 5px 8px 5px 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(14, 13, 13, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.site-header .brand img { width: 64px; height: auto; filter: invert(1); }
.header-desktop { width: 100%; min-width: 0; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.header-desktop > .button { min-height: 44px; padding: 8px 14px; flex: 0 0 auto; border-radius: 12px; line-height: 1; }
.header-nav { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; gap: 18px; }
.cta-actions { display: flex; align-items: center; gap: 14px; }
.header-link { font-size: 14px; font-weight: 500; white-space: nowrap; text-decoration: none; }
.header-link:hover { opacity: 0.55; }
.header-link.is-current { font-weight: 500; }
.header-menu { display: none; }

.button {
  min-height: 44px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { border-color: var(--soft-yellow); background: var(--soft-yellow); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-arrow { width: 16px; height: 16px; }

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover { border-color: var(--ink); color: var(--paper); background: var(--ink); }

.secondary-action {
  min-height: 40px;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.28em;
}

.secondary-action:hover { opacity: 0.58; }

.mobile-action-dock { display: none; }

.eyebrow, .meta, .card-meta, .section-label, .table-label, .cover-kicker {
  color: var(--grey);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Index lead panel: Holo's editorial hierarchy in Sooner's marketing system. */
.featured-section {
  margin: 0 24px 24px;
  padding: 132px 0 48px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  color: var(--paper);
  background: var(--ink);
}

.featured-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  overflow: hidden;
  border-radius: 16px;
  background: #23221f;
}

.featured-copy {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.featured-copy .meta, .featured-secondary-card .meta { color: #bdbcb7; }

.featured-copy h2 {
  max-width: 590px;
  margin: 18px 0 20px;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.featured-copy p { max-width: 520px; margin: 0; color: #c9c8c3; font-size: 17px; }

.featured-visual {
  min-height: 100%;
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #393833;
  background: var(--cream);
  text-decoration: none;
}

.receipt {
  width: min(100%, 370px);
  padding: 30px 28px 34px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  transform: rotate(1.5deg);
  transition: transform 220ms ease;
}

.featured-visual:hover .receipt { transform: rotate(0deg) scale(1.015); }
.receipt-head, .receipt-row, .receipt-total { display: flex; justify-content: space-between; gap: 18px; }

.receipt-head {
  padding-bottom: 17px;
  border-bottom: 2px solid var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.receipt-row { padding: 13px 0; border-bottom: 1px dotted #aaa8a1; font-size: 12px; }
.receipt-row span:first-child, .receipt-total span:first-child { min-width: 0; }
.receipt-row span:last-child, .receipt-total span:last-child { flex: 0 0 auto; white-space: nowrap; text-align: right; }

.receipt-total {
  margin-top: 18px;
  padding: 15px 13px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.receipt-foot {
  margin-top: 13px;
}

.receipt-foot small { color: #77756e; font-size: 8px; line-height: 1.4; }

.featured-secondary {
  margin-top: 40px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  border-top: 1px solid #393833;
}

.featured-secondary-card {
  min-width: 0;
  padding-right: 32px;
  display: block;
  text-decoration: none;
}

.featured-secondary-card + .featured-secondary-card {
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid #393833;
}

.featured-secondary-card h3 {
  margin: 9px 0 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: pretty;
}

.featured-secondary-card p {
  max-width: 500px;
  margin: 10px 0 0;
  color: #aeadA8;
  font-size: 13px;
  line-height: 1.5;
}

.mini-visual {
  min-height: 110px;
  padding: 18px;
  overflow: hidden;
  border-radius: 10px;
  color: var(--ink);
  background: var(--cream);
}

.mini-visual-rate { display: flex; flex-direction: column; justify-content: flex-end; }
.mini-visual-rate strong { font-size: 38px; letter-spacing: -0.055em; line-height: 1; }
.mini-visual-rate span { margin-top: 8px; color: var(--grey); font-size: 10px; }
.mini-visual-finance { display: grid; gap: 5px; font-family: var(--mono); font-size: 10px; }
.mini-visual-finance span { padding: 5px 7px; border: 1px solid var(--ink); }
.mini-visual-finance .is-sooner { background: var(--yellow); font-weight: 700; }

.story-section {
  margin: 0 24px 24px;
  padding: 86px 0 104px;
  border-radius: 24px;
  background: var(--paper);
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: end;
}

.story-heading h1 {
  margin: 12px 0 0;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.story-heading p { max-width: 470px; margin: 0; color: var(--grey); font-size: 17px; }

.topic-filter { margin: 38px 0 44px; display: flex; flex-wrap: wrap; gap: 9px; }

.topic-filter button {
  padding: 10px 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font: 600 13px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.topic-filter button:hover, .topic-filter button.is-active { border-color: var(--ink); background: var(--cream); }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.story-card, .related-card { min-width: 0; }
.story-card-link, .related-card { display: block; text-decoration: none; }
.story-card.is-hidden { display: none; }

.story-card-link {
  min-height: 330px;
  padding: 24px 0 4px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.story-index {
  margin-bottom: 54px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.story-card-link:hover .story-index { color: var(--ink); }

.story-read {
  margin-top: auto;
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border-radius: 6px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.story-card-link:hover .story-read { color: var(--paper); background: #2a2926; transform: translateY(-2px); }

.story-visual {
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  padding: 26px;
  border-radius: 12px;
  background: var(--cream);
  transition: transform 190ms ease;
}

.story-card-link:hover .story-visual { transform: translateY(-4px); }

.story-card h3, .related-card h3 {
  margin: 12px 0 0;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
  text-wrap: pretty;
}

.story-card p { margin: 10px 0 0; color: var(--grey); font-size: 14px; line-height: 1.55; }
.story-card .card-meta { margin-top: 0; }

.visual-number {
  position: absolute;
  left: 26px;
  bottom: 20px;
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.visual-number span {
  display: block;
  margin-bottom: 11px;
  color: var(--grey);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.visual-number mark { padding: 0 0.07em; color: var(--ink); background: var(--yellow); }
.rate-lines { margin: 24px 0 0; display: grid; gap: 13px; }

.rate-line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
}

.rate-track { height: 15px; border: 1px solid var(--ink); }
.rate-fill { width: 81%; height: 100%; background: var(--ink); }
.rate-line.is-sooner .rate-fill { width: 63%; background: var(--yellow); }

.advisor-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  transform: rotate(-5deg);
}

.finance-stack { position: absolute; inset: 28px 24px auto; display: grid; gap: 8px; }

.finance-option {
  padding: 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

.finance-option.is-expensive { color: var(--paper); background: var(--ink); }
.finance-option.is-sooner { color: var(--ink); background: var(--yellow); }
.finance-option small { color: inherit; font-family: var(--mono); font-size: 9px; font-weight: 500; }

/* Article shell: Holo-like split masthead, body and right rail. */
.article-page main {
  margin: 0 24px 24px;
  overflow: clip;
  border-radius: 0 0 24px 24px;
  background: var(--paper);
}

.article-hero { padding: 140px 0 70px; color: var(--paper); background: var(--ink); }

.article-hero-grid {
  min-height: 455px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.82fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
}

.article-hero-copy { min-width: 0; }
.breadcrumbs { margin-bottom: 42px; color: #c9c8c3; font-size: 13px; }
.breadcrumbs a { font-weight: 600; text-decoration: none; }
.breadcrumbs a:hover { color: var(--yellow); }
.article-hero .eyebrow { color: #bdbcb7; }

.article-hero h1 {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: clamp(42px, 4.7vw, 66px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.article-standfirst {
  max-width: 650px;
  margin: 25px 0 0;
  color: #c9c8c3;
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.article-meta-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: #9f9e99; font-size: 12px; }
.article-meta-row span + span::before { margin-right: 20px; content: "\2022"; }

.article-hero-visual {
  min-height: 380px;
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  color: var(--ink);
  background: var(--cream);
}

.article-hero-visual .receipt { margin: auto; }

.text-cover-inner {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
}

.text-cover-inner span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-cover-inner strong {
  max-width: 480px;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.agent-cover strong {
  margin: 8px 0 38px;
  font-size: clamp(70px, 8vw, 116px);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.cashback-cover strong {
  max-width: 380px;
  margin: 12px 0 34px;
  font-size: clamp(52px, 6vw, 86px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.cashback-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.25fr);
  gap: 10px;
  align-items: stretch;
  font-family: var(--mono);
  font-size: 10px;
}

.cashback-flow span {
  padding: 13px;
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.cashback-flow span.is-sooner {
  background: var(--yellow);
  font-weight: 700;
}

.cashback-flow i {
  align-self: center;
  font-family: var(--mono);
  font-size: 18px;
  font-style: normal;
}

.cover-rate-row { margin-top: 13px; display: grid; grid-template-columns: 68px 1fr; gap: 14px; align-items: center; font-family: var(--mono); font-size: 12px; }
.cover-rate-row i { width: var(--bar); height: 19px; display: block; background: var(--ink); }
.cover-rate-row.is-sooner i { background: var(--yellow); }
.cover-caption { margin-top: 34px; font-size: 15px; font-weight: 700; }
.finance-cover { gap: 10px; }
.finance-cover .cover-kicker { margin-bottom: 14px; }

.cover-option {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 14px;
  font-weight: 700;
}

.cover-option.is-sooner { background: var(--yellow); }
.cover-option small { font-family: var(--mono); font-size: 10px; font-weight: 500; }

.article-layout {
  width: min(1040px, calc(100% - 64px));
  margin: 0 auto;
  padding: 84px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 710px) 270px;
  gap: 60px;
  align-items: start;
}

.toc { position: sticky; top: 112px; grid-column: 2; grid-row: 1; }

.toc-cta {
  margin-bottom: 34px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.toc-cta strong { font-size: 17px; line-height: 1.35; }
.toc-cta span { margin: 9px 0 19px; color: var(--grey); font-size: 13px; line-height: 1.5; }
.toc-cta .button { width: 100%; }
.toc-cta .cta-actions { display: grid; grid-template-columns: 1fr; gap: 6px; }
.toc-cta .secondary-action { color: var(--ink); }
.toc-title { margin-bottom: 17px; color: var(--grey); font-size: 13px; font-weight: 700; }

.toc ol {
  margin: 0;
  padding: 0 0 0 16px;
  display: grid;
  gap: 11px;
  border-left: 1px solid var(--border);
  list-style: none;
}

.toc ol a { display: block; color: var(--grey); font-size: 12px; line-height: 1.4; text-decoration: none; }
.toc ol a:hover, .toc ol a.is-active { color: var(--ink); }
.mobile-reading-tools { display: none; }
.toc-mobile { display: none; }
.prose { min-width: 0; grid-column: 1; grid-row: 1; }
.prose > :first-child { margin-top: 0; }

.prose h2 {
  margin: 62px 0 18px;
  scroll-margin-top: 32px;
  font-size: clamp(29px, 3.3vw, 39px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: pretty;
}

.prose h3 { margin: 36px 0 12px; scroll-margin-top: 32px; font-size: 21px; letter-spacing: -0.02em; line-height: 1.25; }
.prose p, .prose li { font-size: 17px; line-height: 1.72; }
.prose p { margin: 0 0 22px; }
.prose ul, .prose ol:not(.source-list) { margin: 16px 0 28px; padding-left: 24px; }
.prose li + li { margin-top: 9px; }
.prose a:not(.button) { font-weight: 600; }
.prose strong { font-weight: 700; }

.lead { padding-bottom: 30px; border-bottom: 1px solid var(--border); font-size: 20px !important; font-weight: 500; line-height: 1.55 !important; }

.number-callout {
  margin: 40px 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
}

.number-callout strong {
  margin: 18px 0 14px;
  display: block;
  font-size: clamp(48px, 7vw, 78px);
  letter-spacing: -0.065em;
  line-height: 1;
}
.number-callout p { max-width: 600px; margin: 0; color: var(--grey); font-size: 14px; }
.number-callout mark {
  padding: 0.03em 0.09em 0.08em;
  display: inline-block;
  color: var(--ink);
  background: var(--yellow);
  line-height: 1;
}

.article-note, .regulatory-note {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  background: var(--cream);
}

.article-note strong, .regulatory-note strong { display: block; margin-bottom: 7px; }
.article-note p, .regulatory-note p { margin: 0; font-size: 15px; }
.regulatory-note { border: 1px solid var(--ink); border-left-width: 8px; background: var(--paper); }

.table-wrap { margin: 30px 0 38px; overflow-x: auto; border: 1px solid var(--border); border-radius: 10px; }
.data-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.data-table th { color: var(--grey); background: var(--cream); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.data-table.is-numeric td:last-child,
.data-table.is-numeric th:last-child { text-align: right; white-space: nowrap; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table .total-row td { border-top: 2px solid var(--ink); background: rgba(233, 254, 15, 0.2); font-weight: 800; }

.comparison-grid { margin: 30px 0 40px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.comparison-card { padding: 22px; border: 1px solid var(--border); border-radius: 10px; background: var(--paper); }
.comparison-card.is-highlighted { border-color: var(--ink); background: rgba(233, 254, 15, 0.16); }
.comparison-card h3 { margin: 7px 0 10px; font-size: 20px; }
.comparison-card p { margin: 0; color: var(--grey); font-size: 14px; line-height: 1.55; }

.formula-card { margin: 34px 0 40px; padding: 28px; border-radius: 12px; color: var(--paper); background: var(--ink); }
.formula-row { padding: 13px 0; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px dotted #64625b; font-family: var(--mono); font-size: 13px; }
.formula-row:last-child { border-bottom: 0; }
.formula-row.is-result { margin-top: 11px; padding: 16px 14px; color: var(--ink); background: var(--yellow); font-weight: 800; }

.article-cta { margin: 60px 0 44px; padding: clamp(30px, 5vw, 48px); border-radius: 14px; color: var(--paper); background: var(--ink); }
.article-cta .section-label { color: #c7c6c2; }
.article-cta h2 { max-width: 600px; margin: 13px 0 16px; color: var(--paper); font-size: clamp(32px, 4vw, 44px); }
.article-cta p { max-width: 560px; margin-bottom: 25px; color: #c7c6c2; font-size: 15px; }
.article-cta .secondary-action { color: var(--paper); }
.article-disclaimer { color: var(--grey); font-size: 12px !important; line-height: 1.6 !important; }

.sources { margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--border); }
.sources h2 { margin-top: 0; font-size: 24px; }
.source-list { margin: 0; padding-left: 22px; }
.source-list li { font-size: 13px; line-height: 1.55; }

.related-section { padding: 72px 0 86px; border-top: 1px solid var(--border); background: var(--cream); }
.related-header { margin-bottom: 30px; }
.related-header h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 48px); letter-spacing: -0.04em; line-height: 1.06; }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

.related-card {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-card:hover { border-color: var(--ink); transform: translateY(-3px); }

/* Official company and trust pages share the public-site navigation and typography. */
.info-page main {
  margin: 0 24px 24px;
  overflow: clip;
  border-radius: 0 0 24px 24px;
  background: var(--paper);
}

.info-hero { padding: 152px 0 82px; color: var(--paper); background: var(--ink); }
.info-hero .eyebrow { color: #bdbcb7; }
.info-hero h1 { max-width: 870px; margin: 20px 0 24px; font-size: clamp(48px, 6.3vw, 82px); letter-spacing: -0.06em; line-height: 0.98; text-wrap: balance; }
.info-hero p { max-width: 720px; margin: 0; color: #c9c8c3; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.info-body { width: min(1040px, calc(100% - 64px)); margin: 0 auto; padding: 84px 0 110px; display: grid; grid-template-columns: minmax(0, 710px) 270px; gap: 60px; align-items: start; }
.info-content { min-width: 0; }
.info-content > :first-child { margin-top: 0; }
.info-content h2 { margin: 62px 0 18px; scroll-margin-top: 112px; font-size: clamp(30px, 3.5vw, 42px); letter-spacing: -0.04em; line-height: 1.08; }
.info-content h3 { margin: 32px 0 10px; font-size: 21px; letter-spacing: -0.02em; }
.info-content p, .info-content li { font-size: 17px; line-height: 1.72; }
.info-content p { margin: 0 0 22px; }
.info-content ul, .info-content ol { margin: 16px 0 28px; padding-left: 24px; }
.info-content li + li { margin-top: 9px; }
.info-content a { font-weight: 700; }
.info-lead { padding-bottom: 30px; border-bottom: 1px solid var(--border); font-size: 20px !important; font-weight: 500; line-height: 1.55 !important; }
.answer-card { margin: 20px 0; padding: 27px; border: 1px solid var(--border); border-radius: 12px; background: var(--cream); }
.answer-card h2, .answer-card h3 { margin-top: 0; }
.answer-card p:last-child { margin-bottom: 0; }
.answer-card.is-important { border: 2px solid var(--ink); background: var(--paper); }
.answer-status { margin-bottom: 12px; display: inline-flex; padding: 5px 8px; border-radius: 5px; background: var(--yellow); font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.info-rail { position: sticky; top: 112px; }
.info-rail-card { margin-bottom: 14px; padding: 23px; border: 1px solid var(--border); border-radius: 12px; background: var(--paper); }
.info-rail-card h2 { margin: 0 0 10px; font-size: 17px; line-height: 1.25; }
.info-rail-card p { margin: 0 0 16px; color: var(--grey); font-size: 13px; line-height: 1.55; }
.info-rail-card a:not(.button) { display: block; margin-top: 9px; font-size: 13px; font-weight: 700; }
.identity-list { margin: 0; display: grid; gap: 16px; }
.identity-list div { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.identity-list div:last-child { padding-bottom: 0; border-bottom: 0; }
.identity-list dt { margin-bottom: 4px; color: var(--grey); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.identity-list dd { margin: 0; font-size: 14px; line-height: 1.5; }
.updated-note { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--grey); font-size: 12px !important; }
.info-page .site-footer { margin-top: 0; }

.site-footer {
  margin: 0 24px 24px;
  padding: 68px 0 30px;
  border-radius: 24px;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 48px; }
.footer-brand img { width: 112px; filter: invert(1); }
.footer-brand p { max-width: 330px; margin: 26px 0 0; color: #b8b7b2; font-size: 15px; }
.footer-group h2 { margin: 0 0 17px; color: #b8b7b2; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-group a { display: block; margin: 9px 0; font-size: 14px; text-decoration: none; }
.footer-group a:hover { color: var(--yellow); }

.footer-bottom {
  margin-top: 58px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #33322e;
  color: #8f8e89;
  font-size: 11px;
}

@media (max-width: 980px) {
  .featured-card, .article-hero-grid { grid-template-columns: 1fr; }
  .featured-visual { min-height: 390px; border-top: 1px solid #393833; border-left: 0; }
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-hero-grid { gap: 48px; }
  .article-hero-visual { min-height: 370px; }
  .article-layout { grid-template-columns: 1fr; }
  .toc { display: none; }
  .info-body { grid-template-columns: 1fr; }
  .info-rail { position: static; }

  .mobile-reading-tools {
    margin-bottom: 34px;
    display: block;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--cream);
  }

  .toc-mobile {
    display: block;
    min-width: 0;
  }

  .toc-mobile summary {
    min-height: 44px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .toc-mobile ol {
    margin: 0;
    padding: 4px 22px 18px 38px;
  }

  .toc-mobile li + li { margin-top: 5px; }
  .toc-mobile a { font-size: 13px; }
  .prose h2, .prose h3 { scroll-margin-top: 94px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 32px, var(--max)); }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .site-header {
    min-height: 64px;
    padding: 0;
    background: rgba(14, 13, 13, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .header-inner {
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header .brand img { width: 66px; }
  .header-desktop { display: none; }
  .header-menu { position: relative; display: block; }
  .header-menu summary {
    width: 44px;
    min-height: 44px;
    padding: 9px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
  }
  .header-menu summary::-webkit-details-marker { display: none; }
  .menu-icon { position: relative; width: 18px; height: 12px; display: block; border-top: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; }
  .header-menu[open] .menu-icon { height: 14px; border: 0; }
  .header-menu[open] .menu-icon::before,
  .header-menu[open] .menu-icon::after { position: absolute; inset: 6px 0 auto; height: 1.5px; background: currentColor; content: ""; transform: rotate(45deg); }
  .header-menu[open] .menu-icon::after { transform: rotate(-45deg); }
  .header-menu-panel {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    width: auto;
    padding: 10px 20px 18px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 16px 16px;
    background: rgba(14, 13, 13, 0.96);
    box-shadow: 0 18px 50px rgba(14, 13, 13, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .header-menu-panel nav { margin-bottom: 8px; display: grid; }
  .header-menu-panel .header-link { min-height: 44px; padding: 11px 12px; display: flex; align-items: center; border-radius: 8px; font-size: 14px; }
  .header-menu-panel .header-link:hover { background: rgba(255, 255, 255, 0.08); opacity: 1; }
  .header-menu-panel .button { width: 100%; }
  .button { min-height: 44px; padding: 9px 13px; font-size: 12px; }

  .mobile-action-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 108;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(14, 13, 13, 0.96);
    box-shadow: 0 -8px 28px rgba(14, 13, 13, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .mobile-action-dock a {
    min-width: 0;
    min-height: 52px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    pointer-events: auto;
  }
  .mobile-action-dock .dock-primary {
    border: 1px solid var(--yellow);
    color: var(--ink);
    background: var(--yellow);
    box-shadow: none;
  }
  body.header-menu-open .mobile-action-dock { opacity: 0; transform: translateY(12px); pointer-events: none; }

  .featured-section, .story-section, .article-page main, .info-page main, .site-footer { margin-right: 10px; margin-left: 10px; }
  .featured-section, .article-page main, .info-page main { border-radius: 0 0 16px 16px; }
  .featured-section { padding: 98px 0 30px; }
  .featured-card { min-height: 0; border-radius: 12px; }
  .featured-copy { padding: 30px 25px 34px; }
  .featured-copy p { font-size: 15px; }
  .featured-visual { min-height: 330px; padding: 28px 22px; }
  .receipt { padding: 24px 20px 28px; }

  .featured-secondary { margin-top: 28px; padding-top: 28px; grid-template-columns: 1fr; gap: 24px; }
  .featured-secondary-card { padding: 0; }
  .featured-secondary-card + .featured-secondary-card { padding: 24px 0 0; border-top: 1px solid #393833; border-left: 0; }
  .featured-secondary-card h3 { font-size: 17px; }
  .mini-visual { min-height: 88px; padding: 13px; }
  .mini-visual-rate strong { font-size: 29px; }

  .story-section { padding: 58px 0 74px; border-radius: 16px; }
  .story-heading { grid-template-columns: 1fr; gap: 22px; }
  .story-heading p { font-size: 15px; }
  .topic-filter { margin: 30px 0 34px; }
  .topic-filter button { min-height: 44px; padding: 9px 13px; font-size: 12px; }
  .story-grid, .related-grid, .comparison-grid, .footer-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 40px; }
  .story-card-link { min-height: 280px; }
  .story-index { margin-bottom: 38px; }

  .article-hero { padding: 104px 0 42px; }
  .article-hero-grid { min-height: 0; gap: 34px; }
  .breadcrumbs { margin-bottom: 30px; }
  .article-standfirst { font-size: 15px; }
  .article-meta-row { align-items: flex-start; flex-direction: column; gap: 4px; }
  .article-meta-row span + span::before { display: none; }
  .article-hero-visual { min-height: 310px; padding: 24px; border-radius: 12px; }
  .article-layout { width: min(100% - 32px, 710px); padding: 48px 0 72px; }
  .info-hero { padding: 108px 0 50px; }
  .info-hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .info-hero p { font-size: 16px; }
  .info-body { width: min(100% - 32px, 710px); padding: 48px 0 74px; gap: 42px; }
  .info-content h2 { margin-top: 50px; scroll-margin-top: 94px; }
  .info-content p, .info-content li { font-size: 16px; }
  .info-lead { font-size: 18px !important; }
  .answer-card { padding: 21px; }
  .prose p, .prose li { font-size: 16px; }
  .lead { font-size: 18px !important; }
  .number-callout, .article-note, .regulatory-note, .formula-card, .comparison-card { padding: 21px; }
  .formula-row { align-items: flex-start; flex-direction: column; gap: 3px; }

  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .data-table {
    min-width: 0;
    display: block;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .data-table tbody,
  .data-table tr,
  .data-table td {
    width: 100%;
    display: block;
  }

  .data-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .data-table tr:last-child { border-bottom: 0; }

  .data-table td {
    padding: 3px 0;
    border: 0;
    text-align: left !important;
    white-space: normal !important;
  }

  .data-table td:first-child { font-weight: 750; }

  .data-table td:not(:first-child) {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.45;
  }

  .data-table td:not(:first-child)::before {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .data-table.is-numeric td:nth-child(2)::before { content: "Estimate"; }
  .data-table.is-numeric td:nth-child(3)::before { content: "AED"; }
  .data-table.is-comparison td:nth-child(2)::before { content: "Works well"; }
  .data-table.is-comparison td:nth-child(3)::before { content: "Watch for"; }

  .data-table .total-row {
    border-top: 2px solid var(--ink);
    background: rgba(233, 254, 15, 0.2);
  }

  .data-table .total-row td { border-top: 0; background: transparent; }
  .data-table.is-numeric .total-row td:last-child::before { content: "AED"; }
  .article-cta { margin-top: 50px; }
  .article-cta .cta-actions { display: grid; grid-template-columns: 1fr; }
  .article-cta .cta-actions .button { width: 100%; }
  .related-section { padding: 58px 0 68px; }
  .site-footer { padding-top: 54px; border-radius: 16px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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