/* NaviTools — institutional single-pager
   Type: Newsreader (editorial display) + Geist (UI/body)
   Palette: deep navy, paper, signal orange accent
*/

:root {
  --navy:        #0B2A4A;
  --navy-deep:   #062038;
  --navy-soft:   #143458;
  --ink:         #0A1726;
  --paper:       #F5F1E8;
  --paper-2:     #EDE8DC;
  --line:        rgba(11,42,74,0.14);
  --line-soft:   rgba(11,42,74,0.08);
  --line-on-navy:rgba(255,255,255,0.14);
  --line-on-navy-soft:rgba(255,255,255,0.08);
  --mute:        rgba(11,42,74,0.62);
  --mute-on-navy:rgba(255,255,255,0.62);
  --signal:      #E8531F;
  --aqua:        #2BB3C0;
  --max:         1280px;
  --gutter:      clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
}

.serif { font-family: 'Newsreader', 'Source Serif 4', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.rule {
  height: 1px; background: var(--line); border: 0; margin: 0;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

a { color: inherit; text-decoration: none; }
a.link { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
a.link:hover { color: var(--signal); }

/* ─────────── Top utility + nav ─────────── */
.utility {
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--mute);
}
.utility .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 5px; padding-bottom: 5px;
}
.utility .pill {
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px;
}
.utility .pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.22);
}
.utility nav { display: flex; align-items: center; gap: 22px; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
}
.lang-switcher button {
  background: none; border: none; cursor: pointer;
  padding: 3px 5px; border-radius: 4px;
  line-height: 0;
  opacity: 0.4;
  transition: opacity 0.15s, background 0.15s;
}
.lang-switcher button:hover { opacity: 0.75; }
.lang-switcher button.lang-active {
  opacity: 1;
  background: rgba(11,42,74,0.08);
}
.lang-switcher .fi {
  width: 18px; height: 13px;
  border-radius: 2px;
  display: inline-block;
}

.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(245,241,232,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  overflow: visible;
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 4px; padding-bottom: 4px;
}
.nav .brand { display: flex; align-items: center; }
.nav .brand-logo {
  height: clamp(36px, 5vw, 52px);
  width: auto;
  display: block;
  object-fit: contain;
}
.nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px; font-size: 14px;
}
.nav ul a:hover { color: var(--signal); }
.nav .cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  padding: 8px 15px; border-radius: 999px; font-size: 12px;
}
.nav .cta:hover { background: var(--signal); }
.nav .cta svg { width: 12px; height: 12px; }
/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — fixed full-screen overlay (outside sticky nav for iOS compat) */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  background: var(--paper);
  padding: 80px var(--gutter) 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-family: 'Newsreader', serif;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile ul li a:hover { color: var(--signal); }
.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
}
.nav-mobile-cta svg { width: 12px; height: 12px; }

@media (max-width: 720px) {
  .nav ul { display: none; }
  .nav .cta { display: none; }
  .nav-toggle { display: flex; }
  .nav .brand-logo { height: clamp(32px, 9vw, 44px); }
}

/* ─────────── Hero ─────────── */
.hero {
  padding: clamp(72px, 12vw, 160px) 0 clamp(80px, 11vw, 140px);
  position: relative; overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(6, 32, 56, 0.38) 0%,
      rgba(6, 32, 56, 0.08) 30%,
      rgba(6, 32, 56, 0.08) 55%,
      rgba(6, 32, 56, 1.00) 100%),
    url('../assets/hero-bg.jpg') center 40% / cover no-repeat;
  color: #fff;
}

