/* SeekFinanceAnswers — design system
   Tokens taken from the approved reference: Work Sans, #1C4B42 / #B4E717 /
   #F6F5F2, 24px card radius, 0.3s transitions, staggered entrance motion. */

:root {
  --forest: #1c4b42;
  --forest-deep: #163c35;
  --forest-ink: #0f2e28;
  --lime: #b4e717;
  --lime-deep: #92c200;
  --cream: #f6f5f2;
  --paper: #ffffff;
  --grey: #7e7e7e;
  --peach: #ffbc7d;
  --glass: rgba(255, 255, 255, 0.16);
  --glass-line: rgba(255, 255, 255, 0.28);
  --line-dark: rgba(255, 255, 255, 0.14);

  --r: 24px;
  --r-sm: 16px;
  --r-pill: 100px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.3s;

  --font: "Work Sans", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, li, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--grey);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--lime);
  color: var(--forest);
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

.wrap { width: min(1300px, 100% - 64px); margin-inline: auto; }

/* ── type ─────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(32px, 4.2vw, 58px); }
.h2 { font-size: clamp(30px, 3.4vw, 48px); }
.h3 { font-size: clamp(22px, 1.8vw, 28px); }

.lede { font-size: 16px; color: var(--grey); max-width: 62ch; }

/* outlined pill tag — the reference's label treatment */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--forest);
  border: 1px solid rgba(28, 75, 66, 0.22);
  border-radius: var(--r-pill);
  padding: 9px 16px;
}
.tag--onlime { border-color: rgba(28, 75, 66, 0.32); }
.tag--ondark { color: #fff; border-color: var(--glass-line); }
/* on a bright photograph a bare outline disappears — give it a scrim */
.tag--glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(15, 46, 40, 0.46);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.tag--solid { background: var(--cream); border-color: transparent; }

.head { margin-bottom: clamp(36px, 4vw, 60px); }
.head--center { text-align: center; }
.head--center .h2 { max-width: 22ch; margin-inline: auto; }
.head--center .lede { margin-inline: auto; max-width: 56ch; }
.head .h2 { margin-top: 22px; }
.head .lede { margin-top: 18px; }

/* ── buttons ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--r-pill);
  background: var(--lime);
  color: var(--forest);
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background var(--t) ease, transform var(--t) var(--ease);
}
.btn:hover { background: var(--lime-deep); transform: translateY(-3px); }
.btn--dark { background: var(--forest); color: #fff; }
.btn--dark:hover { background: var(--forest-deep); }
.btn--ghost { background: transparent; border: 1px solid var(--glass-line); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* circular ↗ button — the repeated flourish */
.arrow {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  transition: background var(--t) ease, transform var(--t) var(--ease);
}
.arrow svg { width: 18px; height: 18px; transition: transform var(--t) var(--ease); }
.arrow:hover { background: var(--lime-deep); }
.arrow:hover svg { transform: translate(2px, -2px); }
.arrow--sm { width: 46px; height: 46px; }
.arrow--sm svg { width: 15px; height: 15px; }
.arrow--paper { background: var(--paper); color: var(--forest); }
.arrow--paper:hover { background: var(--lime); }
.arrow--dark { background: var(--forest); color: #fff; }
.arrow--dark:hover { background: var(--forest-deep); }

.cta-pair { display: inline-flex; align-items: center; gap: 12px; }
.center-cta { text-align: center; margin-top: clamp(36px, 4vw, 56px); }

.ico { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ── header ───────────────────────────────────────────── */

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  background: transparent;
  transition: background var(--t) ease, padding var(--t) ease, box-shadow var(--t) ease;
}
.site-head.is-solid {
  background: var(--forest);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(15, 46, 40, 0.18);
}
.site-head__bar { display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand__word { font-size: 22px; font-weight: 500; white-space: nowrap; }
.brand__word strong { font-weight: 600; }
.brand__mark {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  display: grid;
  place-items: center;
}
.brand__mark svg { width: 20px; height: 20px; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color var(--t) ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--lime);
  transition: right var(--t) var(--ease);
}
.site-nav a:hover::after { right: 0; }

.site-head .btn { height: 50px; padding: 0 26px; }

.nav-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.nav-btn svg { width: 20px; height: 20px; margin: auto; }

/* ── hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  border-radius: 0 0 var(--r) var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 160px;
}
.hero__photo {
  position: absolute;
  inset: -6% 0 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
}
/* light scrim only — the photograph has to stay a photograph */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(96deg, rgba(15, 46, 40, 0.82) 0%, rgba(15, 46, 40, 0.52) 34%, rgba(15, 46, 40, 0.12) 62%, rgba(15, 46, 40, 0) 78%),
    linear-gradient(0deg, rgba(15, 46, 40, 0.44) 0%, rgba(15, 46, 40, 0) 34%);
}
.hero__body { max-width: 720px; padding-bottom: clamp(40px, 5vw, 72px); }
.hero__body h1 { color: #fff; margin-top: 26px; }
.hero__rule {
  display: inline-block;
  width: clamp(80px, 12vw, 168px);
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
  margin-left: 22px;
  margin-bottom: 12px;
}
.hero__body p { color: rgba(255, 255, 255, 0.86); margin-top: 24px; max-width: 50ch; font-size: 17px; }
.hero__body .cta-pair { margin-top: 36px; }

/* frosted tabs sitting on the hero's lower edge */
.hero__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: clamp(22px, 3vw, 40px);
}
.hero__tab {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-sm);
  padding: 26px 28px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background var(--t) ease, transform var(--t) var(--ease);
}
.hero__tab:first-child { background: rgba(255, 255, 255, 0.88); color: var(--forest); border-color: transparent; }
.hero__tab:hover { transform: translateY(-4px); }

