/* ==========================================================================
   MARE COMMODITIES — site styles
   White canvas, deep-navy surfaces, gold accent, light-weight headlines.
   Navigation follows the maersk.com pattern: a thin utility bar above a white
   header whose top-level items open full-width mega menus.
   ========================================================================== */

/* ---------- Header ------------------------------------------------------ */

.utility {
  background: var(--navy-900);
  color: var(--on-dark-2);
  font-size: var(--fs-xs);
}
.utility__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  min-height: 40px;
}
.utility a {
  color: var(--on-dark-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  transition: color var(--dur) var(--ease);
}
.utility a:hover { color: var(--white); text-decoration: none; }
.utility svg { width: 14px; height: 14px; }
.utility__sep {
  width: 1px;
  height: 14px;
  background: var(--line-dark);
  flex: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 72px;
}

.header .logo { --logo-h: 38px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 0.15rem; }

/* Top-level items stay static so the mega panel can span the full header */
.nav__item { position: static; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-radius: var(--r);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__link:hover { background: var(--surface); color: var(--navy-700); text-decoration: none; }
.nav__link svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.nav__link[aria-expanded='true'] { background: var(--surface); color: var(--navy-900); }
.nav__link[aria-expanded='true'] svg { transform: rotate(180deg); }

/* Current page marker */
.nav__link[aria-current='page'] {
  color: var(--navy-900);
  box-shadow: inset 0 -3px 0 var(--gold-500);
  border-radius: var(--r) var(--r) 0 0;
}

/* ---- Mega menu --------------------------------------------------------- */

.mega {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 40px rgba(11, 35, 76, 0.13);
  z-index: var(--z-nav);
}
.mega__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  padding-block: clamp(1.75rem, 1.3rem + 1.6vw, 2.75rem);
  align-items: start;
}
.mega__title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line-soft);
}
.mega__list li + li { margin-top: 0.15rem; }
.mega__list a {
  display: block;
  padding: 0.55rem 0.65rem;
  margin-inline: -0.65rem;
  border-radius: var(--r);
  text-decoration: none;
  transition: background-color var(--dur) var(--ease);
}
.mega__list a:hover { background: var(--surface); text-decoration: none; }
.mega__list b {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.mega__list a:hover b { color: var(--navy-700); }
.mega__list span {
  display: block;
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--ink-2);
}

/* Promo panel on the right of a mega menu */
.mega__promo {
  background: var(--navy-900);
  border-radius: var(--r);
  padding: 1.5rem;
  color: var(--on-dark-2);
  align-self: stretch;
}
/* Photo thumbnail in the mega panel, as Maersk does. Falls back to a lighter
   navy block, so a missing image reads as a deliberate panel. */
.mega__promo__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.1rem;
  border-radius: var(--r-sm);
  background-color: var(--navy-700);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mega__promo h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.mega__promo p { font-size: var(--fs-xs); margin-bottom: 1.1rem; color: var(--on-dark-2); }

.header__cta { display: flex; align-items: center; gap: 0.6rem; flex: none; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close,
.nav-toggle[aria-expanded='true'] .icon-menu { display: none; }
.nav-toggle[aria-expanded='true'] .icon-close { display: block; }

/* ---- Mobile drawer ----------------------------------------------------- */

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  background: var(--white);
  padding: 0 0 3rem;
  overflow-y: auto;
}
.nav-panel__head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-inline: var(--gutter);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-panel__head .logo { --logo-h: 34px; }
.nav-panel__body { padding: 0.5rem var(--gutter) 0; }

.m-group { border-bottom: 1px solid var(--line-soft); }
.m-group__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 0;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  text-align: left;
}
.m-group__trigger svg { width: 18px; height: 18px; flex: none; color: var(--ink-3); transition: transform var(--dur) var(--ease); }
.m-group__trigger[aria-expanded='true'] svg { transform: rotate(180deg); }
.m-group__panel { padding: 0 0 1rem 0.25rem; }
.m-group__panel a {
  display: block;
  padding: 0.6rem 0;
  color: var(--ink-2);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.m-group__panel a:hover { color: var(--navy-700); }

.nav-panel__link {
  display: block;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  text-decoration: none;
}
.nav-panel .btn { width: 100%; margin-top: 1.5rem; }

@media (max-width: 78.99rem) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .utility__inner { justify-content: center; gap: 1rem; }
}
/* The utility bar sheds items as the screen narrows rather than wrapping or
   clipping. The child selector is deliberate: `.utility a` sets display, and a
   bare class would lose to it on specificity and never hide anything.
   Order of sacrifice: the long email address first, then everything except
   location and phone — on a phone the number is the one you actually want.
   Both addresses stay reachable in the footer and on the contact page. */
.utility a { white-space: nowrap; }
@media (max-width: 68rem) {
  .utility__inner > .utility__wide { display: none; }
}
@media (max-width: 48rem) {
  .utility__inner > .utility__mid { display: none; }
  .utility__inner { gap: 0.9rem; }
}
@media (min-width: 79rem) {
  .nav-panel { display: none !important; }
}

/* ---------- Inner page header ------------------------------------------- */

.page-head {
  position: relative;
  background: var(--navy-900);
  color: var(--on-dark-2);
  padding-block: clamp(2.25rem, 1.6rem + 2.4vw, 3.75rem) clamp(2.75rem, 2rem + 3vw, 4.5rem);
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  top: -30%; right: -6%;
  width: 34rem; height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 182, 5, 0.13) 0%, rgba(251, 182, 5, 0) 68%);
  pointer-events: none;
}
.page-head > .container { position: relative; }
.page-head h1 {
  color: var(--white);
  font-size: clamp(2rem, 1.45rem + 2.4vw, 3.25rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 20ch;
}
.page-head__lead {
  font-size: var(--fs-lead);
  color: var(--on-dark-2);
  max-width: 62ch;
  margin: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gold-400); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--on-dark-3); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--on-dark-3); }

/* ---------- Hero -------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--on-dark-2);
  overflow: hidden;
  isolation: isolate;
}
.hero__art {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Maersk's hero is a ~500px banner rather than a full screen, which is what
   lets the photograph read as an image instead of a background. Matched here,
   with extra bottom padding because the action panel overlaps the lower edge. */
