  /* Captains testimonials */
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
  .tmoin {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .tmoin__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--color-primary);
    line-height: 1.45;
    flex: 1;
  }
  .tmoin__quote::before {
    content: "\201C";
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 0.5;
    color: var(--color-accent);
    display: block;
    margin-bottom: 12px;
  }
  .tmoin__who {
    border-top: 1px solid var(--color-border);
    padding-top: 14px;
  }
  .tmoin__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
  }
  .tmoin__role {
    font-size: 13px;
    color: var(--color-text-muted);
    font-style: italic;
  }

  /* Real partners with logos */
  .partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
  }
  @media (max-width: 880px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 540px) { .partner-grid { grid-template-columns: 1fr 1fr; } }
  .partner-cell {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    aspect-ratio: 3 / 2;
    display: grid; place-items: center;
    padding: 18px;
  }
  .partner-cell img {
    max-width: 100%; max-height: 100%; object-fit: contain;
    filter: grayscale(0.4);
    opacity: 0.85;
    transition:
      filter 380ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .partner-cell:hover img { filter: none; opacity: 1; }

/* ===== Our latest news ===== */
/* News rail — horizontal scroll-snap. Every press item stays reachable by
   scrolling (or the arrows); nothing is truncated. */
.news-rail { position: relative; }
.news-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  -webkit-overflow-scrolling: touch;
}
.news-grid::-webkit-scrollbar { height: 8px; }
.news-grid::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 999px; }
.news-grid::-webkit-scrollbar-track { background: transparent; }
/* edge fades + arrow controls hint there is more to scroll */
.news-rail::before,
.news-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 14px;
  width: 56px;
  pointer-events: none;
  z-index: 2;
}
.news-rail::before { left: 0; background: linear-gradient(90deg, var(--color-bg-base) 10%, transparent); }
.news-rail::after { right: 0; background: linear-gradient(270deg, var(--color-bg-base) 10%, transparent); }

.news-rail__nav {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease, border-color 200ms ease;
}
.news-rail__nav:hover { transform: scale(1.08); border-color: var(--color-accent); }
.news-rail__nav--prev { left: -8px; }
.news-rail__nav--next { right: -8px; }
.news-rail__nav[hidden] { display: none; }
@media (max-width: 720px) {
  .news-rail__nav { display: none; }
  .news-rail::before, .news-rail::after { width: 32px; }
}

.news-card {
  flex: 0 0 clamp(260px, 31%, 340px);
  scroll-snap-align: start;
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -10px rgba(10, 31, 34, 0.16);
  border-color: var(--color-accent);
}
@media (max-width: 980px) { .news-card { flex-basis: clamp(260px, 46%, 360px); } }
@media (max-width: 540px) { .news-card { flex-basis: 84%; } }

.news-card--featured {
  background: linear-gradient(180deg, #F8FDFF 0%, #ffffff 100%);
  border: 1px solid var(--color-accent);
}

.news-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-accent-pale);
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .news-card__media img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
}

.news-card__media--contain {
  background: #F8FDFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.news-card__media--contain img {
  object-fit: contain;
  width: auto;
  max-width: 80%;
  max-height: 100%;
  height: auto;
}

.news-card__body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-card__source {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
}
.news-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-primary);
  text-wrap: balance;
}
.news-card__cta {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cta);
  letter-spacing: 0.02em;
}

/* News card with looping video */
.news-card__media--video {
  position: relative;
  background: var(--color-bg-dark);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.news-card__media--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.news-card__media--video::after {
  content: "▶ VIDEO";
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(10, 31, 34, 0.55);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* HERO — Cinematic, full-bleed: now defined in site.css so it ships on
   every page. Home-specific tuning (if any) can be appended here later. */

/* ===== How it works — sequence =====
   Editorial horizontal timeline. 4 acts connected by a hairline coral track.
   Oversized Fraunces italic numerals sit behind each step at low opacity,
   the way a print editorial would letter a sequence. Mobile collapses to a
   vertical rail anchored to a single coral line on the left.
   --------------------------------------------------------------------- */
.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  isolation: isolate;
}

/* Horizontal connector — hairline behind the node dots.
   Drawn as two stacked layers: a faint base track + a coral foreground
   that fills in on hover/focus of the section. */
.flow::before,
.flow::after {
  content: "";
  position: absolute;
  top: 26px; /* aligned with .flow__node center */
  left: calc(100% / 8); /* center of first column */
  right: calc(100% / 8); /* center of last column */
  height: 1px;
  z-index: 0;
  pointer-events: none;
}
.flow::before {
  background: var(--color-border);
}
.flow::after {
  background: var(--color-cta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.flow:hover::after,
.flow:focus-within::after {
  transform: scaleX(1);
}

.flow__step {
  position: relative;
  padding: 0 8px;
  display: grid;
  grid-template-rows: 52px auto;
  align-content: start;
  z-index: 1;
}

/* Oversized Fraunces italic numeral, ghosted behind the content.
   Coral, low opacity — reads as a tag the same way Pentagram or Field.io
   numbers their sequences. */
.flow__numeral {
  position: absolute;
  top: -36px;
  left: -4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 112px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-cta);
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1),
    color 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Dot on the timeline. Sits in the first grid row so the connector
   passes through its center. */
.flow__node {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--color-bg-base);
  border: 1.5px solid var(--color-cta);
  margin-top: 21px; /* centers on the 1px track at top: 26px */
  position: relative;
  z-index: 2;
  transition:
    background 320ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flow__body {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-primary);
  margin: 0;
}

.flow__copy {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 30ch;
}

.flow__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  transition: color 360ms cubic-bezier(0.4, 0, 0.2, 1);
}
.flow__tag::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  flex: none;
}