/* Stats bar — solid navy flush below hero, image bleeds into it */
.hero-stats-bar {
  background: var(--navy-deep);
  color: #fff;
}
.hero h1 em {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}
.hero .eyebrow, .hero .hero-eyebrow { color: rgba(255,255,255,0.6); }
.hero .hero-eyebrow .dot { background: var(--signal); opacity: 1; }
.hero-tagline { color: #fff !important; }
.hero-sub { color: rgba(255,255,255,0.72) !important; }
.hero-pillars {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-pillars li {
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(255,255,255,0.75);
  display: flex; align-items: baseline; gap: 12px;
}
.pillar-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  min-width: 52px;
}
.hero-stats { border-color: rgba(255,255,255,0.2) !important; }
.hero-stats .stat { border-right-color: rgba(255,255,255,0.1) !important; }
.hero-stats .num { color: #fff; }
.hero-stats .lbl { color: rgba(255,255,255,0.6) !important; }

/* Co-branding ribbon under hero */
.cobrand {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cobrand .container {
  display: flex; align-items: center; gap: 16px;
  padding-top: 14px; padding-bottom: 14px;
}
.cobrand-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); white-space: nowrap;
}
.cobrand-logo {
  height: 36px; width: auto; display: block; opacity: 0.88; flex-shrink: 0;
}
.cobrand-desc {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
@media (max-width: 560px) {
  .cobrand-label { display: none; }
  .cobrand-desc { display: none; }
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; color: var(--mute);
}
.hero-eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--navy); opacity: 0.5; }
.hero h1 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.0; letter-spacing: -0.025em;
  margin: 18px 0 0; max-width: 18ch;
  text-wrap: balance;
}
.hero-sub {
  margin-top: 28px; max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 20px); color: var(--mute); line-height: 1.55;
}
.hero-tagline {
  margin-top: 18px; font-family: 'Newsreader', serif; font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); color: var(--navy);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-on-navy);
  border-bottom: 1px solid var(--line-on-navy);
}
.hero-stats .stat {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line-on-navy-soft);
}
.hero-stats .stat:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(2) { border-right: 0; }
  .hero-stats .stat:nth-child(3),
  .hero-stats .stat:nth-child(4) { border-top: 1px solid var(--line-on-navy-soft); }
  .hero-stats .stat:nth-child(4) { border-right: 0; }
}
.hero-stats .num {
  font-family: 'Newsreader', serif; font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em; line-height: 1;
}
.hero-stats .num sup { font-size: 0.5em; vertical-align: super; color: var(--signal); }
.hero-stats .lbl { margin-top: 8px; font-size: 12.5px; color: var(--mute); line-height: 1.4; }

.hero-figure {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 10%;
  width: clamp(280px, 32vw, 460px);
  overflow: hidden;
  z-index: 4;
  opacity: 0.88;
  /* bleed in from right/bottom, fade left and top */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 18%, black 42%),
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 14%, black 36%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 18%, black 42%),
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 14%, black 36%);
          mask-composite: intersect;
  mix-blend-mode: luminosity;
  display: none;
}
@media (min-width: 860px) { .hero-figure { display: block; } }
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 40% 25%;
  display: block;
  pointer-events: none;
}

/* ─────────── Section header ─────────── */
section { padding: clamp(64px, 9vw, 128px) 0; }
section.dark { background: var(--navy); color: #fff; }
section.dark .eyebrow { color: rgba(255,255,255,0.6); }
section.dark .rule { background: rgba(255,255,255,0.2); }

.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: clamp(24px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.section-head .lhs { display: flex; flex-direction: column; gap: 14px; }
.section-head h2 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 0; max-width: 22ch; text-wrap: balance;
}
.section-head .rhs { color: var(--mute); font-size: 16.5px; max-width: 52ch; }
section.dark .section-head .rhs { color: rgba(255,255,255,0.7); }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}
#partners .section-head {
  grid-template-columns: 1.35fr 1.65fr;
}
#partners .section-head h2 {
  max-width: 18ch;
}

/* ─────────── Problem ─────────── */
.problem-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.problem-text {
  display: flex; flex-direction: column; gap: clamp(20px, 3vw, 32px);
}
.problem-body p {
  font-family: 'Newsreader', serif; font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.35; letter-spacing: -0.01em; margin: 0 0 0.8em;
  text-wrap: pretty;
}
.problem-pivot {
  font-family: 'Newsreader', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  border-left: 3px solid var(--signal);
  padding-left: 16px;
}
.problem-body .meta {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.problem-body .meta .item .k {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--signal);
}
.problem-body .meta .item .v {
  font-family: 'Newsreader', serif; font-size: 22px; margin-top: 6px; line-height: 1.25;
}
@media (max-width: 900px) {
  .problem-body { grid-template-columns: 1fr; }
  .problem-image { display: none; }
}