.hero__inner {
  position: relative;
  padding-block: clamp(2.75rem, 2rem + 3.4vw, 4.25rem) clamp(6rem, 4.5rem + 6vw, 8rem);
  max-width: 44rem;
}
/* Sized to wrap to three lines rather than four, which keeps the hero close to
   the banner proportion Maersk uses instead of filling the screen. */
.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 1.55rem + 2.8vw, 3.4rem);
  line-height: 1.06;
  font-weight: 200;
  margin-bottom: 1.1rem;
  max-width: 18ch;
}
.hero h1 strong { font-weight: 400; }
.hero__lead {
  font-size: var(--fs-lead);
  color: var(--on-dark-2);
  max-width: 40rem;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  margin-bottom: 1.75rem;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  font-size: var(--fs-xs);
  color: var(--on-dark);
  backdrop-filter: blur(6px);
}
.hero__badge b {
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

/* Action panel overlapping the hero — Maersk's Tracking/Schedules pattern */
.action-panel {
  position: relative;
  margin-top: clamp(-5rem, -4vw - 2rem, -3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}
.action-panel__item {
  display: flex;
  gap: 1rem;
  padding: 1.6rem 1.75rem;
  border-right: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: background-color var(--dur) var(--ease);
}
.action-panel__item:last-child { border-right: 0; }
.action-panel__item:hover { background: var(--surface); text-decoration: none; }
.action-panel__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--gold-100);
  color: var(--navy-700);
}
.action-panel__icon svg { width: 21px; height: 21px; }
.action-panel__item h3 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.2rem;
}
.action-panel__item p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.45;
}

@media (max-width: 47.99rem) {
  .action-panel__item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .action-panel__item:last-child { border-bottom: 0; }
}

/* ==========================================================================
   PHOTOGRAPHY
   Every photographic surface keeps a navy background underneath, so a missing
   or slow image degrades to a solid brand-coloured band rather than a hole.
   ========================================================================== */

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Scrim.
   Maersk runs no overlay at all — their hero photography is art-directed so the
   left side is already dark behind the headline. We cannot re-shoot the supplied
   photographs, so this does the same job with a gradient: heavy enough on the
   left to hold white text at AA, and clearing almost completely on the right so
   the photograph is genuinely the thing you see. */
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg,
      rgba(11, 35, 76, 0.93) 0%,
      rgba(11, 35, 76, 0.86) 26%,
      rgba(11, 35, 76, 0.58) 50%,
      rgba(11, 35, 76, 0.22) 74%,
      rgba(11, 35, 76, 0.10) 100%),
    linear-gradient(to top,
      rgba(11, 35, 76, 0.55) 0%,
      rgba(11, 35, 76, 0) 42%);
}

/* Without a photograph the hero keeps its own artwork and needs no scrim,
   so the gradient is suppressed until an image is actually set. */
.hero__photo:not([style*="url"])::after { background: none; }

.photo-band {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(20rem, 15rem + 20vw, 32rem);
  background-color: var(--navy-900);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--on-dark-2);
  overflow: hidden;
}
/* Weighted to the left, where the copy sits, so the subject of the photograph
   stays legible on the right instead of being flattened by an even wash. */
.photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg,
      rgba(11, 35, 76, 0.93) 0%,
      rgba(11, 35, 76, 0.84) 30%,
      rgba(11, 35, 76, 0.48) 56%,
      rgba(11, 35, 76, 0.16) 82%,
      rgba(11, 35, 76, 0.06) 100%),
    linear-gradient(to top,
      rgba(11, 35, 76, 0.45) 0%,
      rgba(11, 35, 76, 0) 40%);
}
.photo-band > .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.25rem, 1.6rem + 2.6vw, 3.75rem);
}
.photo-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 0.9rem;
}
.photo-band p { color: var(--on-dark-2); max-width: 56ch; font-size: var(--fs-lead); }
.photo-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

/* ---- Mobile art direction --------------------------------------------
   On a phone the text spans the full width, so the desktop's left-weighted
   scrims stop making sense: swap to vertical scrims (heavy behind the text,
   clearing where the subject of the photograph sits) and nudge each crop so
   the subject stays in frame at portrait proportions. */
@media (max-width: 47.99rem) {
  .hero__photo { background-position: 58% center; }
  .hero__photo::after {
    background: linear-gradient(to bottom,
      rgba(11, 35, 76, 0.94) 0%,
      rgba(11, 35, 76, 0.82) 40%,
      rgba(11, 35, 76, 0.48) 74%,
      rgba(11, 35, 76, 0.28) 100%);
  }
  .photo-band {
    min-height: clamp(21rem, 95vw, 26rem);
    /* favour the lower part of the frame, where the vessel's dark hull and
       bow livery sit — better contrast under full-width text */
    background-position: center 62%;
  }
  .photo-band::after {
    background: linear-gradient(to top,
      rgba(11, 35, 76, 0.95) 0%,
      rgba(11, 35, 76, 0.84) 45%,
      rgba(11, 35, 76, 0.58) 80%,
      rgba(11, 35, 76, 0.45) 100%);
  }
  .photo-band h2 { max-width: none; }
  /* A soft navy glow behind the type carries legibility over bright areas of
     the photograph without flattening the whole image under a heavier scrim */
  .photo-band h2,
  .photo-band p,
  .photo-band .eyebrow { text-shadow: 0 1px 14px rgba(11, 35, 76, .65), 0 1px 4px rgba(11, 35, 76, .5); }
  .hero h1,
  .hero__lead { text-shadow: 0 1px 14px rgba(11, 35, 76, .6), 0 1px 4px rgba(11, 35, 76, .45); }
}

