﻿:root {
  --ink: #101a17;
  --muted: #53645f;
  --deep: #07120e;
  --deep-2: #10241c;
  --paper: #f5f8f6;
  --panel: #ffffff;
  --line: rgba(16, 26, 23, .13);
  --green: #9fcd18;
  --blue: #1d9fd3;
  --pink: #d91b86;
  --orange: #ff7a1a;
  --violet: #7562e8;
  --shadow: 0 24px 70px rgba(9, 25, 20, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(159, 205, 24, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29, 159, 211, .07) 1px, transparent 1px),
    radial-gradient(circle at 16% 20%, rgba(159, 205, 24, .18), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(29, 159, 211, .14), transparent 30%),
    var(--paper);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 6vw;
  color: #fff;
  background: rgba(7, 18, 14, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 178px;
  max-height: 62px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
}

.nav a.primary {
  color: #07120e;
  background: var(--green);
  border-color: var(--green);
}

.hero {
  padding: 82px 6vw 42px;
}

.hero-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .7fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #158b57;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  margin: 0 0 18px;
  max-width: 850px;
  font-size: clamp(42px, 6.8vw, 88px);
  line-height: .92;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4.4vw, 56px);
  line-height: 1;
}

h3 {
  margin: 10px 0 8px;
  font-size: 23px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.lead {
  max-width: 820px;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #07120e;
  background: var(--green);
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(19, 141, 86, .16);
}

.btn.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line);
  box-shadow: none;
}

.signal-panel {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-top {
  min-height: 190px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(159, 205, 24, .55), transparent 22%),
    radial-gradient(circle at 92% 8%, rgba(217, 27, 134, .38), transparent 25%),
    linear-gradient(135deg, var(--deep), var(--deep-2));
}

.signal-top strong {
  display: block;
  font-size: 30px;
  line-height: 1.02;
}

.signal-top span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  padding: 18px;
  background: #fff;
}

.stat b {
  display: block;
  font-size: 28px;
}

.stat small {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 44px 6vw;
}

.section-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.intro {
  max-width: 840px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 40px rgba(9, 25, 20, .08);
}

.card:nth-child(2),
.card.blue {
  border-top-color: var(--blue);
}

.card:nth-child(3),
.card.pink {
  border-top-color: var(--pink);
}

.card:nth-child(4),
.card.orange {
  border-top-color: var(--orange);
}

.card:nth-child(5),
.card.violet {
  border-top-color: var(--violet);
}

.tag {
  color: #168c59;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ecosystem-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.ecosystem-item {
  padding: 20px;
  background: rgba(255, 255, 255, .86);
}

.ecosystem-item strong {
  display: block;
  margin-bottom: 8px;
}

.profile-band {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), #143121);
}

.profile-band h2,
.profile-band h3,
.profile-band p {
  color: #fff;
}

.profile-band p {
  color: rgba(255, 255, 255, .78);
}

.capabilities {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(29, 159, 211, .09) 34% 35%, transparent 35% 100%),
    linear-gradient(62deg, transparent 0 67%, rgba(159, 205, 24, .13) 67% 68%, transparent 68% 100%),
    rgba(255, 255, 255, .74);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.capability-grid article {
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(9, 25, 20, .08);
}

.capability-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(159, 205, 24, .28);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capability-grid article:nth-child(2) span {
  background: rgba(29, 159, 211, .18);
}

.capability-grid article:nth-child(3) span {
  background: rgba(217, 27, 134, .14);
}

.capability-grid article:nth-child(4) span {
  background: rgba(255, 122, 26, .16);
}

.scale-band {
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(159, 205, 24, .24), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(29, 159, 211, .18), transparent 30%),
    linear-gradient(135deg, #07120e, #142b22);
}

.scale-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .56fr);
  gap: 24px;
  align-items: stretch;
}

.scale-band h2,
.scale-band p {
  color: #fff;
}

.scale-band p {
  color: rgba(255, 255, 255, .76);
}