/* Hover state — anchored on the step, surfaces the act it represents.
   No transform on the card (preserves .reveal anim); only color + node fill. */
.flow__step:hover .flow__numeral,
.flow__step:focus-within .flow__numeral {
  opacity: 0.18;
  color: var(--color-primary);
}
.flow__step:hover .flow__node,
.flow__step:focus-within .flow__node {
  background: var(--color-cta);
}
.flow__step:hover .flow__tag,
.flow__step:focus-within .flow__tag {
  color: var(--color-cta);
}

/* ------- Responsive ------- */
@media (max-width: 980px) {
  .flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }
  /* Track becomes per-row — easier to keep clean: hide the global one and
     let each step stand on its own dot. Numerals stay editorial. */
  .flow::before,
  .flow::after { display: none; }
  .flow__numeral { font-size: 96px; top: -28px; }
}

@media (max-width: 640px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 28px;
  }
  /* Vertical rail anchored at left */
  .flow::before,
  .flow::after {
    display: block;
    top: 12px;
    bottom: 12px;
    left: 5px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .flow::after {
    transform: scaleY(0);
    transform-origin: top center;
  }
  .flow:hover::after,
  .flow:focus-within::after {
    transform: scaleY(1);
  }
  .flow__step {
    grid-template-rows: auto;
    padding: 0;
  }
  .flow__node {
    position: absolute;
    top: 14px;
    left: -28px;
    margin-top: 0;
  }
  .flow__numeral {
    position: static;
    font-size: 64px;
    opacity: 0.14;
    display: block;
    margin: 0 0 -8px -2px;
  }
  .flow__title { font-size: 22px; }
}

/* Respect reduced motion: kill the track-fill transition, keep states static. */
@media (prefers-reduced-motion: reduce) {
  .flow::after,
  .flow__numeral,
  .flow__node,
  .flow__tag {
    transition: none;
  }
}

/* =========================================================================
   Story / Founder — single source of truth.
   Loaded last in the cascade. Hard-overrides any legacy rule (circle, ring,
   white card). The image is a clean rectangular crop (no pre-baked frame).
   ========================================================================= */
.story {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 48px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .story { grid-template-columns: 1fr; gap: 20px; max-width: 480px; justify-items: center; }
}
.story__media {
  margin: 0;
  width: 240px;
  height: 240px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  aspect-ratio: 1;
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(0.98) contrast(1.02);
  transition: filter 500ms ease;
}
.story__media:hover img { filter: saturate(1.05) contrast(1.03); }

.story__body { max-width: 56ch; }
.story__title { margin: 8px 0 24px !important; }
.story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0 0 28px;
  padding: 6px 0 6px 18px;
  border-left: 2px solid var(--color-cta);
  text-wrap: pretty;
}
.story__quote::before { content: none !important; }
.story__quote em {
  font-style: normal;
  color: var(--color-primary);
  background: linear-gradient(180deg, transparent 65%, rgba(184, 221, 225, 0.55) 65%);
  padding: 0 2px;
}
.story__author {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.story__author::before {
  content: "—";
  color: var(--color-text-muted);
  font-size: 14px;
}
.story__author-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-primary);
}
.story__author-role {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ===== Instagram feed ===== */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-accent-pale);
  text-decoration: none;
  transition: box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.ig-card:hover img { transform: scale(1.06); filter: saturate(1.05); }
.ig-card:hover {
  box-shadow: 0 12px 28px -14px rgba(10, 31, 34, 0.18);
}
.ig-card__badge {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 11px;
  background: rgba(10, 31, 34, 0.55);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ig-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 31, 34, 0.85) 100%);
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 280ms ease;
}
.ig-card:hover .ig-card__caption { opacity: 1; }

/* ===========================================================
   Editorial bands — documentary photos between text sections.
   Used to give pages breathing room without dressing them
   up. Two variants: full-width wide cinematic strip and a
   centered editorial card. Both are decorative (aria-hidden).
   =========================================================== */