/* Small attribution for vessel photography, which is Mare Maritime's fleet */
.photo-credit {
  position: absolute;
  right: var(--gutter);
  bottom: 0.85rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* Inline photo with caption */
.photo-figure { margin: 0; }
.photo-figure__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  background-color: var(--navy-900);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.photo-figure figcaption {
  margin-top: 0.75rem;
  font-size: var(--fs-xs);
  color: var(--ink-3);
}
.on-dark .photo-figure figcaption { color: var(--on-dark-3); }

/* ==========================================================================
   MOTION
   Ground rules, after an earlier scroll-reveal left blocks of the page blank:
   nothing here animates an element from invisible unless the animation is
   guaranteed to finish — which means load-triggered or state-triggered only,
   never dependent on scroll position. Anything scroll-linked animates
   decoration (rules, rails) that the page reads fine without.
   Every rule sits inside prefers-reduced-motion: no-preference.
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {

  /* ---- Hero entrance. Runs once on load and always completes ---------- */

  .hero__badge  { animation: rise 620ms var(--ease) both 80ms; }
  .hero h1      { animation: rise 720ms var(--ease) both 160ms; }
  .hero__lead   { animation: rise 720ms var(--ease) both 280ms; }
  .hero__actions{ animation: rise 720ms var(--ease) both 380ms; }
  .action-panel { animation: rise 760ms var(--ease) both 480ms; }

  .page-head .breadcrumb { animation: rise 560ms var(--ease) both 60ms; }
  .page-head h1          { animation: rise 680ms var(--ease) both 140ms; }
  .page-head__lead       { animation: rise 680ms var(--ease) both 240ms; }

  /* ---- Slow drift across the hero photograph ------------------------- */

  .hero__photo { animation: drift 28s ease-in-out infinite alternate; }

  /* ---- Mega menu opening --------------------------------------------- */

  .mega { animation: mega-in 200ms var(--ease) both; transform-origin: top center; }

  /* ---- Mobile drawer -------------------------------------------------- */

  .nav-panel { animation: drawer-in 260ms var(--ease) both; }

  /* ---- Tab panels fade in when selected ------------------------------ */

  [role='tabpanel']:not([hidden]) { animation: fade-in 320ms var(--ease) both; }

  /* ---- Hover polish --------------------------------------------------- */

  .btn { transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
                     color var(--dur) var(--ease), transform 140ms var(--ease); }
  .btn:active { transform: translateY(1px); }

  .logo img { transition: transform var(--dur) var(--ease); }
  .logo:hover img { transform: scale(1.03); }

  /* Illustrations lift slightly out of their plate */
  .block__art .illus,
  .sector__art .illus { transition: transform 420ms var(--ease); }
  .block:hover .block__art .illus,
  .sector:hover .sector__art .illus { transform: scale(1.045); }

  /* Photo bands brighten a touch on hover */
  .photo-band { transition: filter 500ms var(--ease); }
  .photo-band:hover { filter: brightness(1.06); }

  /* Rows in the risk register and corporate record */
  .risk, .record > div, .stage { transition: background-color var(--dur) var(--ease); }
  .risk:hover { background: #fbfcfd; }
  .record > div:hover { background: var(--gold-100); }
  .stage:hover { background: #fbfcfd; }

  /* The gold rule under an eyebrow extends on hover of its section head */
  .eyebrow::before { transition: width 380ms var(--ease); }
  .section-head:hover .eyebrow::before,
  .svc-head:hover .eyebrow::before { width: 3rem; }
}

@keyframes rise      { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fade-in   { from { opacity: 0; } to { opacity: 1; } }
@keyframes mega-in   { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes drawer-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes drift     { from { transform: scale(1); } to { transform: scale(1.07); } }

/* ==========================================================================
   COMMODITY SCENE CHOREOGRAPHY
   Each sector illustration is a small staged scene: objects pop, roll, drop
   or grow into place when the scene first scrolls into view (JS adds .play),
   then ambient loops take over — a sack pouring grain, sugar sparkling,
   ore glinting, coffee aroma rising.

   Safety property, learned the hard way: the finished scene is the DEFAULT
   state. Every entrance animation *ends* at the markup's own geometry, and
   none of it runs at all until .play arrives. No JavaScript, no observer, no
   animation support — you simply see the completed illustration.
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {

  .sc [class*='sx-'],
  .sc [class*='lx-'] { transform-box: fill-box; }

  /* ---- Entrances (run once when .play is added) -----------------------
     Motion language: objects blur and stretch along their travel axis while
     moving fast, then sharpen as they decelerate; every arrival lands with
     squash-and-stretch and a decaying bounce; ground shadows spread out
     underneath at the moment of touchdown. Per-segment easings inside the
     keyframes handle gravity — ease-in on every fall, ease-out on every
     rise — rather than one curve stretched over the whole journey. */

  .sc.play [class*='sx-'] { will-change: transform, filter; }

  .sc.play .sx-pop {
    animation: sx-pop .85s linear both;
    animation-delay: var(--d, 0s);
    transform-origin: 50% 100%;
  }
  .sc.play .sx-pop--c { transform-origin: 50% 50%; }   /* cotton puffs from centre */

  .sc.play .sx-drop {
    animation: sx-drop 1.05s linear both;
    animation-delay: var(--d, 0s);
    transform-origin: 50% 100%;
  }
  .sc.play .sx-roll {
    animation: sx-roll 1.05s linear both;
    animation-delay: var(--d, 0s);
    transform-origin: 50% 50%;
  }
  .sc.play .sx-grow {
    animation: sx-grow .9s linear both;
    animation-delay: var(--d, 0s);
    transform-origin: 50% 100%;
  }
  .sc.play .sx-shadow {
    animation: sx-shadow .8s cubic-bezier(.3, .9, .4, 1) both;
    animation-delay: var(--d, 0s);
    transform-origin: 50% 50%;
  }
  /* ---- Ambient loops (run while .play is present) --------------------- */

  .sc.play .lx-sparkle {
    animation: lx-sparkle 2.8s ease-in-out infinite;
    animation-delay: var(--d, 0s);
    transform-origin: 50% 50%;
  }
  .sc.play .lx-glint  { animation: lx-glint 3.2s ease-in-out infinite; animation-delay: var(--d, 0s); }
  .sc.play .lx-steam  { animation: lx-steam 3s ease-out infinite backwards; animation-delay: calc(1.2s + var(--d, 0s)); }
  .sc.play .lx-bob    { animation: lx-scene-bob 4.5s ease-in-out infinite; animation-delay: calc(1.6s + var(--d, 0s)); }
  .sc.play .lx-hop    { animation: lx-hop 6s ease-in-out infinite; animation-delay: 3.2s; }
  .sc.play .lx-shine  { animation: lx-shine 4.5s ease-in-out infinite; animation-delay: 2.2s; }
  .sc.play .lx-bolt   { animation: lx-bolt 4.5s linear infinite; animation-delay: 2.4s; }
}

/* Launch compressed from the ground, stretch on the way up, squash on
   arrival, settle through two decaying rebounds. Blur clears as it slows. */
@keyframes sx-pop {
  0%   { opacity: 0; transform: translateY(34px) scale(.55, .4); filter: blur(4px);
         animation-timing-function: cubic-bezier(.3, .75, .45, .98); }
  38%  { opacity: 1; transform: translateY(-11px) scale(.93, 1.13); filter: blur(0px);
         animation-timing-function: cubic-bezier(.5, .05, .8, .4); }
  56%  { transform: translateY(1px) scale(1.11, .86);
         animation-timing-function: cubic-bezier(.2, .7, .45, .98); }
  73%  { transform: translateY(-4px) scale(.97, 1.05);
         animation-timing-function: cubic-bezier(.5, .05, .8, .4); }
  85%  { transform: translateY(0) scale(1.03, .98);
         animation-timing-function: cubic-bezier(.3, .8, .5, 1); }
  100% { opacity: 1; transform: none; filter: blur(0px); }
}
/* Accelerating fall, tumbling and vertically smeared, sharpening just before
   a squashed impact; two gravity-correct rebounds, each about half the last. */
@keyframes sx-drop {
  0%   { opacity: 0; transform: translateY(-130px) rotate(var(--rot, -120deg)) scale(.9, 1.28); filter: blur(5px);
         animation-timing-function: cubic-bezier(.5, .05, .85, .4); }
  34%  { opacity: 1; transform: translateY(0) rotate(0deg) scale(1.14, .8); filter: blur(0px);
         animation-timing-function: cubic-bezier(.18, .75, .4, .98); }
  50%  { transform: translateY(-24px) rotate(0deg) scale(.96, 1.08);
         animation-timing-function: cubic-bezier(.5, .05, .85, .4); }
  64%  { transform: translateY(0) scale(1.08, .9);
         animation-timing-function: cubic-bezier(.18, .75, .4, .98); }
  76%  { transform: translateY(-9px) scale(.98, 1.03);
         animation-timing-function: cubic-bezier(.5, .05, .85, .4); }
  86%  { transform: translateY(0) scale(1.04, .96);
         animation-timing-function: cubic-bezier(.3, .8, .5, 1); }
  100% { opacity: 1; transform: none; filter: blur(0px); }
}
/* Rolls in smeared along the direction of travel, decelerates, overshoots,
   rocks back once and settles upright. */
@keyframes sx-roll {
  0%   { opacity: 0; transform: translateX(var(--dx, -140px)) rotate(var(--rot, -180deg)) scaleX(1.3); filter: blur(6px);
         animation-timing-function: cubic-bezier(.25, .6, .35, .95); }
  58%  { opacity: 1; transform: translateX(10px) rotate(9deg) scaleX(1.04); filter: blur(.5px);
         animation-timing-function: cubic-bezier(.35, .6, .4, 1); }
  74%  { transform: translateX(-4px) rotate(-4deg) scaleX(1); filter: blur(0px);
         animation-timing-function: cubic-bezier(.4, .1, .5, .95); }
  87%  { transform: translateX(2px) rotate(2deg);
         animation-timing-function: cubic-bezier(.3, .8, .5, 1); }
  100% { opacity: 1; transform: none; filter: blur(0px); }
}
/* Elastic growth: overshoot, dip, small correction, rest. */
@keyframes sx-grow {
  0%   { opacity: 0; transform: scaleY(0);
         animation-timing-function: cubic-bezier(.3, .7, .4, .98); }
  42%  { opacity: 1; transform: scaleY(1.16);
         animation-timing-function: cubic-bezier(.45, .05, .6, .5); }
  62%  { transform: scaleY(.93);
         animation-timing-function: cubic-bezier(.3, .7, .45, .98); }
  80%  { transform: scaleY(1.04);
         animation-timing-function: cubic-bezier(.4, .1, .5, .95); }
  100% { opacity: 1; transform: none; }
}
/* Ground shadow spreads under an object as it arrives. Only transform is
   animated — the ellipse keeps its own faint markup opacity throughout. */
@keyframes sx-shadow {
  0%   { transform: scaleX(.12); }
  62%  { transform: scaleX(1.14); }
  100% { transform: none; }
}
@keyframes lx-sparkle {
  0%, 100% { opacity: 0; transform: scale(.2) rotate(0deg); }
  45%      { opacity: 1; transform: scale(1) rotate(60deg); }
  60%      { opacity: .85; transform: scale(.92) rotate(80deg); }
}
@keyframes lx-glint { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes lx-steam {
  0%   { opacity: 0; transform: translateY(5px) scale(.75); }
  30%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-24px) scale(1.2); }
}
@keyframes lx-scene-bob { 0%, 100% { transform: none; } 50% { transform: translateY(-4px); } }
@keyframes lx-hop {
  0%, 16%, 100% { transform: none; }
  5%  { transform: translateY(-8px) rotate(-6deg); }
  10% { transform: translateY(0); }
  13% { transform: translateY(-3px); }
}
@keyframes lx-shine {
  0%   { transform: translateX(-2px); opacity: 0; }
  18%  { opacity: .6; }
  45%  { transform: translateX(13px); opacity: 0; }
  100% { transform: translateX(13px); opacity: 0; }
}
@keyframes lx-bolt {
  0%, 86%, 100% { opacity: 1; }
  88% { opacity: .25; }
  91% { opacity: 1; }
  94% { opacity: .4; }
  97% { opacity: 1; }
}

/* ---------- Section headers -------------------------------------------- */

.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem); }
.section-head p { color: var(--ink-2); font-size: var(--fs-lead); }
.section-head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
}
.section-head--split > div { max-width: 44rem; }