/* ── sections ─────────────────────────────────────────── */

/* Adjacent sections' paddings add up. The cream blocks carry the full measure;
   plain sections run tighter, and `--trim-top` stops two light sections
   compounding into a dead band of whitespace. */
.sec { padding: clamp(56px, 6vw, 92px) 0; }
.sec--tight { padding: clamp(36px, 4vw, 60px) 0; }
.sec--cream { background: var(--cream); padding: clamp(64px, 7vw, 118px) 0; }
.sec--trim-top { padding-top: clamp(28px, 3vw, 48px); }

/* ── highlight trio ───────────────────────────────────── */

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trio__card {
  position: relative;
  background: var(--cream);
  border-radius: var(--r);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 560px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) ease;
}
.trio__card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(28, 75, 66, 0.1); }
.trio__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.trio__card h3 { font-size: 28px; max-width: 18ch; }
.trio__thumb { margin-top: auto; border-radius: var(--r-sm); overflow: hidden; height: 240px; }
.trio__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.trio__card:hover .trio__thumb img { transform: scale(1.05); }

.trio__card--lime { background: var(--lime); }
.trio__card--lime h3 { color: var(--forest-ink); }
/* photo clipped to the reference's four-lobed shape */
.trio__blob {
  height: 300px;
  -webkit-mask-image: url(blob-mask.svg);
  mask-image: url(blob-mask.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.trio__blob img { width: 100%; height: 100%; object-fit: cover; }

/* ── topics ───────────────────────────────────────────── */

.topics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.topic {
  display: block;
  background: var(--cream);
  border-radius: var(--r);
  padding: 14px 14px 8px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) ease;
}
.topic:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(28, 75, 66, 0.1); }
.topic__shot {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1.16;
}
.topic__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.topic:hover .topic__shot img { transform: scale(1.06); }
.topic__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  display: grid;
  place-items: center;
}
.topic__badge svg { width: 20px; height: 20px; }
.topic__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 10px 18px;
}
.topic__name { font-size: 19px; font-weight: 500; color: var(--forest); }
.topic--active { background: var(--lime); }

/* ── dark panel ───────────────────────────────────────── */

.panel {
  position: relative;
  background: var(--forest);
  border-radius: var(--r);
  padding: clamp(40px, 5vw, 76px);
  color: #fff;
}
.panel::after {
  content: "";
  position: absolute;
  left: 76px;
  top: 100%;
  width: 34px;
  height: 26px;
  background: var(--forest);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.panel h2 { color: #fff; max-width: 26ch; }
.panel__rule { width: 96px; height: 1px; background: var(--lime); margin: 26px auto 0 0; border: 0; }
.panel__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.panel__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  padding: 30px 26px;
  transition: background var(--t) ease, transform var(--t) var(--ease);
}
.panel__item:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.panel__item .ico { width: 30px; height: 30px; color: var(--lime); margin-bottom: 22px; }
.panel__item h3 { font-size: 19px; color: #fff; margin-bottom: 12px; min-height: 2.4em; }
.panel__item p { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); }

/* ── facts ────────────────────────────────────────────── */

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.fact__num { font-size: clamp(40px, 4.4vw, 58px); font-weight: 500; color: var(--forest); line-height: 1; }
.fact__num .accent { color: var(--lime-deep); }
.fact__num .accent--sm { font-size: 0.5em; }
.fact__label {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 75, 66, 0.14);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1.6;
}