.editorial-band {
  margin: 0;
  padding: 0;
}
.editorial-band picture,
.editorial-band img {
  display: block;
  width: 100%;
  height: auto;
}
/* Wide cinematic band, edge to edge */
.editorial-band--wide {
  width: 100%;
  overflow: hidden;
}
.editorial-band--wide img {
  aspect-ratio: 21 / 9;
  object-fit: cover;
  max-height: 240px;
}
@media (max-width: 720px) {
  .editorial-band--wide img { max-height: 180px; }
}
/* Centered editorial card, max-width, soft round corners */
.editorial-band--centered {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
.editorial-band--centered img {
  border-radius: var(--radius-xl);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 720px) {
  .editorial-band--centered { padding: 24px 16px 0; }
  .editorial-band--centered img { border-radius: var(--radius-lg); }
}

/* =========================================================================
   PARTNERS — marquee inside the partners section (full-bleed)
   Inherits the .trust-strip__logos / __track / __track-row animation.
   ========================================================================= */
.partners-marquee {
  width: 100%;
  margin: 12px 0 0;
}
.partners-marquee.trust-strip__logos { padding: 16px 0; }
.partners-marquee .trust-strip__track,
.partners-marquee .trust-strip__track-row {
  gap: 64px;
}
.partners-marquee img {
  max-height: 72px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  opacity: 0.72;
  transition:
    filter 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.partners-marquee img:hover,
.partners-marquee a:hover img,
.partners-marquee a:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
}
.partners-marquee .trust-strip__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 720px) {
  .partners-marquee .trust-strip__track,
  .partners-marquee .trust-strip__track-row { gap: 40px; }
  .partners-marquee img {
    max-height: 52px;
    max-width: 160px;
  }
}

/* AMNOR membership + ISO/TS 23099 note (institutional ecosystem) */
.eco-note {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 660px;
  margin: 28px auto 0;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}
.eco-note__logo {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 11px;
  object-fit: contain;
  box-shadow: 0 6px 16px -10px rgba(0, 95, 97, 0.30);
}
.eco-note__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.eco-note__text a { color: var(--color-cta); font-weight: 600; }
.eco-note__text strong { color: var(--color-text-primary); font-weight: 600; }
@media (max-width: 560px) {
  .eco-note { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =========================================================================
   PARALLAX BAND — full-width editorial cinematic strip (sustainability)
   Uses a JS-driven translate on .parallax-band__bg for smooth performance.
   Falls back to a static cover image if JS / motion is disabled.
   ========================================================================= */
.parallax-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(360px, 62vh, 640px);
  overflow: hidden;
  background: #0b1416;
  isolation: isolate;
}
.parallax-band__bg {
  position: absolute;
  inset: -12% 0 -12% 0;
  background-image: var(--parallax-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: opacity 600ms ease;
}
.parallax-band__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 20, 22, 0.18) 0%,
    rgba(11, 20, 22, 0) 35%,
    rgba(11, 20, 22, 0) 65%,
    rgba(11, 20, 22, 0.28) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.parallax-band--warm {
  /* Shorter than the lead band — this one sits mid-page and was too tall. */
  height: clamp(280px, 42vh, 460px);
}
.parallax-band--warm .parallax-band__veil {
  background: linear-gradient(180deg,
    rgba(40, 18, 6, 0.22) 0%,
    rgba(40, 18, 6, 0) 35%,
    rgba(40, 18, 6, 0) 65%,
    rgba(40, 18, 6, 0.30) 100%
  );
}

/* WebP progressive enhancement when supported */
@supports (background-image: image-set(url("x.webp") type("image/webp"))) {
  .parallax-band__bg { background-image: var(--parallax-img-webp); }
}

@media (max-width: 720px) {
  .parallax-band { height: clamp(280px, 50vh, 420px); }
  .parallax-band__bg { inset: -8% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-band__bg { transform: none !important; }
}

/* ---------- Footnote (evidence reference) ---------- */
.footnote-ref {
  color: var(--color-cta);
  text-decoration: none;
  font-weight: 700;
  padding: 0 1px;
}
.footnote-ref:hover { text-decoration: underline; }
.vision-footnote {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.vision-footnote:target { color: var(--color-text-primary); }

/* =========================================================================
   Home layout utilities — extracted from inline styles (same computed result)
   ========================================================================= */
/* Centered intro block above a section's content */
.home-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.home-intro--w760 { max-width: 760px; }
.home-intro--w940 { max-width: 940px; }
.home-intro--flush { margin-bottom: 0; }
.home-intro--gap-56 { margin-bottom: 80px; }
/* Left-aligned section lead block */
.home-lead { max-width: 720px; margin: 0 auto 48px; }
.home-lead--gap-64 { margin-bottom: 64px; }
/* (Section header row `.head-row` lives in site.css — shared with partner pages.) */

/* Numbered "Our vision" list */
.vision-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.vision-list__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
}
.vision-list__item:last-child { border-bottom: 1px solid var(--color-border); }
.vision-list__num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-cta);
  font-size: 18px;
  line-height: 1.2;
}
.vision-list__text { font-size: 15px; color: var(--color-text-primary); line-height: 1.5; }
/* The inline `<strong style="color:…">` lives inside {% blocktrans %} (it is part
   of the translated string), so it stays in the template, not here. */

/* Italic note under the verticals grid */
.verticals__note {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
}