.problem-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: clamp(360px, 45vw, 560px);
}
.problem-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: 15% top;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 15%, black 35%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 15%, black 35%);
}

/* ─────────── Solution: audience columns ─────────── */
.audiences {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.audiences.cols-1 { grid-template-columns: 1fr; }
.audiences.cols-2 { grid-template-columns: repeat(2, 1fr); }
.audiences.cols-3 { grid-template-columns: repeat(3, 1fr); }
.audiences .col {
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 36px);
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.audiences .col:last-child { border-right: 0; }
/* on navy */
section.dark .audiences { border-top-color: rgba(255,255,255,0.18); }
section.dark .audiences .col { border-right-color: rgba(255,255,255,0.12); }
section.dark .audiences .col .idx { color: rgba(255,255,255,0.6); }
section.dark .audiences .col .idx::after { background: rgba(255,255,255,0.12); }
section.dark .audiences .col h3 { color: #fff; }
section.dark .audiences .col li { color: rgba(255,255,255,0.85); }

/* Fisherman feature — solo column, big right-side photo slot on navy */
.fisherman {
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: clamp(32px, 5vw, 80px); align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: clamp(32px, 4vw, 56px);
}
.fisherman .lhs { display: flex; flex-direction: column; gap: 18px; }
.fisherman .idx { font-family: 'Newsreader', serif; font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 12px; }
.fisherman .idx::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.fisherman h3 {
  font-family: 'Newsreader', serif; font-weight: 400; letter-spacing: -0.01em;
  font-size: clamp(28px, 2.6vw, 40px); margin: 0; color: #fff;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .fisherman h3 { white-space: normal; }
}
.fisherman ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.fisherman li {
  display: grid; grid-template-columns: 14px 1fr; gap: 12px;
  font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.5;
}
.fisherman li::before {
  content: ''; width: 6px; height: 6px; margin-top: 8px;
  background: var(--signal); border-radius: 50%;
}
#community .section-head { align-items: start; }
#community .section-head .lhs {
  /* Push title down past the eyebrow line so the image top aligns with the h2 top */
  padding-top: calc(11px * 1.4 + 14px);
}
#community .section-head .lhs .eyebrow {
  margin-top: calc(-1 * (11px * 1.4 + 14px));
  margin-bottom: 0;
}
.community-photo {
  width: 70%;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
}
.community-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 2px; }
.community-intro {
  margin: 0 0 clamp(32px, 4vw, 56px);
  max-width: 60ch;
  font-family: 'Newsreader', serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.fisherman .rhs img { width: 100%; height: 100%; min-height: 180px; max-height: 340px; object-fit: cover; object-position: center top; display: block; border-radius: 3px; }
@media (max-width: 900px) { .fisherman { grid-template-columns: 1fr; } }
.audiences .col .idx {
  font-family: 'Newsreader', serif; font-size: 14px; color: var(--mute);
  display: flex; align-items: center; gap: 12px;
}
.audiences .col .idx::after { content: ''; flex: 1; height: 1px; background: var(--line-soft); }
.audiences .col h3 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px); margin: 0; letter-spacing: -0.01em;
}
.audiences .col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.audiences .col li {
  display: grid; grid-template-columns: 14px 1fr; gap: 12px;
  font-size: 15px; color: var(--ink); line-height: 1.45;
}
.audiences .col li::before {
  content: ''; width: 6px; height: 6px; margin-top: 8px;
  background: var(--signal); border-radius: 50%;
}
.audiences .col li b { font-weight: 600; }
@media (max-width: 900px) {
  .audiences,
  .audiences.cols-2,
  .audiences.cols-3 { grid-template-columns: 1fr; }
  .audiences .col { border-right: 0; border-bottom: 1px solid var(--line-soft); }
}

/* ─────────── Technology — cards 01–05 ─────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: clamp(32px, 4vw, 52px) 0 clamp(20px, 3vw, 36px);
}


/* Base card */
.tc {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.tc:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
}

/* Aqua top accent for text-only cards */
.tc:not(.tc--img) {
  border-top: 2px solid rgba(43,179,192,0.5);
}