/* ── photo band ───────────────────────────────────────── */

.band {
  position: relative;
  isolation: isolate;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 3.5vw, 46px);
}
.band__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(15, 46, 40, 0.82) 0%, rgba(15, 46, 40, 0.1) 58%, rgba(15, 46, 40, 0) 100%);
}
.band__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.band__foot h3 { color: #fff; font-size: clamp(26px, 3vw, 40px); max-width: 20ch; }

/* ── coverage ─────────────────────────────────────────── */

.cov { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.cov__card { background: var(--cream); border-radius: var(--r); padding: clamp(24px, 3vw, 44px); }
.cov__card svg.radar { width: 100%; height: auto; }
.cov__legend { display: flex; justify-content: center; gap: 26px; margin-top: 18px; font-size: 13px; }
.cov__legend span { display: inline-flex; align-items: center; gap: 9px; }
.cov__legend i { width: 10px; height: 10px; border-radius: 50%; }
.cov__note { margin-top: 12px; text-align: center; font-size: 12px; opacity: 0.8; }

.cov__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 4px;
  border-top: 1px solid rgba(28, 75, 66, 0.12);
  transition: padding-left var(--t) var(--ease);
}
.cov__row:last-child { border-bottom: 1px solid rgba(28, 75, 66, 0.12); }
.cov__row:hover { padding-left: 12px; }
.cov__row h3 { font-size: 21px; }
.cov__row p { font-size: 14px; margin-top: 5px; }
.cov__cta { margin-top: 36px; }

/* ── coming soon ──────────────────────────────────────── */

.soon { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.soon__card {
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  transition: transform var(--t) var(--ease), box-shadow var(--t) ease;
}
.soon__card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(28, 75, 66, 0.1); }
.soon__shot { min-height: 250px; overflow: hidden; }
.soon__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.soon__card:hover .soon__shot img { transform: scale(1.05); }
.soon__body { padding: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.soon__body h3 { font-size: 23px; }
.soon__body p { font-size: 14.5px; }
.soon__flag {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
}
.soon__flag::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }

/* ── wordmark strip ───────────────────────────────────── */

.strip { text-align: center; }
.strip__marks {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px clamp(28px, 4.5vw, 66px);
}
.strip__marks span {
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--forest);
  opacity: 0.34;
  transition: opacity var(--t) ease;
}
.strip__marks span:hover { opacity: 0.7; }

/* ── footer ───────────────────────────────────────────── */

.site-foot {
  background: var(--forest);
  color: #fff;
  border-radius: var(--r) var(--r) 0 0;
  margin-top: clamp(48px, 6vw, 90px);
  padding-top: clamp(52px, 6vw, 84px);
}
.site-foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 52px; }
.site-foot__blurb { margin-top: 22px; font-size: 15px; color: rgba(255, 255, 255, 0.7); max-width: 38ch; }
.site-foot h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}
.site-foot li { margin-bottom: 13px; }
.site-foot li a { font-size: 15px; color: rgba(255, 255, 255, 0.82); transition: color var(--t) ease; }
.site-foot li a:hover { color: var(--lime); }
.site-foot__disclosure {
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 92ch;
}
.site-foot__bottom {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 26px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.58);
}
.site-foot__bottom nav { display: flex; gap: 24px; }
.site-foot__bottom a { color: rgba(255, 255, 255, 0.78); transition: color var(--t) ease; }
.site-foot__bottom a:hover { color: var(--lime); }

/* ── document pages ───────────────────────────────────── */

