/* OMEGA shared component styles - nav, footer, landing pages, supporters bar.
   Base typography is scoped to body.omg-page so the legacy pages, which carry
   their own inline stylesheet, are not affected by loading this file. */
body.omg-page {
  margin: 0;
  color: #16281A;
  line-height: 1.6;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Helvetica, Arial, sans-serif;
}
body.omg-page * { box-sizing: border-box; }

:root {
    --omg-green:    #1B5E20;
    --omg-green-600:#2E7D32;
    --omg-deep:     #0C2E11;
    --omg-ink:      #16281A;
    --omg-muted:    #6B7B6E;
    --omg-hairline: #E4EAE5;
    --omg-sand:     #F7FAF7;
  }

  .omg-nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--omg-hairline);
  }
  .omg-nav__inner {
    max-width: 1180px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 32px; min-height: 68px;
  }
  .omg-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .omg-nav__logo img { height: 34px; width: auto; }

  .omg-nav__list { list-style: none; display: flex; gap: 4px; margin: 0 auto 0 0; padding: 0; }
  .omg-nav__item { position: relative; }
  .omg-nav__link {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px; border: 0; background: none;
    font: inherit; font-size: 0.95rem; font-weight: 600;
    color: var(--omg-ink); text-decoration: none; cursor: pointer;
    border-radius: 8px;
  }
  .omg-nav__link:hover { background: var(--omg-sand); color: var(--omg-green); }
  .omg-nav__link[aria-current="page"] { color: var(--omg-green); }
  .omg-nav__link svg { width: 12px; height: 12px; transition: transform .18s ease; }
  .omg-nav__item[data-open="true"] .omg-nav__link svg { transform: rotate(180deg); }

  .omg-mega {
    position: absolute; top: calc(100% + 6px); left: 0;
    display: none; gap: 40px;
    background: #fff; border: 1px solid var(--omg-hairline);
    border-radius: 14px; padding: 24px 28px;
    box-shadow: 0 18px 44px rgba(12,46,17,.12);
  }
  .omg-nav__item[data-open="true"] .omg-mega { display: flex; }
  .omg-mega__col { min-width: 232px; }
  .omg-mega__title {
    font-size: 0.7rem; font-weight: 700; letter-spacing: .09em;
    text-transform: uppercase; color: var(--omg-green);
    margin: 0 0 12px; padding-bottom: 10px;
    border-bottom: 1px solid var(--omg-hairline);
  }
  .omg-mega__list { list-style: none; margin: 0; padding: 0; }
  .omg-mega__list a {
    display: block; padding: 9px 10px; margin: 0 -10px;
    border-radius: 8px; text-decoration: none;
    font-size: 0.92rem; color: var(--omg-ink);
  }
  .omg-mega__list a:hover { background: var(--omg-sand); color: var(--omg-green); }
  .omg-mega__list a small { display: block; font-size: 0.76rem; color: var(--omg-muted); margin-top: 2px; }
  .omg-mega__list a[data-soon]::after {
    content: attr(data-soon); margin-left: 8px;
    font-size: 0.62rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--omg-muted);
    border: 1px solid var(--omg-hairline); border-radius: 4px; padding: 1px 5px;
  }

  .omg-nav__cta {
    background: var(--omg-green); color: #fff; text-decoration: none;
    padding: 10px 18px; border-radius: 999px;
    font-size: 0.9rem; font-weight: 600; white-space: nowrap;
  }
  .omg-nav__cta:hover { background: var(--omg-green-600); }
  .omg-nav__lang {
    font-size: 0.85rem; font-weight: 600; color: var(--omg-muted);
    text-decoration: none; padding: 8px;
  }
  .omg-nav__lang:hover { color: var(--omg-green); }

  .omg-nav__burger { display: none; }

  @media (max-width: 980px) {
    .omg-nav__burger {
      display: grid; place-items: center; margin-left: auto;
      width: 42px; height: 42px; border: 1px solid var(--omg-hairline);
      background: #fff; border-radius: 10px; cursor: pointer;
    }
    .omg-nav__list {
      display: none; position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0; background: #fff;
      border-bottom: 1px solid var(--omg-hairline);
      padding: 8px 24px 20px; margin: 0;
    }
    .omg-nav[data-menu="open"] .omg-nav__list { display: flex; }
    .omg-mega { position: static; display: none; flex-direction: column; gap: 20px;
                border: 0; box-shadow: none; padding: 0 0 8px 12px; }
    .omg-nav__cta { display: none; }
  }

  /* ------------------------------------------------- shared components
     These are used by more than one page, so they live here in the shared
     chrome rather than in a single page's file. Include this file first.   */

  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }

  .omg-btn {
    display: inline-block; padding: 13px 26px; border-radius: 999px;
    font-size: .95rem; font-weight: 600; text-decoration: none; border: 1px solid transparent;
  }
  .omg-btn--primary { background: #fff; color: var(--omg-deep, #0C2E11); }
  .omg-btn--primary:hover { background: #E8F2E9; }
  .omg-btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
  .omg-btn--ghost:hover { background: rgba(255,255,255,.12); }

  .omg-card__cta {
    margin-top: auto; font-weight: 700; font-size: .95rem;
    color: var(--omg-green, #1B5E20); display: inline-flex; align-items: center; gap: 8px;
  }
  .omg-card:hover .omg-card__cta { gap: 12px; }
  .omg-card__cta svg { width: 15px; height: 15px; transition: transform .2s ease; }

  .ins-eyebrow {
    display: inline-block; font-size: .7rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: #A9D6AE;
    border: 1px solid rgba(169,214,174,.4); border-radius: 999px;
    padding: 6px 14px; margin: 0 0 22px;
  }

  .ins-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
  .ins-step { position: relative; padding-top: 52px; }
  .ins-step::before {
    counter-increment: step; content: counter(step);
    position: absolute; top: 0; left: 0;
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--omg-green, #1B5E20); color: #fff; font-weight: 800; font-size: 1rem;
  }
  .ins-step h4 { margin: 0 0 8px; font-size: 1.02rem; font-weight: 800; color: var(--omg-ink, #16281A); }
  .ins-step p { margin: 0; font-size: .92rem; line-height: 1.6; color: #46574A; }

  .ins-cta { background: var(--omg-deep, #0C2E11); color: #fff; padding: 76px 24px; text-align: center; }
  .ins-cta__inner { max-width: 720px; margin: 0 auto; }
  .ins-cta h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; margin: 0 0 16px; }
  .ins-cta p { color: #C9D8CC; line-height: 1.7; margin: 0 0 30px; }
  .ins-cta img { max-width: 460px; width: 100%; height: auto; margin: 0 auto 34px; display: block; }

  @media (max-width: 940px) { .ins-steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .ins-steps { grid-template-columns: 1fr; } }

  /* ---------------------------------------------------------------- footer */
  .omg-footer { background: var(--omg-deep); color: #C9D8CC; padding: 64px 24px 28px; }
  .omg-footer__inner { max-width: 1180px; margin: 0 auto; }
  .omg-footer__top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .omg-footer__brand img { height: 38px; width: auto; margin-bottom: 16px; }
  .omg-footer__brand p { font-size: 0.9rem; line-height: 1.65; max-width: 38ch; margin: 0; }
  .omg-footer h3 {
    font-size: 0.72rem; font-weight: 700; letter-spacing: .09em;
    text-transform: uppercase; color: #fff; margin: 0 0 14px;
  }
  .omg-footer ul { list-style: none; margin: 0; padding: 0; }
  .omg-footer li { margin-bottom: 9px; }
  .omg-footer a { color: #C9D8CC; text-decoration: none; font-size: 0.9rem; }
  .omg-footer a:hover { color: #fff; text-decoration: underline; }
  .omg-footer__bottom {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 20px; padding-top: 24px; font-size: 0.82rem;
  }
  .omg-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
  .omg-footer__eu img { height: 40px; width: auto; }
  @media (max-width: 860px) {
    .omg-footer__top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .omg-footer__top { grid-template-columns: 1fr; }
  }

  .omg-hero {
    position: relative;
    padding: 96px 24px 88px;
    background:
      linear-gradient(180deg, rgba(12,46,17,.82) 0%, rgba(12,46,17,.68) 100%),
      url('../images/hero-background.jpg') center/cover no-repeat;
    color: #fff;
  }
  .omg-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .omg-hero__eyebrow {
    display: inline-block; margin: 0 0 20px;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: #A9D6AE; border: 1px solid rgba(169,214,174,.4);
    border-radius: 999px; padding: 6px 14px;
  }
  .omg-hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.12;
    font-weight: 800; margin: 0 0 20px; letter-spacing: -.02em;
  }
  .omg-hero p {
    font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.65;
    max-width: 60ch; margin: 0 auto 32px; color: #DCE9DE;
  }
  .omg-hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ------------------------------------------------------------ the fork */
  .omg-fork { padding: 76px 24px; background: #fff; }
  .omg-fork__inner { max-width: 1120px; margin: 0 auto; }
  .omg-fork__lead { text-align: center; max-width: 62ch; margin: 0 auto 44px; }
  .omg-fork__lead h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800;
    color: var(--omg-ink, #16281A); margin: 0 0 12px; letter-spacing: -.01em;
  }
  .omg-fork__lead p { color: var(--omg-muted, #6B7B6E); font-size: 1.02rem; line-height: 1.65; margin: 0; }

  .omg-fork__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

  .omg-card {
    display: flex; flex-direction: column;
    border: 1px solid var(--omg-hairline, #E4EAE5); border-radius: 18px;
    overflow: hidden; background: #fff; text-decoration: none; color: inherit;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  }
  .omg-card:hover {
    box-shadow: 0 18px 44px rgba(12,46,17,.11);
    border-color: #C7D8CA; transform: translateY(-2px);
  }
  .omg-card:focus-visible { outline: 3px solid var(--omg-green, #1B5E20); outline-offset: 3px; }
  .omg-card__media {
    position: relative;              /* the img is absolutely placed inside, so a */
    aspect-ratio: 16 / 9;            /* portrait source cannot stretch the box and */
    overflow: hidden;                /* knock the two cards out of alignment */
    background: var(--omg-sand, #F7FAF7);
  }
  .omg-card__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .omg-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
  .omg-card__tag {
    font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--omg-green, #1B5E20); margin: 0 0 10px;
  }
  .omg-card h3 { font-size: 1.32rem; font-weight: 800; margin: 0 0 10px; color: var(--omg-ink, #16281A); }
  .omg-card > .omg-card__body > p { margin: 0 0 18px; line-height: 1.65; color: #46574A; font-size: .96rem; }
  .omg-card ul { list-style: none; margin: 0 0 22px; padding: 0; }
  .omg-card li {
    position: relative; padding-left: 24px; margin-bottom: 9px;
    font-size: .92rem; color: #46574A;
  }
  .omg-card li::before {
    content: ""; position: absolute; left: 0; top: .48em;
    width: 9px; height: 9px; border-radius: 2px; background: var(--omg-green, #1B5E20);
  }

  /* ------------------------------------------------------------- metrics */
  .omg-metrics { padding: 56px 24px 72px; background: var(--omg-sand, #F7FAF7); }
  .omg-metrics__inner { max-width: 1120px; margin: 0 auto; }
  .omg-metrics__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .omg-metric {
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 14px; padding: 26px 22px;
  }
  .omg-metric b {
    display: block; font-size: 2.1rem; font-weight: 800; line-height: 1;
    color: var(--omg-green, #1B5E20); margin-bottom: 8px; letter-spacing: -.02em;
  }
  .omg-metric span { display: block; font-weight: 600; font-size: .95rem; color: var(--omg-ink, #16281A); }
  .omg-metric small {
    display: block; margin-top: 8px; font-size: .76rem; line-height: 1.5;
    color: var(--omg-muted, #6B7B6E);
  }
  .omg-metrics__note {
    margin: 26px 0 0; font-size: .78rem; color: var(--omg-muted, #6B7B6E);
    line-height: 1.6; max-width: 78ch;
  }

  @media (max-width: 900px) {
    .omg-fork__grid { grid-template-columns: 1fr; }
    .omg-metrics__grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 520px) {
    .omg-metrics__grid { grid-template-columns: 1fr; }
    .omg-hero { padding: 64px 20px 60px; }
  }

  .ins-hero {
    background: linear-gradient(160deg, #0C2E11 0%, #17451D 60%, #1B5E20 100%);
    color: #fff; padding: 96px 24px 88px;
  }
  .ins-hero__inner { max-width: 760px; margin: 0 auto; }
  .ins-hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800;
    line-height: 1.14; letter-spacing: -.02em; margin: 0 0 22px;
  }
  .ins-hero__lead { font-size: 1.1rem; line-height: 1.7; color: #DCE9DE; margin: 0 0 32px; }
  .ins-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

  .ins-section { padding: 80px 24px; }
  .ins-section--tint { background: var(--omg-sand, #F7FAF7); }
  .ins-section__inner { max-width: 1060px; margin: 0 auto; }
  .ins-head { max-width: 62ch; margin: 0 0 44px; }
  .ins-head h2 {
    font-size: clamp(1.5rem, 2.7vw, 2.05rem); font-weight: 800;
    letter-spacing: -.015em; color: var(--omg-ink, #16281A); margin: 0 0 14px;
  }
  .ins-head p { font-size: 1.02rem; line-height: 1.7; color: #46574A; margin: 0; }

  .ins-triple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .ins-tile {
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 16px; padding: 28px 26px 30px;
  }
  .ins-tile img { width: 36px; height: 36px; margin-bottom: 18px; }
  .ins-tile h3 { font-size: 1.08rem; font-weight: 800; margin: 0 0 12px; color: var(--omg-ink, #16281A); }
  .ins-tile p { margin: 0; font-size: .94rem; line-height: 1.65; color: #46574A; }

  .ins-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .ins-split--flip .ins-split__media { order: -1; }
  .ins-split__media img {
    width: 100%; height: auto; display: block; border-radius: 14px;
    border: 1px solid var(--omg-hairline, #E4EAE5);
    box-shadow: 0 14px 40px rgba(12,46,17,.09);
  }
  .ins-split h3 {
    font-size: 1.38rem; font-weight: 800; margin: 0 0 14px;
    color: var(--omg-ink, #16281A); letter-spacing: -.01em;
  }
  .ins-split p { line-height: 1.7; color: #46574A; margin: 0 0 16px; }
  .ins-list { list-style: none; margin: 0; padding: 0; }
  .ins-list li {
    position: relative; padding-left: 26px; margin-bottom: 11px;
    line-height: 1.6; color: #46574A; font-size: .95rem;
  }
  .ins-list li::before {
    content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px;
    border-radius: 2px; background: var(--omg-green, #1B5E20);
  }
  .ins-figcaption { margin: 10px 0 0; font-size: .78rem; color: var(--omg-muted, #6B7B6E); line-height: 1.55; }

  .ins-statement {
    display: grid; grid-template-columns: minmax(220px, .8fr) 1.6fr;
    gap: 48px; align-items: start;
  }
  .ins-statement h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin: 0;
    letter-spacing: -.02em; color: var(--omg-ink, #16281A); line-height: 1.15;
  }
  .ins-statement__body p {
    font-size: 1.06rem; line-height: 1.75; color: #46574A; margin: 0 0 18px;
  }
  .ins-statement__body p:last-child { margin-bottom: 0; }
  @media (max-width: 780px) {
    .ins-statement { grid-template-columns: 1fr; gap: 20px; }
  }

  .ins-coverage {
    max-width: 1060px; margin: 0 auto; padding: 34px 32px;
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5); border-radius: 16px;
  }
  .ins-coverage h3 { margin: 0 0 10px; font-size: 1.14rem; font-weight: 800; color: var(--omg-ink, #16281A); }
  .ins-coverage p { margin: 0 0 18px; line-height: 1.7; color: #46574A; max-width: 66ch; }

  @media (max-width: 940px) {
    .ins-split { grid-template-columns: 1fr; gap: 36px; }
    .ins-split--flip .ins-split__media { order: 0; }
    .ins-triple { grid-template-columns: 1fr; }
  }

  .frm-hero {
    background: linear-gradient(160deg, #0C2E11 0%, #17451D 60%, #1B5E20 100%);
    color: #fff; padding: 92px 24px 84px;
  }
  .frm-hero__inner {
    max-width: 1060px; margin: 0 auto;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
  }
  .frm-hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800;
    line-height: 1.15; letter-spacing: -.02em; margin: 0 0 20px;
  }
  .frm-hero p { font-size: 1.06rem; line-height: 1.7; color: #DCE9DE; margin: 0 0 30px; }
  .frm-hero figure { margin: 0; }
  .frm-hero figure img {
    width: 100%; height: auto; display: block; border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,.32);
  }

  .frm-section { padding: 80px 24px; }
  .frm-section--tint { background: var(--omg-sand, #F7FAF7); }
  .frm-section__inner { max-width: 1060px; margin: 0 auto; }
  .frm-head { max-width: 62ch; margin: 0 0 44px; }
  .frm-head h2 {
    font-size: clamp(1.5rem, 2.7vw, 2.05rem); font-weight: 800;
    letter-spacing: -.015em; color: var(--omg-ink, #16281A); margin: 0 0 14px;
  }
  .frm-head p { font-size: 1.02rem; line-height: 1.7; color: #46574A; margin: 0; }

  /* the capability grid — this is the map of the whole track */
  .frm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .frm-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 16px; padding: 26px 24px 28px;
    text-decoration: none; color: inherit;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  }
  a.frm-card:hover {
    box-shadow: 0 16px 40px rgba(12,46,17,.10);
    border-color: #C7D8CA; transform: translateY(-2px);
  }
  a.frm-card:focus-visible { outline: 3px solid var(--omg-green, #1B5E20); outline-offset: 3px; }
  .frm-card img.frm-icon { width: 34px; height: 34px; margin-bottom: 16px; }
  .frm-card h3 { font-size: 1.06rem; font-weight: 800; margin: 0 0 10px; color: var(--omg-ink, #16281A); }
  .frm-card p { margin: 0 0 16px; font-size: .93rem; line-height: 1.65; color: #46574A; }
  .frm-card__link {
    margin-top: auto; font-size: .88rem; font-weight: 700;
    color: var(--omg-green, #1B5E20); display: inline-flex; align-items: center; gap: 7px;
  }
  a.frm-card:hover .frm-card__link { gap: 11px; }
  .frm-card__link svg { width: 14px; height: 14px; }

  .frm-statement { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
  .frm-statement h3 { font-size: 1.5rem; margin-bottom: 16px; }
  .frm-statement p { line-height: 1.75; color: #46574A; margin: 0 0 16px; }
  @media (max-width: 880px) { .frm-statement { grid-template-columns: 1fr; gap: 8px; } }

  .frm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .frm-split--flip .frm-split__media { order: -1; }
  .frm-split__media img {
    width: 100%; height: auto; display: block; border-radius: 14px;
    border: 1px solid var(--omg-hairline, #E4EAE5);
    box-shadow: 0 14px 40px rgba(12,46,17,.09);
  }
  .frm-split h3 {
    font-size: 1.38rem; font-weight: 800; margin: 0 0 14px;
    color: var(--omg-ink, #16281A); letter-spacing: -.01em;
  }
  .frm-split p { line-height: 1.7; color: #46574A; margin: 0 0 16px; }

  @media (max-width: 940px) {
    .frm-hero__inner, .frm-split { grid-template-columns: 1fr; gap: 36px; }
    .frm-split--flip .frm-split__media { order: 0; }
    .frm-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) { .frm-grid { grid-template-columns: 1fr; } }

  .sal-hero {
    background: var(--omg-sand, #F7FAF7); padding: 80px 24px 72px;
    border-bottom: 1px solid var(--omg-hairline, #E4EAE5);
  }
  .sal-hero__inner { max-width: 760px; margin: 0 auto; }
  .sal-hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800;
    line-height: 1.15; letter-spacing: -.02em; margin: 0 0 20px; color: var(--omg-ink, #16281A);
  }
  .sal-hero p { font-size: 1.06rem; line-height: 1.7; color: #46574A; margin: 0 0 28px; }

  .sal-section { padding: 76px 24px; }
  .sal-section__inner { max-width: 1000px; margin: 0 auto; }
  .sal-section h2 {
    font-size: clamp(1.45rem, 2.6vw, 1.95rem); font-weight: 800;
    letter-spacing: -.015em; color: var(--omg-ink, #16281A); margin: 0 0 14px;
  }
  .sal-section > .sal-section__inner > p { line-height: 1.7; color: #46574A; max-width: 66ch; }

  .sal-timeline {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px;
    align-items: center; margin: 46px 0 0;
  }
  .sal-scan {
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 16px; overflow: hidden;
  }
  .sal-scan__date {
    padding: 14px 20px; background: var(--omg-sand, #F7FAF7);
    border-bottom: 1px solid var(--omg-hairline, #E4EAE5);
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--omg-green, #1B5E20);
  }
  .sal-scan img { width: 100%; height: auto; display: block; background: #EEF3EF; }
  .sal-scan__body { padding: 20px 22px 24px; }
  .sal-scan__body h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 800; color: var(--omg-ink, #16281A); }
  .sal-scan__body p { margin: 0; font-size: .92rem; line-height: 1.62; color: #46574A; }
  .sal-arrow {
    display: grid; place-items: center; gap: 6px;
    color: var(--omg-green, #1B5E20); font-size: .74rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; text-align: center;
  }
  .sal-arrow svg { width: 34px; height: 34px; }

  .sal-zones { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
  .sal-zones__media img {
    width: 100%; height: auto; display: block; border-radius: 14px;
    border: 1px solid var(--omg-hairline, #E4EAE5); background: #EEF3EF;
  }
  .sal-zones h2 { margin-bottom: 14px; }
  .sal-zones p { line-height: 1.7; color: #46574A; margin: 0 0 16px; }

  /* Colour maps are meaningless without a key. Built in HTML rather than baked
     into the image so it scales, translates, and survives a re-export. */
  .fig-legend {
    display: flex; flex-wrap: wrap; gap: 8px 18px;
    margin: 14px 0 0; padding: 12px 14px;
    background: var(--omg-sand, #F7FAF7);
    border: 1px solid var(--omg-hairline, #E4EAE5); border-radius: 8px;
    list-style: none;
  }
  .fig-legend li {
    display: flex; align-items: center; gap: 8px;
    font-size: .78rem; line-height: 1.4; color: #46574A;
  }
  .fig-legend i {
    flex: 0 0 auto; width: 14px; height: 14px; border-radius: 3px;
    border: 1px solid rgba(0,0,0,.12);
  }
  .fig-legend .ramp {
    width: 54px; background: linear-gradient(90deg, #CFC3E6 0%, #7B5FA8 100%);
  }

  .sal-why { background: var(--omg-sand, #F7FAF7); }
  .sal-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
  .sal-why__grid article {
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 14px; padding: 26px 24px;
  }
  .sal-why__grid h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 800; color: var(--omg-ink, #16281A); }
  .sal-why__grid p { margin: 0; font-size: .93rem; line-height: 1.65; color: #46574A; }

  @media (max-width: 880px) {
    .sal-zones { grid-template-columns: 1fr; gap: 32px; }
    .sal-timeline { grid-template-columns: 1fr; }
    .sal-arrow { transform: rotate(90deg); margin: 4px 0; }
    .sal-why__grid { grid-template-columns: 1fr; }
  }

  .team { padding: 80px 24px; background: var(--omg-sand, #F7FAF7); }
  .team__inner { max-width: 1060px; margin: 0 auto; }
  .team__head { max-width: 60ch; margin: 0 0 48px; }
  .team__head h2 {
    font-size: clamp(1.5rem, 2.7vw, 2.05rem); font-weight: 800;
    letter-spacing: -.015em; color: var(--omg-ink, #16281A); margin: 0 0 14px;
  }
  .team__head p { font-size: 1.02rem; line-height: 1.7; color: #46574A; margin: 0; }

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

  .team__member {
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 16px; padding: 30px 26px 28px; text-align: center;
  }
  .team__member img {
    width: 116px; height: 116px; border-radius: 50%;
    object-fit: cover; margin: 0 auto 18px; display: block;
    border: 3px solid #fff; box-shadow: 0 4px 18px rgba(12,46,17,.14);
  }
  .team__member h3 {
    margin: 0 0 4px; font-size: 1.12rem; font-weight: 800; color: var(--omg-ink, #16281A);
  }
  .team__role {
    display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--omg-green, #1B5E20); margin-bottom: 14px;
  }
  .team__member p { margin: 0 0 16px; font-size: .93rem; line-height: 1.65; color: #46574A; }
  .team__member a { font-size: .88rem; color: var(--omg-green, #1B5E20); text-decoration: none; word-break: break-word; }
  .team__member a:hover { text-decoration: underline; }

  .team__backing {
    margin: 44px 0 0; padding: 24px 26px;
    background: #fff; border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 14px; font-size: .94rem; line-height: 1.7; color: #46574A;
  }
  .team__backing strong { color: var(--omg-ink, #16281A); }

  @media (max-width: 880px) { .team__grid { grid-template-columns: 1fr; } }

  .supporters {
    /* Palette derived from the existing site: --omega-green is the theme-color
       already declared in your <meta name="theme-color" content="#1B5E20">. */
    --omega-green: #1B5E20;
    --omega-deep: #0C2E11;
    --card: #FFFFFF;
    --ink: #0C2E11;
    --muted: #6B7B6E;
    --hairline: #E4EAE5;

    background: var(--omega-deep);
    padding: 0 0 56px;
  }

  .supporters__card {
    background: var(--card);
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 48px;
    border-radius: 0 0 40px 40px;
  }

  .supporters__label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--omega-green);
    margin: 0 0 28px;
    padding-left: 8px;
  }

  .supporters__viewport {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .supporters__track {
    flex: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2 * 32px) / 3);
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 0;
  }
  .supporters__track::-webkit-scrollbar { display: none; }

  .supporters__group {
    scroll-snap-align: start;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 120px;
  }

  .supporters__group img {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }
  .supporters__group a:hover img,
  .supporters__group a:focus-visible img,
  .supporters__group img.no-filter {
    filter: none;
    opacity: 1;
  }
  .supporters__group a:focus-visible {
    outline: 2px solid var(--omega-green);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .supporters__arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: var(--omega-green);
    transition: background 0.2s ease;
  }
  .supporters__arrow:hover { background: var(--hairline); }
  .supporters__arrow:focus-visible {
    outline: 2px solid var(--omega-green);
    outline-offset: 2px;
  }
  .supporters__arrow[disabled] { opacity: 0.25; cursor: default; }
  .supporters__arrow svg { width: 18px; height: 18px; }

  .supporters__names {
    list-style: none; margin: 0; padding: 0 0 0 8px;
    display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center;
  }
  .supporters__names li {
    font-size: 1.02rem; font-weight: 700; color: var(--ink);
    letter-spacing: -.01em; position: relative;
  }
  .supporters__names li + li::before {
    content: ""; position: absolute; left: -18px; top: 50%;
    width: 5px; height: 5px; margin-top: -2px;
    border-radius: 50%; background: var(--hairline);
  }
  @media (max-width: 600px) {
    .supporters__names { gap: 10px 22px; }
    .supporters__names li { font-size: .94rem; }
    .supporters__names li + li::before { left: -13px; }
  }

  .supporters__note {
    margin: 28px 0 0;
    padding-left: 8px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--muted);
    max-width: 68ch;
  }

  @media (max-width: 900px) {
    .supporters__track { grid-auto-columns: calc((100% - 32px) / 2); }
  }
  @media (max-width: 600px) {
    .supporters__track { grid-auto-columns: 100%; }
    .supporters__card { border-radius: 0 0 24px 24px; padding: 32px 16px 40px; }
    .supporters__arrow { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .supporters__track { scroll-behavior: auto; }
  }

  /* ---- PREVIEW ONLY — delete this block once the real logos are in place ---- */
  .supporters__placeholder {
    display: grid;
    place-items: center;
    min-width: 150px;
    max-width: 100%;
    height: 56px;
    padding: 0 14px;
    border: 1px dashed #C3D0C5;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    color: var(--muted);
    background: #F7FAF7;
  }
  /* ---- end preview block ---- */

  .legal { padding: 72px 24px 88px; }
  .legal__inner { max-width: 760px; margin: 0 auto; }
  .legal h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800;
    letter-spacing: -.02em; color: var(--omg-ink, #16281A); margin: 0 0 10px;
  }
  .legal__meta { font-size: .86rem; color: var(--omg-muted, #6B7B6E); margin: 0 0 40px; }
  .legal h2 {
    font-size: 1.22rem; font-weight: 800; color: var(--omg-ink, #16281A);
    margin: 44px 0 14px; padding-top: 26px;
    border-top: 1px solid var(--omg-hairline, #E4EAE5);
  }
  .legal h3 { font-size: 1.02rem; font-weight: 700; color: var(--omg-ink, #16281A); margin: 26px 0 10px; }
  .legal p, .legal li {
    line-height: 1.75; color: #405144; font-size: .96rem;
    overflow-wrap: break-word;
  }
  .legal ul { padding-left: 22px; }
  .legal li { margin-bottom: 8px; }
  .legal a { color: var(--omg-green, #1B5E20); }
  .legal__box {
    background: var(--omg-sand, #F7FAF7); border: 1px solid var(--omg-hairline, #E4EAE5);
    border-radius: 12px; padding: 20px 22px; margin: 20px 0;
  }
  .legal__box p:last-child { margin-bottom: 0; }

  .supporters {
    /* Palette derived from the existing site: --omega-green is the theme-color
       already declared in your <meta name="theme-color" content="#1B5E20">. */
    --omega-green: #1B5E20;
    --omega-deep: #0C2E11;
    --card: #FFFFFF;
    --ink: #0C2E11;
    --muted: #6B7B6E;
    --hairline: #E4EAE5;

    background: var(--omega-deep);
    padding: 0 0 56px;
  }

  .supporters__card {
    background: var(--card);
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 48px;
    border-radius: 0 0 40px 40px;
  }

  .supporters__label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--omega-green);
    margin: 0 0 28px;
    padding-left: 8px;
  }

  .supporters__viewport {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .supporters__track {
    flex: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2 * 32px) / 3);
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 0;
  }
  .supporters__track::-webkit-scrollbar { display: none; }

  .supporters__group {
    scroll-snap-align: start;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 120px;
  }

  .supporters__group img {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }
  .supporters__group a:hover img,
  .supporters__group a:focus-visible img,
  .supporters__group img.no-filter {
    filter: none;
    opacity: 1;
  }
  .supporters__group a:focus-visible {
    outline: 2px solid var(--omega-green);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .supporters__arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: var(--omega-green);
    transition: background 0.2s ease;
  }
  .supporters__arrow:hover { background: var(--hairline); }
  .supporters__arrow:focus-visible {
    outline: 2px solid var(--omega-green);
    outline-offset: 2px;
  }
  .supporters__arrow[disabled] { opacity: 0.25; cursor: default; }
  .supporters__arrow svg { width: 18px; height: 18px; }

  .supporters__names {
    list-style: none; margin: 0; padding: 0 0 0 8px;
    display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center;
  }
  .supporters__names li {
    font-size: 1.02rem; font-weight: 700; color: var(--ink);
    letter-spacing: -.01em; position: relative;
  }
  .supporters__names li + li::before {
    content: ""; position: absolute; left: -18px; top: 50%;
    width: 5px; height: 5px; margin-top: -2px;
    border-radius: 50%; background: var(--hairline);
  }
  @media (max-width: 600px) {
    .supporters__names { gap: 10px 22px; }
    .supporters__names li { font-size: .94rem; }
    .supporters__names li + li::before { left: -13px; }
  }

  .supporters__note {
    margin: 28px 0 0;
    padding-left: 8px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--muted);
    max-width: 68ch;
  }

  @media (max-width: 900px) {
    .supporters__track { grid-auto-columns: calc((100% - 32px) / 2); }
  }
  @media (max-width: 600px) {
    .supporters__track { grid-auto-columns: 100%; }
    .supporters__card { border-radius: 0 0 24px 24px; padding: 32px 16px 40px; }
    .supporters__arrow { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .supporters__track { scroll-behavior: auto; }
  }

  /* ---- PREVIEW ONLY — delete this block once the real logos are in place ---- */
  .supporters__placeholder {
    display: grid;
    place-items: center;
    min-width: 150px;
    max-width: 100%;
    height: 56px;
    padding: 0 14px;
    border: 1px dashed #C3D0C5;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    color: var(--muted);
    background: #F7FAF7;
  }
  /* ---- end preview block ---- */

  /* WP0 3.1 - purpose statement and consent checkbox on the contact form. */
  .omg-consent {
    display: flex; flex-direction: column; gap: 12px;
    padding: 18px 20px; border-radius: 12px;
    border: 1px solid var(--omg-hairline, #E4EAE5);
    background: var(--omg-sand, #F7FAF7);
  }
  .omg-consent__purpose {
    margin: 0; font-size: .86rem; line-height: 1.65;
    color: var(--omg-muted, #6B7B6E);
  }
  .omg-consent__check {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .86rem; line-height: 1.6; cursor: pointer;
    color: var(--omg-ink, #16281A); font-weight: 400;
  }
  .omg-consent__check input {
    flex: none; width: 17px; height: 17px; margin-top: 2px;
    accent-color: var(--omg-green, #1B5E20); cursor: pointer;
  }
  .omg-consent a { color: var(--omg-green, #1B5E20); }