.scale-stat {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.scale-stat strong {
  color: var(--green);
  font-size: clamp(82px, 10vw, 138px);
  line-height: .82;
}

.scale-stat span {
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
}

.operating-model {
  background: rgba(255, 255, 255, .68);
}

.model-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.model-steps article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(9, 25, 20, .07);
}

.model-steps b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--deep);
  background: var(--green);
  font-size: 12px;
}

.module-lanes {
  background:
    linear-gradient(90deg, rgba(29, 159, 211, .11), transparent 48%),
    linear-gradient(135deg, rgba(159, 205, 24, .12), transparent 55%),
    rgba(255, 255, 255, .76);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.module-grid article,
.partner-card,
.handoff-card,
.market-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(9, 25, 20, .08);
}

.module-grid article {
  min-height: 220px;
  padding: 22px;
}

.module-grid span,
.partner-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(159, 205, 24, .24);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.module-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #07120e, #173629);
}

.module-cta strong {
  color: var(--green);
}

.module-cta span {
  color: rgba(255, 255, 255, .78);
}

.partner-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 159, 211, .28), transparent 28%),
    radial-gradient(circle at 16% 22%, rgba(159, 205, 24, .22), transparent 28%),
    linear-gradient(135deg, #07120e, #122b22 58%, #07120e);
}

.partner-hero h1,
.partner-hero p {
  color: #fff;
}

.partner-hero .lead {
  color: rgba(255, 255, 255, .78);
}

.partner-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  gap: 20px;
  align-items: stretch;
}

.partner-card {
  padding: 24px;
}

.partner-card.dark {
  color: #fff;
  background: linear-gradient(135deg, #07120e, #173629);
}

.partner-card.dark h3,
.partner-card.dark p {
  color: #fff;
}

.partner-card.dark p {
  color: rgba(255, 255, 255, .76);
}

.handoff-grid,
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.handoff-card,
.market-card {
  min-height: 210px;
  padding: 22px;
}

.tech-checklist {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tech-checklist li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
}

.site-footer {
  margin-top: 42px;
  padding: 28px 6vw;
  color: rgba(255, 255, 255, .74);
  background: var(--deep);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer img {
  width: 158px;
  max-height: 56px;
  object-fit: contain;
}

.site-footer h4 {
  margin: 0 0 10px;
  color: var(--green);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .9);
  font-weight: 850;
}

.footer-legal-links {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.ecosystem-brief-hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 18, 14, .96), rgba(18, 43, 34, .78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.ecosystem-brief-hero h1,
.ecosystem-brief-hero p {
  color: #fff;
}

.ecosystem-brief-hero .lead {
  color: rgba(255, 255, 255, .8);
}

.brief-signal,
.brief-metrics article,
.brief-revenue article,
.collab-board article {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(9, 25, 20, .1);
}

.brief-signal {
  display: grid;
  gap: 10px;
  padding: 22px;
  align-self: stretch;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.brief-signal strong {
  font-size: 22px;
}

.brief-signal span {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
}

.brief-metrics,
.brief-revenue,
.collab-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brief-metrics article,
.brief-revenue article {
  min-height: 210px;
  padding: 22px;
  background: #fff;
}

.brief-metrics strong,
.brief-revenue b {
  display: block;
  color: var(--deep);
  font-size: 24px;
}

.brief-metrics span {
  display: inline-flex;
  margin: 12px 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(159, 205, 24, .24);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 18, 14, .96), rgba(18, 43, 34, .92)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.brief-dark h2,
.brief-dark p {
  color: #fff;
}

.collaborator-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
}

.collab-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collab-board article {
  min-height: 150px;
  padding: 20px;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .1);
}

.collab-board strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 21px;
}

.brief-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