.dochead {
  background: var(--forest);
  border-radius: 0 0 var(--r) var(--r);
  padding: clamp(140px, 15vw, 210px) 0 clamp(52px, 6vw, 84px);
}
.dochead h1 { color: #fff; margin-top: 22px; }
.dochead__meta { margin-top: 20px; font-size: 14.5px; color: rgba(255, 255, 255, 0.68); }

.prose { background: var(--cream); border-radius: var(--r); padding: clamp(28px, 4vw, 60px); max-width: 900px; }
.prose h2 { font-size: 25px; margin: 40px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 16px; }
.prose ul { margin-bottom: 16px; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 16px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.prose a { color: var(--forest); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose .lead { font-size: 18px; color: var(--forest); }
.prose strong { color: var(--forest); font-weight: 500; }
.notice {
  background: var(--paper);
  border-left: 3px solid var(--lime);
  border-radius: var(--r-sm);
  padding: 24px 26px;
  font-size: 13.5px;
  line-height: 1.75;
}
.tbl-wrap { overflow-x: auto; margin-bottom: 16px; }
.tbl { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
.tbl th { text-align: left; background: var(--forest); color: #fff; font-weight: 500; padding: 14px 18px; }
.tbl th:first-child { border-radius: 12px 0 0 0; }
.tbl th:last-child { border-radius: 0 12px 0 0; }
.tbl td { padding: 16px 18px; border-bottom: 1px solid rgba(28, 75, 66, 0.12); vertical-align: top; }
.tbl td p { margin-bottom: 8px; }
.tbl td p:last-child { margin-bottom: 0; }

/* ── entrance motion ──────────────────────────────────── */

[data-anim] {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
[data-anim="fade"] { transform: none; }
[data-anim="up"] { transform: translateY(38px); }
[data-anim="zoom"] { transform: scale(0.94); }
[data-anim="right"] { transform: translateX(44px); }
[data-anim].in { opacity: 1; transform: none; }
html:not(.js) [data-anim] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__photo { transform: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── responsive ───────────────────────────────────────── */

@media (max-width: 1180px) {
  .topics { grid-template-columns: repeat(2, 1fr); }
  .panel__grid { grid-template-columns: repeat(2, 1fr); }
  .site-foot__top { grid-template-columns: 1fr 1fr; }
  .trio__card { min-height: 0; }
}

@media (max-width: 1024px) {
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 262px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: var(--forest);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-sm);
    padding: 22px 26px 26px;
    box-shadow: 0 26px 54px rgba(15, 46, 40, 0.34);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 11px 0; width: 100%; }
  .site-nav .btn { margin-top: 12px; }
  .nav-btn { display: grid; }
  .site-head__bar { position: relative; }
  .trio { grid-template-columns: 1fr; }
  .cov { grid-template-columns: 1fr; }
  .soon { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .wrap { width: min(1300px, 100% - 36px); }
  .hero { min-height: 88vh; padding-top: 130px; }
  .hero__tabs { grid-template-columns: 1fr; gap: 10px; }
  .hero__tab { padding: 18px 22px; }
  .hero__rule { display: none; }
  .topics { grid-template-columns: 1fr; }
  .topic__shot { aspect-ratio: 4 / 3; }
  .panel__grid { grid-template-columns: 1fr; }
  .panel__item h3 { min-height: 0; }
  .panel::after { left: 44px; }
  .facts { grid-template-columns: 1fr; gap: 26px; }
  .band__foot { flex-direction: column; align-items: flex-start; gap: 26px; }
  .soon__card { grid-template-columns: 1fr; }
  .site-foot__top { grid-template-columns: 1fr; }
  .site-foot__bottom { flex-direction: column; align-items: flex-start; }
  .btn { height: 52px; padding: 0 26px; }
  .arrow { width: 52px; height: 52px; }
}

/* ═══════════════════════════════════════════════════════
   Premium pass — texture, shaped edges, secondary accent
   and scroll-linked motion. Hero deliberately untouched.
   ═══════════════════════════════════════════════════════ */

/* fine grain over the cream blocks, so large flat fills read as paper
   rather than as a plain colour swatch */
.sec--cream { position: relative; isolation: isolate; }
.sec--cream::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

/* secondary accent from the reference palette, used once */
.tag--peach {
  color: #7a4a12;
  border-color: rgba(255, 188, 125, 0.9);
  background: rgba(255, 188, 125, 0.34);
}

/* ── shaped edges ─────────────────────────────────────── */

/* one clipped corner turns a plain rounded box into a considered shape */
.trio__card { border-radius: var(--r) var(--r) var(--r) 6px; }
.trio__card--lime { border-radius: var(--r) 6px var(--r) var(--r); }
.band { border-radius: var(--r) var(--r) var(--r) 6px; }
.topic { border-radius: var(--r) var(--r) var(--r) 8px; }
.cov__card { border-radius: var(--r) 6px var(--r) var(--r); }

/* the reference's angled-cut mask, on the insight photos */
.soon__shot--cut {
  -webkit-mask-image: url(cut-mask.svg);
  mask-image: url(cut-mask.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ── dark panel depth ─────────────────────────────────── */

.panel { overflow: hidden; }
.panel > *:not(.panel__watermark) { position: relative; z-index: 1; }
.panel__watermark {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 380px;
  height: 380px;
  color: var(--lime);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
/* a soft glow lifts the flat green off the page */
.panel::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 12%;
  width: 60%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(180, 231, 23, 0.13), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ── photographs reveal with a wipe, not a fade ───────── */

[data-anim] .trio__thumb img,
[data-anim] .topic__shot img,
[data-anim] .soon__shot img,
[data-anim] .trio__blob img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s var(--ease), transform 0.6s var(--ease);
}
[data-anim].in .trio__thumb img,
[data-anim].in .topic__shot img,
[data-anim].in .soon__shot img,
[data-anim].in .trio__blob img { clip-path: inset(0 0 0 0); }

/* ── richer hovers ────────────────────────────────────── */

.arrow:hover svg { transform: translate(2px, -2px) rotate(8deg); }
.topic__name { transition: transform var(--t) var(--ease); }
.topic:hover .topic__name { transform: translateX(4px); }
.topic:hover .topic__foot .arrow--paper { background: var(--lime); }

/* the coverage rows grow a lime rule instead of just shifting */
.cov__row { position: relative; }
.cov__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t) var(--ease);
}
.cov__row:hover::before { transform: scaleY(1); }
.cov__row:hover { padding-left: 18px; }

/* ── stat count-up ────────────────────────────────────── */

.fact__num [data-count] { font-variant-numeric: tabular-nums; }

/* ── wordmark marquee ─────────────────────────────────── */

.strip__marquee {
  margin-top: 32px;
  overflow: hidden;
  /* fade the ends so the loop has no hard edge */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.strip__track { display: flex; width: max-content; animation: strip-scroll 34s linear infinite; }
.strip__marquee:hover .strip__track { animation-play-state: paused; }
/* the trailing gap lives inside each half, so the two halves are exactly
   equal width and translating by -50% lands seamlessly */
.strip__marks { margin-top: 0; flex: none; padding-right: clamp(28px, 4.5vw, 66px); }
@keyframes strip-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
  [data-anim] .trio__thumb img,
  [data-anim] .topic__shot img,
  [data-anim] .soon__shot img,
  [data-anim] .trio__blob img { clip-path: none !important; transition: none; }
  .panel__watermark { display: none; }
}

/* ═══════════════════════════════════════════════════════
   Blog — feed, category pages and article pages
   ═══════════════════════════════════════════════════════ */

/* ── reading progress ─────────────────────────────────── */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--lime);
  z-index: 200;
}

/* ── feed grid (blog home + category pages) ───────────── */

.feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r) var(--r) var(--r) 8px;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) ease;
}
.post:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(28, 75, 66, 0.1); }
.post__shot { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.post__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post:hover .post__shot img { transform: scale(1.05); }
.post__body { padding: 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; flex: 1; }
.post__body h3 { font-size: 21px; line-height: 1.25; }
.post__body p { font-size: 14.5px; }
.post__meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--grey);
  border-top: 1px solid rgba(28, 75, 66, 0.1);
  width: 100%;
}
.post__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); flex: none; }