/* ---------- Card grid --------------------------------------------------- */

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { border-color: var(--navy-600); box-shadow: var(--shadow-md); }
.card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r);
  background: var(--navy-900);
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; font-weight: 400; }
.card p { font-size: var(--fs-sm); color: var(--ink-2); margin-bottom: 1.25rem; }
.card .link-arrow { margin-top: auto; }

.card--flat { background: var(--surface); border-color: transparent; }
.card--flat:hover { border-color: var(--line); }

/* ---------- Statement band ---------------------------------------------- */

.statement { background: var(--surface); }
.statement__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.statement h2 { font-size: var(--fs-h2); }
.statement__figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-900);
}

.pillars { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
.pillar { display: flex; gap: 1rem; }
.pillar__icon {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
}
.pillar__icon svg { width: 17px; height: 17px; }
.pillar h4 { margin: 0 0 0.15rem; color: var(--ink); }
.pillar p { margin: 0; font-size: var(--fs-sm); }

/* ---------- Commodity tabs ---------------------------------------------- */

.tabs__list {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}
.tabs__list button {
  flex: none;
  padding: 0.7rem 1.15rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r);
  color: var(--ink-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tabs__list button:hover { background: var(--surface); color: var(--ink); }
.tabs__list button[aria-selected='true'] {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.tabpanel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: start;
}
@media (max-width: 55.99rem) { .tabpanel { grid-template-columns: 1fr; } }

.tabpanel h3 { font-size: var(--fs-h3); margin-bottom: 0.75rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.chip--lead { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

.notice {
  display: flex;
  gap: 0.9rem;
  padding: 1.15rem 1.35rem;
  margin-top: 2rem;
  background: #f3f6fb;
  border-left: 3px solid var(--navy-600);
  border-radius: 0 var(--r) var(--r) 0;
}
.notice svg { width: 20px; height: 20px; flex: none; color: var(--navy-600); margin-top: 2px; }
.notice p { margin: 0; font-size: var(--fs-sm); color: var(--ink-2); }
.notice strong { color: var(--ink); font-weight: 600; }

/* ---------- Workflow rail ----------------------------------------------- */

.rail { position: relative; }
.rail__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;   /* see .carousel__track — mandatory jams at the end */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 1.25rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.rail__track::-webkit-scrollbar { display: none; }

.step {
  flex: none;
  width: min(19rem, 78vw);
  scroll-snap-align: start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  border-top: 3px solid var(--gold-500);
}
.step__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--navy-600);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  display: block;
}
.step h4 { margin: 0 0 0.4rem; color: var(--ink); font-size: 1.0625rem; }
.step p { margin: 0; font-size: var(--fs-sm); }

.rail__controls { display: flex; gap: 0.5rem; }
.rail__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.rail__btn:hover:not(:disabled) { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.rail__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.rail__btn svg { width: 19px; height: 19px; }

/* ---------- Heritage timeline ------------------------------------------- */

.heritage { background: var(--navy-900); position: relative; overflow: hidden; }

/* A faint gold wash behind the timeline, echoing the logo's sun */
.heritage::before {
  content: '';
  position: absolute;
  top: 42%; right: -8%;
  width: 46rem; height: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 182, 5, 0.10) 0%, rgba(251, 182, 5, 0) 68%);
  pointer-events: none;
}
.heritage > .container { position: relative; }

.tl {
  --tl-gap: clamp(1rem, 0.4rem + 1.5vw, 2rem);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--tl-gap);
  margin-top: clamp(2.25rem, 1.6rem + 2vw, 3.5rem);
}