/* Image figure */
.tc-photo {
  margin: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.tc-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.tc:hover .tc-photo img { transform: scale(1.04); }

/* Quote overlay on skipper photo */
.tc-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(6,32,56,0.90) 0%, rgba(6,32,56,0.40) 65%, transparent 100%);
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}

/* Card body */
.tc-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.tc-num {
  font-family: 'Newsreader', serif;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.32);
}
.tc-title {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  line-height: 1.25;
}
.tc-desc {
  margin: 0;
  color: rgba(255,255,255,0.60);
  font-size: 14px;
  line-height: 1.65;
}

/* Tablet: collapse to 2-column grid */
@media (max-width: 1024px) and (min-width: 641px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: single column */
@media (max-width: 640px) {
  .tech-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ─── Card 06 — AI feature (full-width) ─────────────── */
.tech {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.tech .card.c6 {
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.6vw, 36px);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tech h3 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  margin: 0;
  letter-spacing: -0.01em;
}
.tech p { margin: 0; color: rgba(255,255,255,0.72); font-size: 15.5px; line-height: 1.55; }
.tech .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--signal);
}
.tech .badge::before {
  content: ''; width: 18px; height: 1px; background: var(--signal);
}

/* ─────────── Proof — cinematic full-bleed redesign ─────────── */

/* Full-bleed fleet photo with overlay stat */
.proof-cinematic {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 320px;
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 48px);
}
.proof-cinematic img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
/* Gradient from bottom-left for stat readability */
.proof-cinematic::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top,    rgba(6,32,56,0.88) 0%, rgba(6,32,56,0.42) 36%, transparent 62%),
    linear-gradient(to right,  rgba(6,32,56,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.proof-cinematic-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end;
  padding: clamp(24px, 4vw, 56px);
}
.proof-cinematic-stat .big {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(72px, 11vw, 144px);
  line-height: 0.88; letter-spacing: -0.04em;
  color: #fff;
}
.proof-cinematic-stat .big sup {
  font-size: 0.28em; vertical-align: super;
  color: var(--signal); margin-left: 2px;
}
.proof-cinematic-stat p {
  font-family: 'Newsreader', serif;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.3; margin: 8px 0 6px;
  max-width: 36ch; color: rgba(255,255,255,0.88);
}
.proof-cinematic-stat .source {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 640px) {
  .proof-cinematic { aspect-ratio: 4 / 3; }
}

/* Partner credentials horizontal strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(28px, 3.5vw, 48px);
}
/* Constrained to page max-width */
.proof-strip--contained {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  border-left: 0;
  border-right: 0;
}
.proof-strip-item {
  padding: clamp(20px, 2.4vw, 32px) clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-strip-item:last-child { border-right: 0; }
.proof-strip-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--signal); font-weight: 600;
}
.proof-strip-desc {
  font-size: 13px; color: var(--mute); line-height: 1.4;
}
.it-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}
.it-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.it-logo.bfpo-logo {
  height: 36px !important;
  max-width: 100% !important;
  width: auto !important;
}
@media (max-width: 900px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip-item:nth-child(2) { border-right: 0; }
  .proof-strip-item:nth-child(3) { border-top: 1px solid var(--line-soft); }
  .proof-strip-item:nth-child(4) { border-top: 1px solid var(--line-soft); border-right: 0; }
}
@media (max-width: 560px) {
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .proof-strip-item:last-child { border-bottom: 0; }
}

/* Two-column row: map left, VIStools right */
.proof-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
  padding: clamp(32px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) {
  .proof-bottom-row { grid-template-columns: 1fr; }
}

/* Shared proof card */
.proof-card {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255,255,255,0.35);
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Image + description side by side */
.proof-card__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 560px) {
  .proof-card__body { grid-template-columns: 1fr; }
}
.proof-card__visual {
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-2);
  flex-shrink: 0;
}
.proof-card__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.proof-card__visual--map {
  background: transparent;
}
.proof-card__visual--map #proof-map-wrap svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.proof-card__desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.55;
}
.map-legend { margin-top: 8px; }