/* the lead post on the blog home spans two columns */
.post--lead { grid-column: span 2; }
.post--lead .post__shot { aspect-ratio: 16 / 8; }
.post--lead .post__body h3 { font-size: clamp(24px, 2.2vw, 32px); }

/* ── category strip ───────────────────────────────────── */

.catbar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(32px, 4vw, 52px); }
.catbar a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid rgba(28, 75, 66, 0.16);
  border-radius: var(--r-pill);
  padding: 11px 22px;
  transition: background var(--t) ease, color var(--t) ease, border-color var(--t) ease;
}
.catbar a:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.catbar a[aria-current="page"] { background: var(--lime); border-color: var(--lime); color: var(--forest); }

/* ── article page ─────────────────────────────────────── */

.artmeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 26px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
}
.artmeta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
.dochead .lede { color: rgba(255, 255, 255, 0.82); margin-top: 22px; font-size: 18px; max-width: 60ch; }

.arthero {
  margin-top: calc(clamp(28px, 3vw, 48px) * -1);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.arthero img { width: 100%; height: 100%; object-fit: cover; }

.artwrap {
  display: grid;
  /* the reading measure caps the text column, so the track is sized to it and
     the pair is pushed apart — otherwise a dead gap opens mid-page */
  grid-template-columns: minmax(0, 720px) 300px;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* long-form typography */
.artbody { max-width: 100%; }
.artbody > * + * { margin-top: 22px; }
.artbody p { font-size: 17px; line-height: 1.75; color: #4a5a51; }
.artbody h2 {
  font-size: clamp(24px, 2.2vw, 30px);
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(28, 75, 66, 0.12);
}
.artbody h3 { font-size: 20px; margin-top: 34px; }
.artbody ul, .artbody ol { padding-left: 0; }
.artbody ul li, .artbody ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #4a5a51;
}
.artbody ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.artbody ol { counter-reset: step; }
.artbody ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
}
.artbody strong { color: var(--forest); font-weight: 600; }
.artbody a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* the short answer, always first */
.answer {
  background: var(--forest);
  color: #fff;
  border-radius: var(--r) var(--r) var(--r) 8px;
  padding: clamp(24px, 3vw, 34px);
}
.answer h2 {
  border: 0;
  margin: 0 0 12px;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}
.answer p { color: rgba(255, 255, 255, 0.9); font-size: 18px; line-height: 1.65; margin: 0; }
.answer p + p { margin-top: 12px; }

.callout {
  background: var(--cream);
  border-left: 3px solid var(--lime);
  border-radius: var(--r-sm);
  padding: 24px 26px;
}
.callout p { margin: 0; font-size: 16px; }
.callout p + p { margin-top: 10px; }
.callout strong { color: var(--forest); }

.figures {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  margin-top: 8px;
}
.figures caption {
  caption-side: bottom;
  margin-top: 12px;
  font-size: 13px;
  color: var(--grey);
  text-align: left;
}
.figures th {
  text-align: left;
  background: var(--forest);
  color: #fff;
  font-weight: 500;
  padding: 13px 16px;
}
.figures th:first-child { border-radius: 10px 0 0 0; }
.figures th:last-child { border-radius: 0 10px 0 0; }
.figures td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(28, 75, 66, 0.12);
  color: #4a5a51;
}
.figures tbody tr:nth-child(even) { background: rgba(246, 245, 242, 0.7); }
.tblscroll { overflow-x: auto; }