/* Flex column so the relevance note can be pushed to the bottom of every
   cell, keeping that row aligned across milestones of differing length. */
.tl__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 3rem;
}

/* Rail: a hairline base with a gold segment that draws in on reveal.
   Each item owns the segment reaching across the gap to the next one. */
.tl__item::before,
.tl__item::after {
  content: '';
  position: absolute;
  top: 11px;
  left: 10px;
  right: calc(-1 * var(--tl-gap));
  height: 2px;
}
.tl__item::before { background: var(--line-dark); }

/* The gold rail is drawn in full by default. Where the browser can drive an
   animation from scroll position it wipes in left to right as the timeline
   arrives — but it is never hidden waiting for a script to run. */
.tl__item::after {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(1);
  transform-origin: left;
}
.tl__item:last-child::before,
.tl__item:last-child::after { display: none; }

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .tl__item::after {
      animation: tl-draw 1s linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
    }
  }
}
@keyframes tl-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Hollow ring at rest; fills gold on the milestone you are on — hover on
   desktop, the centred card while the rail scrolls on phones (.is-current
   is set by initTimeline in site.js; without JS the rings simply stay hollow). */
.tl__marker {
  position: absolute;
  top: 2px; left: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 3px solid var(--gold-500);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.tl__item:hover .tl__marker,
.tl__item.is-current .tl__marker {
  background: var(--gold-500);
}
.tl__item:hover .tl__marker {
  transform: scale(1.22);
  box-shadow: 0 0 0 7px rgba(251, 182, 5, 0.14);
}

.tl__year {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.05rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.tl__month {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.85rem;
}
.tl__item h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  letter-spacing: 0;
}
/* The description absorbs the leftover height so the rule above the relevance
   note lands at the same y across every milestone, whatever the text length. */
.tl__item p {
  margin: 0;
  flex: 1 0 auto;
  font-size: var(--fs-sm);
  color: var(--on-dark-2);
  max-width: 28ch;
}
/* Fixed slot height (≈3 lines) so the rules line up across the row even though
   the notes themselves run to different lengths. */
.tl__rel {
  display: block;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  min-height: 4.6rem;
  border-top: 1px solid var(--line-dark-soft);
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--gold-300);
  max-width: 28ch;
}

/* Below the desktop breakpoint the timeline becomes a horizontal rail */
@media (max-width: 67.49rem) {
  .tl {
    display: flex;
    overflow-x: auto;
    /* proximity, not mandatory: mandatory snapping fights the finger and can
       make the rail feel stuck on a phone */
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    /* keep a sideways swipe on the timeline from triggering browser back-nav */
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 1rem;
    /* fade the trailing edge so the row visibly continues off-screen */
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 88%, transparent 100%);
    /* Bleed to the viewport edge so the row reads as scrollable, but keep the
       snap positions on the container gutter rather than the screen edge. */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scroll-padding-inline: var(--gutter);
  }
  .tl::-webkit-scrollbar { display: none; }
  .tl__item { flex: 0 0 auto; width: 15.5rem; scroll-snap-align: start; }
}