/* ─────────── Proof map ─────────── */
.proof-map {
  padding: 10px 0 0;
  border-top: 1px solid var(--line-soft);
  margin-top: 10px;
}
.proof-map .map-eyebrow {
  margin-bottom: 10px;
}
#proof-map-wrap svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
#proof-map-wrap .country path {
  transition: fill 0.3s, opacity 0.3s;
}
#proof-map-wrap .country.active path {
  fill: var(--signal) !important;
  opacity: var(--cov-opacity, 1);
}

/* Legend */
.map-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  max-width: 220px;
}
.map-legend span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}
.legend-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right,
    rgba(232, 83, 31, 0.28),
    rgba(232, 83, 31, 1.0));
  display: block !important;
  letter-spacing: 0 !important;
}

/* ─────────── VIStools inset (legacy — now .proof-card) ─────────── */

/* ─────────── Proof — video row ─────────── */
.proof-video-row {
  border-top: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 48px) 0 clamp(8px, 1vw, 16px);
}
.proof-video-eyebrow {
  margin-bottom: 18px;
}
.proof-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
}
@media (max-width: 700px) {
  .proof-video-grid { grid-template-columns: 1fr; }
}
.proof-video-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-deep);
}
.proof-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.proof-video-label {
  margin: 0;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
}

/* ─────────── EU 2026 callout ─────────── */
.callout {
  background: var(--paper-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(48px, 7vw, 96px) 0;
}
.callout .row {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.callout .row .left .eyebrow { color: var(--signal); }
.callout h3 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px); letter-spacing: -0.01em;
  margin: 12px 0 0; line-height: 1.1;
}
.callout p { color: var(--mute); margin: 16px 0 0; max-width: 56ch; font-size: 16.5px; }
.callout .date {
  font-family: 'Newsreader', serif; font-size: clamp(64px, 9vw, 132px);
  line-height: 0.9; letter-spacing: -0.03em; color: var(--navy);
}
.callout .date small {
  display: block; font-family: 'Geist', sans-serif; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
  margin-top: 12px;
}
@media (max-width: 900px) { .callout .row { grid-template-columns: 1fr; } }

/* ─────────── Partners ─────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.partners-grid .cell {
  min-width: 0;
  min-height: 104px;
  border: 1px solid var(--line-soft);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.partners-grid .cell img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}
.partners-grid .cell.bfpo-cell .bfpo-grid-logo {
  width: 90%;
  height: auto;
  max-height: unset;
}
@media (max-width: 900px) {
  #partners .section-head {
    grid-template-columns: 1fr;
  }
  .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ─────────── Contact ─────────── */
.contact {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact h2 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(38px, 4.6vw, 72px); line-height: 1; letter-spacing: -0.02em;
  margin: 14px 0 0; max-width: 16ch;
}
.contact .sub { color: rgba(255,255,255,0.7); margin-top: 18px; max-width: 50ch; font-size: 16.5px; }
.contact .card-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
}
.contact label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.contact input, .contact textarea, .contact select {
  background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 10px 0 12px; font-family: inherit; font-size: 16px;
  outline: none;
}
.contact input::placeholder, .contact textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact input:focus, .contact textarea:focus, .contact select:focus { border-bottom-color: var(--signal); }
.contact textarea { min-height: 100px; resize: vertical; }
.contact .submit {
  margin-top: 12px;
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 12px; background: var(--signal); color: #fff; border: 0;
  padding: 16px 22px; font-family: inherit; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
}
.contact .submit:hover { background: #fff; color: var(--navy); }
.contact .field { display: flex; flex-direction: column; gap: 6px; }
.contact .direct {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 14px; color: rgba(255,255,255,0.85);
}
.contact .direct .k { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.contact .direct .v { font-family: 'Newsreader', serif; font-size: 22px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* ─────────── Footer ─────────── */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.65); font-size: 13px;
  padding: 48px 0 32px;
}
footer .container { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
footer h4 { font-family: 'Geist', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 14px; font-weight: 500; }
footer .brand-block .brand-name { font-family: 'Newsreader', serif; font-size: 24px; color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
footer ul a:hover { color: var(--signal); }
footer .meta {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
@media (max-width: 800px) { footer .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { footer .container { grid-template-columns: 1fr; } }

/* ─────────── Image slot defaults ─────────── */
image-slot {
  background: var(--paper-2);
  color: var(--mute);
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
section.dark image-slot { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