@media (max-width: 1060px) {
  .hero-grid,
  .scale-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .grid,
  .capability-grid,
  .model-steps,
  .module-grid,
  .handoff-grid,
  .market-grid,
  .brief-metrics,
  .brief-revenue {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid,
  .ecosystem-strip,
  .stats,
  .capability-grid,
  .model-steps,
  .module-grid,
    .module-cta,
    .partner-board,
    .handoff-grid,
    .market-grid,
    .brief-metrics,
    .brief-revenue,
    .collaborator-grid,
    .collab-board,
    .brief-next {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
}

/* Shared public legal documents. */
.legal-document {
  background: #eef4f1;
}

.legal-shell {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 72px;
}

.legal-hero {
  padding: 34px 0 30px;
  border-bottom: 3px solid #12211c;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 8px 0 14px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero > p:last-child {
  max-width: 780px;
  margin-bottom: 0;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(18, 33, 28, .18);
}

.legal-section h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-section > p,
.legal-section > ul,
.legal-section > .legal-table,
.legal-section > .legal-link-list {
  margin: 0;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-link-list,
.legal-table {
  display: grid;
  border-top: 1px solid rgba(18, 33, 28, .18);
}

.legal-link-list a,
.legal-table > div {
  display: grid;
  grid-template-columns: minmax(190px, .45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 33, 28, .18);
}

.legal-link-list a {
  display: block;
  color: #087345;
  font-weight: 800;
}

.legal-table span {
  color: #42554e;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.legal-links a {
  color: #d7e3de;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .legal-shell {
    width: min(100% - 28px, 1040px);
    padding-top: 24px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* v16 readiness/profile pages */
.readiness-hero {
  width: min(100% - 48px, 1440px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .35fr);
  gap: 24px;
  align-items: end;
  min-height: 420px;
  padding: clamp(34px, 6vw, 76px);
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(8, 20, 18, .94), rgba(8, 20, 18, .72)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center / cover;
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}
.readiness-news { background-image: linear-gradient(120deg, rgba(5, 10, 18, .94), rgba(5, 10, 18, .66)), url("https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=1800&q=80"); }
.readiness-ten { background-image: linear-gradient(120deg, rgba(5, 10, 18, .94), rgba(5, 10, 18, .66)), url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1800&q=80"); }
.readiness-build { background-image: linear-gradient(120deg, rgba(15, 22, 20, .94), rgba(15, 22, 20, .66)), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80"); }
.readiness-myplace { background-image: linear-gradient(120deg, rgba(18, 8, 6, .94), rgba(18, 8, 6, .66)), url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80"); }
.readiness-hero h1,
.readiness-hero p { color: #fff; }
.readiness-hero h1 { max-width: 920px; }
.readiness-hero aside {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.readiness-hero aside strong { font-size: clamp(2.4rem, 6vw, 5rem); line-height: .9; }
.readiness-section,
.readiness-band {
  width: min(100% - 48px, 1440px);
  margin: 24px auto;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.readiness-copy,
.readiness-grid article,
.readiness-band {
  border: 1px solid rgba(30, 45, 40, .14);
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(0,0,0,.07);
}
.readiness-copy { padding: 24px; }
.readiness-copy ul { margin: 0; padding-left: 20px; color: #26352f; line-height: 1.55; }
.readiness-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.readiness-grid article { min-height: 150px; padding: 20px; }
.readiness-grid span { display: block; margin-bottom: 10px; color: #0b7a53; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.readiness-grid strong { display: block; color: #101816; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.18; }
.readiness-band { grid-template-columns: 1fr auto; align-items: center; padding: 24px; }
@media (max-width: 820px) {
  .readiness-hero,
  .readiness-section,
  .readiness-band { width: min(100% - 28px, 1440px); grid-template-columns: 1fr; }
  .readiness-grid { grid-template-columns: 1fr; }
}

/* Cookie consent gate */
.cookie-consent-panel {
  position: fixed;
  z-index: 9999;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(10, 24, 20, .96);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.cookie-consent-panel strong { display: block; margin-bottom: 6px; color: #fff; font-size: 1.05rem; }
.cookie-consent-panel p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.45; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.cookie-actions button[data-cookie-analytics] { background: #9fca2b; border-color: #9fca2b; color: #102018; }
@media (max-width: 720px) { .cookie-consent-panel { grid-template-columns: 1fr; } .cookie-actions { justify-content: stretch; } .cookie-actions button { flex: 1 1 auto; } }


.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.cookie-toggle input { width: 18px; height: 18px; accent-color: var(--lime, #b6ff16); }

/* MWB News and community reporting bridge */
.ecosystem-news-strip {
  width: min(100% - 40px, 1180px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
  border-top: 3px solid #0e8c60;
  border-bottom: 1px solid rgba(20, 37, 32, .18);
  background: #f3f7f5;
}
.ecosystem-news-strip span,
.ecosystem-news-strip strong { display: block; }
.ecosystem-news-strip span { color: #0e8c60; font-size: .72rem; font-weight: 900; }
.ecosystem-news-strip strong { margin-top: 5px; color: #17211e; line-height: 1.35; }
.ecosystem-news-strip nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.ecosystem-news-strip a { min-height: 40px; display: inline-flex; align-items: center; padding: 9px 12px; border: 1px solid #1e6550; color: #174b3c; background: #fff; font-size: .78rem; font-weight: 900; text-decoration: none; }
.ecosystem-news-strip a:last-child { border-color: #1c72a5; color: #14577e; }
@media (max-width: 720px) {
  .ecosystem-news-strip { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; }
  .ecosystem-news-strip nav { justify-content: stretch; }
  .ecosystem-news-strip a { flex: 1 1 100%; justify-content: center; text-align: center; }
}

/* v23 customer route directory */
.route-page {
  background: #eef4f1;
}

.route-page .nav a.current {
  color: #07120e;
  background: #fff;
  border-color: #fff;
}

.route-hero {
  padding: 64px 6vw 42px;
  color: #fff;
  background: #071d14;
  border-bottom: 5px solid var(--green);
}

.route-hero-inner,
.route-directory-inner,
.route-assurance {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.route-hero h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .98;
}

.route-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
}

.route-directory {
  padding: 34px 0 18px;
}

.route-directory-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-choice {
  --route-accent: #168758;
  min-height: 188px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: start;
  padding: 28px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--route-accent);
  transition: background-color .18s ease, transform .18s ease;
}

.route-choice:hover,
.route-choice:focus-visible {
  position: relative;
  z-index: 1;
  background: #fafff7;
  transform: translateY(-2px);
  outline: 3px solid rgba(22, 135, 88, .18);
}

.route-choice small {
  color: var(--route-accent);
  font-size: 11px;
  font-weight: 950;
}

.route-choice h2 {
  margin-top: 8px;
  font-size: 29px;
  line-height: 1.05;
}

.route-choice p {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.route-number {
  color: var(--route-accent);
  font-size: 13px;
  font-weight: 950;
}

.route-choice > b {
  color: var(--route-accent);
  font-size: 28px;
  line-height: 1;
}

.route-print { --route-accent: #168758; }
.route-build { --route-accent: #e06319; }
.route-report { --route-accent: #007ca8; }
.route-news { --route-accent: #be2c46; }
.route-loyalty { --route-accent: #9b7600; }
.route-general { --route-accent: #674cb7; }

.route-assurance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.route-assurance strong,
.route-assurance span {
  display: block;
}

.route-assurance strong {
  font-size: 21px;
}

.route-assurance span {
  margin-top: 4px;
  color: var(--muted);
}

.compact-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .route-hero {
    padding: 44px 0 32px;
  }

  .route-hero-inner,
  .route-directory-inner,
  .route-assurance {
    width: min(100% - 28px, 1160px);
  }

  .route-directory-inner {
    grid-template-columns: 1fr;
  }

  .route-choice {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 22px 18px;
  }

  .route-choice h2 {
    font-size: 24px;
  }

  .route-assurance {
    align-items: stretch;
    flex-direction: column;
  }
}