/* ---------- News list ---------------------------------------------------- */

.news-list { max-width: 62rem; border-top: 1px solid var(--line); }
.news-item {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: clamp(1.25rem, 1rem + 1vw, 2rem);
  align-items: start;
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
}
.news-item__thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--r);
  background-color: var(--navy-900);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Where the publisher offers no article photograph, name the masthead instead
   of inventing imagery — honest, and it keeps the row visually even. */
.news-item__thumb--name {
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--surface);
}
.news-item__thumb--name span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy-900);
  position: relative;
  padding-bottom: 0.6rem;
}
.news-item__thumb--name span::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 2rem; height: 2px;
  background: var(--gold-500);
}
@media (max-width: 43.99rem) {
  .news-item { grid-template-columns: 1fr; }
  .news-item__thumb { aspect-ratio: 16 / 9; }
}
.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-bottom: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.news-item__date { color: var(--gold-ink); }
.news-item__source { color: var(--ink-3); }
.news-item h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.news-item h3 a {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.news-item h3 a:hover { color: var(--navy-700); text-decoration: underline; }
.news-item h3 svg { width: 15px; height: 15px; flex: none; align-self: center; color: var(--ink-3); }
.news-item p { font-size: var(--fs-sm); color: var(--ink-2); margin-bottom: 0.5rem; }
.news-item__note {
  font-size: var(--fs-xs);
  color: var(--ink-3);
  padding-left: 0.85rem;
  border-left: 2px solid var(--gold-500);
  margin: 0;
}

/* ---------- Compliance grid --------------------------------------------- */

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.risk {
  background: var(--white);
  padding: 1.6rem;
}
.risk h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: var(--fs-body);
}
.risk h4 svg { width: 18px; height: 18px; color: var(--navy-600); flex: none; }
.risk p { margin: 0; font-size: var(--fs-sm); }

/* ==========================================================================
   LEGAL PAGES
   Long-form policy text. Narrow measure, numbered headings, generous rhythm.
   ========================================================================== */

.page-head__meta {
  margin: 1.25rem 0 0;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}

.legal { max-width: 46rem; }
.legal__intro {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.legal__block { margin-bottom: 2.75rem; scroll-margin-top: 7rem; }
.legal__block h2 {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 0.9rem;
}
.legal__num {
  flex: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gold-ink);
}
.legal__block p { color: var(--ink-2); line-height: 1.7; margin: 0 0 0.9rem; }
.legal__block p:last-child { margin-bottom: 0; }
.legal__block strong { color: var(--ink); font-weight: 600; }

.legal__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--ink-2);
}
.legal__list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.4rem;
  line-height: 1.6;
}
.legal__list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.95em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

.legal__note {
  margin-top: 3rem;
  padding: 1.5rem 1.6rem;
  background: var(--surface);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 6px 6px 0;
}
.legal__note h3 { font-size: var(--fs-body); font-weight: 600; margin: 0 0 0.5rem; }
.legal__note p { margin: 0; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.65; }

/* ==========================================================================
   CONTACT DIALOG
   Stands in for mailto: links, which do nothing without a mail client.
   ========================================================================== */

.cdialog {
  width: min(34rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(11, 35, 76, 0.28);
  overflow: auto;
  overscroll-behavior: contain;
}
.cdialog::backdrop { background: rgba(11, 35, 76, 0.55); }

@media (prefers-reduced-motion: no-preference) {
  .cdialog[open] { animation: cdialog-in 260ms var(--ease) both; }
  .cdialog[open]::backdrop { animation: cdialog-fade 260ms var(--ease) both; }
}
@keyframes cdialog-in   { from { opacity: 0; transform: translateY(12px) scale(.985) } to { opacity: 1; transform: none } }
@keyframes cdialog-fade { from { opacity: 0 } to { opacity: 1 } }

.cdialog__close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
}
.cdialog__close:hover { background: var(--surface); color: var(--ink); }
.cdialog__close svg { width: 18px; height: 18px; }

.cdialog__head {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}
.cdialog__head h2 {
  font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem);
  font-weight: 300;
  margin: 0.35rem 0 0.75rem;
}
.cdialog__to {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.cdialog__to strong { color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }
.cdialog__copy {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-2);
  font: inherit;
  font-size: var(--fs-xs);
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
  cursor: pointer;
}
.cdialog__copy:hover { border-color: var(--navy-700); color: var(--navy-700); }
.cdialog__copy.is-done { border-color: var(--gold-500); color: var(--gold-ink); }

.cdialog__form { padding: 1.5rem 1.75rem 1.75rem; }
.cdialog__form .field + .field { margin-top: 1rem; }
.field__opt { color: var(--ink-3); font-weight: 400; }

.cdialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.cdialog__actions .btn { flex: 1 1 auto; justify-content: center; }

/* On a phone the dialog becomes a bottom sheet: anchored to the bottom edge
   where the thumb is, full width, and clear of the home indicator. */
@media (max-width: 34rem) {
  .cdialog {
    width: 100%;
    max-width: 100%;
    max-height: 92dvh;
    margin: 0 0 0 0;
    top: auto;
    bottom: 0;
    border-radius: 14px 14px 0 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    .cdialog[open] { animation: cdialog-sheet 300ms var(--ease) both; }
  }
  .cdialog__head { padding: 1.5rem 1.25rem 1.1rem; }
  .cdialog__form {
    padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  }
  .cdialog__actions .btn { flex: 1 1 100%; }
  /* A grab handle, so it reads as a sheet you can dismiss */
  .cdialog::before {
    content: "";
    display: block;
    width: 36px; height: 4px;
    margin: 0.6rem auto 0;
    border-radius: 2px;
    background: var(--line);
  }
}
@keyframes cdialog-sheet { from { transform: translateY(100%) } to { transform: none } }

/* ---- Quantity with a fixed unit ------------------------------------------
   Everything is quoted in metric tonnes, so the unit is a label attached to
   the field rather than a choice to make. */