/* ── article sidebar ──────────────────────────────────── */

.artside { position: sticky; top: 110px; display: grid; gap: 22px; }
.toc {
  background: var(--cream);
  border-radius: var(--r);
  padding: 26px;
}
.toc h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.toc ol { counter-reset: toc; }
.toc li { margin-bottom: 11px; }
.toc a {
  font-size: 14.5px;
  color: var(--forest);
  line-height: 1.45;
  display: block;
  padding-left: 14px;
  border-left: 2px solid rgba(28, 75, 66, 0.14);
  transition: border-color var(--t) ease, padding-left var(--t) var(--ease);
}
.toc a:hover { border-left-color: var(--lime); padding-left: 18px; }

.sidenote {
  border: 1px solid rgba(28, 75, 66, 0.14);
  border-radius: var(--r);
  padding: 24px;
}
.sidenote h4 { font-size: 16px; margin-bottom: 10px; }
.sidenote p { font-size: 14px; }

/* ── related ──────────────────────────────────────────── */

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@media (max-width: 1080px) {
  .feed { grid-template-columns: repeat(2, 1fr); }
  .post--lead { grid-column: span 2; }
  .artwrap { grid-template-columns: 1fr; }
  .artside { position: static; grid-template-columns: 1fr 1fr; }
  .related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .feed { grid-template-columns: 1fr; }
  .post--lead { grid-column: auto; }
  .artside { grid-template-columns: 1fr; }
  .related { grid-template-columns: 1fr; }
  .artbody p, .artbody ul li, .artbody ol li { font-size: 16.5px; }
  .arthero { aspect-ratio: 4 / 3; }
}