.field__row { display: flex; }
.field__row input {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  border-right: 0;
}
.field__unit {
  flex: none;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--surface);
  color: var(--ink-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field__row input:focus + .field__unit { border-color: var(--navy-600); }

/* ---- Rejected by the mail service (bad address, etc.) -------------------- */
.form-error {
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  border-left: 3px solid #c0392b;
  background: #fdf1ef;
  color: #8e2b1e;
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.field__hint {
  margin: 0.4rem 0 0;
  font-size: var(--fs-xs);
  color: var(--ink-3);
}
/* A field the visitor has filled in wrongly, once they have moved on */
.l-form input:not(:placeholder-shown):invalid,
.l-form select:invalid:not(:focus) { border-color: #c0392b; }

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---- Could-not-send fallback -------------------------------------------- */
.form-fallback {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 6px 6px 0;
  background: var(--surface);
}
.form-fallback p { margin: 0 0 0.75rem; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }
.form-fallback strong { color: var(--ink); }
.form-fallback__text {
  width: 100%;
  font: inherit;
  font-size: var(--fs-xs);
  line-height: 1.5;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink-2);
  resize: vertical;
  margin-bottom: 0.75rem;
}
.btn--sm { padding: 0.45rem 0.9rem; font-size: var(--fs-xs); }

/* ---- Contact details list (contact page) --------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-sm);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list__icon {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: var(--surface);
  color: var(--navy-700);
}
.contact-list__icon svg { width: 17px; height: 17px; }
.contact-list .l-label { display: block; margin-bottom: 0.15rem; }
.contact-list a { overflow-wrap: anywhere; }

/* ==========================================================================
   ILLUSTRATION SYSTEM
   Flat 2D vector scenes drawn in the brand palette. Colours come from CSS
   variables so every illustration stays in step with the rest of the site.
   ========================================================================== */

:root {
  --il-sky:    #e7edf7;
  --il-sky-2:  #d4e0f0;
  --il-ground: #d9dee5;
  --il-water:  #c4d4e9;
  --il-navy:   #0b234c;
  --il-navy-2: #1a3e76;
  --il-blue:   #3e6da8;
  --il-blue-2: #8fabce;
  --il-gold:   #fbb605;
  --il-gold-2: #ffd97a;
  --il-grey:   #c2c8d0;
  --il-grey-2: #9aa3ae;
  --il-white:  #ffffff;
}

.illus { display: block; width: 100%; height: auto; }

/* ---- Motion. Declared only for users who have not asked for less of it --- */

@media (prefers-reduced-motion: no-preference) {
  .an-bob   { animation: il-bob 5s ease-in-out infinite; }
  .an-bob-2 { animation: il-bob 6.5s ease-in-out infinite; }
  .an-float { animation: il-float 5.5s ease-in-out infinite; }
  .an-wave  { animation: il-wave 5s linear infinite; }
  .an-wave-2{ animation: il-wave 7.5s linear infinite; }
  .an-road  { animation: il-road 1.1s linear infinite; }
  /* Cloud layer behind the freighter. Far slower than the road dashes, and the
     two speeds together read as depth rather than as one sliding backdrop. */
  .an-drift { animation: il-drift 14s linear infinite; }
  .an-drift-2 { animation: il-drift 22s linear infinite; }
  .an-spin  { animation: il-spin 2.2s linear infinite; transform-box: fill-box; transform-origin: center; }
  .an-puff  { animation: il-puff 3.6s ease-out infinite; transform-box: fill-box; }
  .an-puff-2{ animation: il-puff 3.6s ease-out 1.2s infinite; transform-box: fill-box; }
  .an-puff-3{ animation: il-puff 3.6s ease-out 2.4s infinite; transform-box: fill-box; }
  .an-pulse { animation: il-pulse 2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .an-tick  { animation: il-tick 3.2s ease-in-out infinite; }

  /* Cards pause their scene while idle and play it on hover/focus */
  .svc-card__art .an-hover { animation-play-state: paused; }
  .svc-card:hover .an-hover,
  .svc-card:focus-within .an-hover { animation-play-state: running; }
}

@keyframes il-bob   { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-3px) } }
@keyframes il-float { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-5px) } }
@keyframes il-wave  { to { transform: translateX(-40px) } }
@keyframes il-road  { to { transform: translateX(-32px) } }
@keyframes il-drift { to { transform: translateX(-120px) } }
@keyframes il-spin  { to { transform: rotate(360deg) } }
@keyframes il-puff  {
  0%   { opacity: 0;   transform: translate(0, 0) scale(.5) }
  25%  { opacity: .55 }
  100% { opacity: 0;   transform: translate(-10px, -22px) scale(1.5) }
}
@keyframes il-pulse { 0%, 100% { transform: scale(1); opacity: 1 } 50% { transform: scale(1.12); opacity: .75 } }
@keyframes il-tick  { 0%, 60%, 100% { stroke-dashoffset: 0 } 20%, 45% { stroke-dashoffset: 22 } }

/* ==========================================================================
   CAROUSEL — the Maersk services/sectors pattern
   ========================================================================== */

.carousel { position: relative; }

/* The track is masked at the trailing edge so the next card fades out,
   signalling there is more to scroll. Removed once the end is reached. */
.carousel__viewport {
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 84%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0, #000 84%, transparent 100%);
  transition: -webkit-mask-image var(--dur) var(--ease), mask-image var(--dur) var(--ease);
}
.carousel.is-end .carousel__viewport,
.carousel.is-static .carousel__viewport {
  -webkit-mask-image: none;
  mask-image: none;
}

.carousel__track {
  --cgap: clamp(1rem, 0.7rem + 1.1vw, 1.75rem);
  display: flex;
  gap: var(--cgap);
  overflow-x: auto;
  /* Proximity, never mandatory. With mandatory snapping the final card has no
     snap position left to reach, so the browser drags the track back under the
     finger — on a phone that reads as the carousel jamming at the end. */
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  /* stop a sideways swipe turning into the browser's back gesture */
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-block: 0.25rem 1rem;
}
.carousel__track::-webkit-scrollbar { display: none; }

/* Cards grow to fill the row whatever the group holds, so a four-card tab and
   a five-card tab both sit flush edge to edge with nothing left hanging.
   Growing but never shrinking is what makes that work: past the basis the row
   simply overflows and scrolls, instead of squashing five cards into a phone. */
.carousel__item {
  flex: 1 0 13rem;
  scroll-snap-align: start;
}

/* Nothing to scroll means nothing to scroll with. On a desktop row that shows
   every card at once the arrows and dots are dead controls, so they go. */
.carousel.is-static .carousel__foot { display: none; }

.carousel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}
.carousel__dots { display: flex; align-items: center; gap: 0.125rem; }

/* The button is a 24px target for pointer and touch; the visible dot is the
   small pseudo-element inside it. Keeps the indicator discreet without
   shrinking the thing people actually have to hit. */
.carousel__dot {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.carousel__dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: var(--line);
  transition: width var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.carousel__dot:hover::after { background: var(--ink-3); }
.carousel__dot[aria-current='true']::after { width: 26px; background: var(--navy-900); }
.carousel__nav { display: flex; gap: 0.5rem; margin-left: auto; }

/* ---- Service card ------------------------------------------------------ */

.svc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.svc-card:hover { text-decoration: none; }
.svc-card__art {
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: var(--il-sky);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.svc-card:hover .svc-card__art,
.svc-card:focus-visible .svc-card__art { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.svc-card:hover h3 { color: var(--navy-700); }
.svc-card p { font-size: var(--fs-sm); color: var(--ink-2); margin: 0; }

/* ---- Sector card ------------------------------------------------------- */

.sector {
  display: block;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--r);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sector:hover, .sector:focus-visible {
  border-color: var(--line);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.sector__art { border-radius: var(--r-sm); overflow: hidden; background: var(--il-sky); }
.sector__label {
  display: block;
  margin-top: 0.9rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
}
.sector:hover .sector__label { color: var(--navy-700); }
.carousel--sectors .carousel__item {
  width: calc((100% - 5 * var(--cgap)) / 6);
  min-width: 10.5rem;
}

/* ---- Service tabs ------------------------------------------------------ */

.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.75rem, 1.3rem + 1.6vw, 2.75rem);
}
.svc-tabs::-webkit-scrollbar { display: none; }
.svc-tabs button {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.15rem;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  color: var(--ink-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.svc-tabs button svg { width: 19px; height: 19px; }
.svc-tabs button:hover { color: var(--ink); }
.svc-tabs button[aria-selected='true'] { color: var(--navy-900); border-bottom-color: var(--gold-500); }

.svc-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); }
.svc-head p { margin-inline: auto; color: var(--ink-2); font-size: var(--fs-lead); }

@media (max-width: 47.99rem) {
  .svc-tabs { justify-content: flex-start; }
  .svc-head { text-align: left; }
  .svc-head p { margin-inline: 0; }
}

/* ---------- Specification card ------------------------------------------ */

/* Monospaced field label */
.l-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.spec {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.spec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--navy-900);
  color: var(--white);
}
.spec__head h2 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.spec__stamp {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-500);
  padding: 0.22rem 0.5rem;
  border-radius: 3px;
  font-weight: 600;
  white-space: nowrap;
}
.spec__row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.72rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.spec__row:last-of-type { border-bottom: 0; }
.spec__row dd { margin: 0; font-size: var(--fs-sm); color: var(--ink); font-weight: 500; }
.spec__foot {
  padding: 0.9rem 1.25rem;
  margin: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: none;
}
@media (max-width: 30rem) {
  .spec__row { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ---------- Enquiry form ------------------------------------------------ */

.l-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
}
.l-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 1rem 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  font: inherit;
  /* Never below 16px: iOS Safari auto-zooms the page when focusing a smaller
     input, which wrecks the mobile experience of the enquiry form. */
  font-size: 1rem;
  color: var(--ink);
  padding: 0.65rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  min-height: 44px;
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-600);
  outline: 2px solid var(--navy-700);
  outline-offset: 1px;
}
.l-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.l-form__note { font-size: var(--fs-xs); color: var(--ink-3); margin: 0; max-width: 36rem; }
.form-sent {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: var(--gold-100);
  border: 1px solid #f0d190;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: #6b4500;
  max-width: none;
}

/* ---------- Compact lists inside cards ---------------------------------- */

.mini-steps { margin: 0 0 1.35rem; }
.mini-steps li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.mini-steps li span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--gold-ink);
  flex: none;
}

.mini-list { margin: 0 0 1.35rem; }
.mini-list li {
  position: relative;
  padding: 0.32rem 0 0.32rem 1.5rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.mini-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.72rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ---------- Inner-page building blocks ---------------------------------- */

/* Anchored sector / service block */
.block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 7rem;
}
.block:first-of-type { border-top: 0; }
@media (max-width: 55.99rem) { .block { grid-template-columns: 1fr; } }

.block__art {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--il-sky);
  max-width: 26rem;
}
.block h2 {
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Numbered stage list for the execution page */
.stages { counter-reset: stage; }
.stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 0.6rem + 1.4vw, 2rem);
  padding: clamp(1.25rem, 1rem + 1vw, 1.85rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.stage__n {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: 200;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--navy-600);
  min-width: 2.5rem;
}
.stage h3 { font-size: 1.1875rem; font-weight: 500; margin-bottom: 0.4rem; }
.stage p { margin: 0; font-size: var(--fs-sm); }
.stage__note {
  display: block;
  margin-top: 0.65rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--gold-500);
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

/* Definition-style corporate record */
.record {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.record > div {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 1rem 2rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.record > div:last-child { border-bottom: 0; }
.record > div:nth-child(odd) { background: #fcfcfd; }
.record dt { font-weight: 600; color: var(--ink); font-size: var(--fs-sm); }
.record dd { margin: 0; font-size: var(--fs-sm); color: var(--ink-2); }
@media (max-width: 40rem) { .record > div { grid-template-columns: 1fr; gap: 0.25rem; } }

/* Source list */
.sources li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-sm);
}
.sources li a { word-break: break-word; }
.sources li span { display: block; color: var(--ink-3); font-size: var(--fs-xs); margin-top: 0.2rem; }

/* ---------- CTA band ---------------------------------------------------- */

.cta-band { background: var(--navy-900); position: relative; overflow: hidden; }
.cta-band__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 2rem 3rem;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: var(--on-dark-2); margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-end; }
@media (max-width: 55.99rem) { .cta-band__actions { justify-content: flex-start; } }

