/* ============================================================
   Shared Mobility Europe — V2
   Editorial / NYT Opinion register
   Brand: SME — Made in Europe. Moving Europe.
   ============================================================ */

:root {
  /* Verified SME palette (Brand Colors doc) */
  --eu-blue: #002F6C;
  --eu-blue-deep: #001428;
  --eu-blue-soft: #0077C8;
  --eu-blue-light: #48B4E0;
  --eu-yellow: #FFD100;
  --eu-yellow-soft: #ffe066;
  --white: #ffffff;
  --off-white: #F9FAF4;
  --paper: #FBFAF6;          /* warm magazine paper */
  --ink: #001428;
  --ink-soft: #2a3550;
  --grey: #6b7280;
  --grey-soft: #d1d5db;
  --grey-line: #e5e7eb;

  /* Typography */
  --serif: 'GT Sectra', 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Shadows Into Light', 'Caveat', cursive;

  /* Editorial scale */
  --text-display: clamp(56px, 8vw, 128px);
  --text-h1: clamp(48px, 6vw, 96px);
  --text-h2: clamp(36px, 4.5vw, 72px);
  --text-h3: clamp(24px, 2.4vw, 36px);
  --text-lede: clamp(20px, 1.6vw, 26px);
  --text-body: 17px;
  --text-small: 14px;
  --text-tiny: 12px;

  /* Layout */
  --max-w: 1320px;
  --max-w-prose: 720px;
  --gutter: 40px;
  --gutter-tight: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--eu-yellow); color: var(--eu-blue); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.serif { font-family: var(--serif); font-weight: 400; }
.script { font-family: var(--script); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}
em { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--text-tiny);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eu-blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--eu-blue);
}
.section-blue .eyebrow,
.section-blue-deep .eyebrow,
.section-blue .eyebrow::before,
.section-blue-deep .eyebrow::before { color: var(--eu-yellow); }
.section-blue .eyebrow::before,
.section-blue-deep .eyebrow::before { background: var(--eu-yellow); }

.section-title {
  font-size: var(--text-h2);
  margin-bottom: 28px;
  max-width: 18ch;
}
.section-title em { color: var(--eu-blue); }
.section-blue .section-title em,
.section-blue-deep .section-title em,
.long-way .section-title em { color: var(--eu-yellow); }

.lede {
  font-size: var(--text-lede);
  line-height: 1.5;
  color: var(--grey);
  max-width: var(--max-w-prose);
  font-weight: 400;
}
.section-blue .lede,
.section-blue-deep .lede { color: rgba(255,255,255,0.78); }

/* ============================================================
   STRIPES — yellow diagonal motif
   ============================================================ */
.stripe-corner {
  position: absolute;
  width: 220px;
  height: 220px;
  background: repeating-linear-gradient(135deg,
    var(--eu-yellow) 0,
    var(--eu-yellow) 14px,
    transparent 14px,
    transparent 28px);
  pointer-events: none;
  opacity: 0.95;
  z-index: 2;
}
.stripe-corner.tl { top: 0; left: 0; clip-path: polygon(0 0, 100% 0, 0 100%); }
.stripe-corner.tr { top: 0; right: 0; clip-path: polygon(0 0, 100% 0, 100% 100%); }
.stripe-corner.bl { bottom: 0; left: 0; clip-path: polygon(0 0, 0 100%, 100% 100%); }
.stripe-corner.br { bottom: 0; right: 0; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.stripe-corner.sm { width: 140px; height: 140px; }
.stripe-bar {
  height: 18px;
  background: repeating-linear-gradient(135deg,
    var(--eu-yellow) 0,
    var(--eu-yellow) 14px,
    var(--eu-blue) 14px,
    var(--eu-blue) 28px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(0, 20, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 209, 0, 0.18);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 14px; color: var(--white); }
.logo svg { display: block; }
.logo-img { display: block; height: 46px; width: auto; }
.footer-logo-img { display: block; height: 64px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--eu-yellow);
}
.nav-cta {
  background: var(--eu-yellow);
  color: var(--eu-blue) !important;
  padding: 10px 20px;
  font-weight: 700 !important;
  border-radius: 4px;
  opacity: 1 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
}
.nav-cta:hover::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255, 209, 0, 0.4); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 209, 0, 0.28);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--eu-yellow);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section-blue { background: var(--eu-blue); color: var(--white); }
.section-blue-deep { background: var(--eu-blue-deep); color: var(--white); }
.section-white { background: var(--paper); color: var(--ink); }
.section-cream { background: var(--off-white); color: var(--ink); }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
  position: relative;
  z-index: 1;
}

/* ============================================================
   HERO — full-bleed cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--eu-blue-deep);
  color: var(--white);
  overflow: hidden;
  padding-top: 80px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 47, 108, 0.78) 0%,
    rgba(0, 20, 40, 0.5) 45%,
    rgba(0, 20, 40, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter) 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 80px);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--eu-yellow);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 2px;
  background: var(--eu-yellow);
}
.hero h1 {
  font-size: var(--text-display);
  line-height: 0.96;
  margin-bottom: 36px;
  letter-spacing: 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--eu-yellow);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 14%;
  background: rgba(255, 209, 0, 0.18);
  z-index: -1;
}
.hero-sub {
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 48px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.25s;
  font-family: var(--sans);
}
.btn-yellow {
  background: var(--eu-yellow);
  color: var(--eu-blue);
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 209, 0, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--eu-yellow); color: var(--eu-yellow); }

.hero-side-note {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: var(--eu-yellow);
  font-family: var(--script);
  font-size: 22px;
  transform: rotate(-4deg);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-side-note::before { content: '↓'; font-family: var(--sans); font-size: 18px; }

/* ============================================================
   CAMPAIGN PULSE
   ============================================================ */
.campaign-pulse {
  background:
    linear-gradient(135deg, rgba(0, 47, 108, 0.98) 0%, rgba(0, 20, 40, 1) 58%),
    var(--eu-blue-deep);
  color: var(--white);
  overflow: hidden;
}
.campaign-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  pointer-events: none;
}
.campaign-pulse-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.campaign-pulse-copy .eyebrow,
.campaign-pulse-copy .eyebrow::before {
  color: var(--eu-yellow);
}
.campaign-pulse-copy .eyebrow::before { background: var(--eu-yellow); }
.campaign-pulse-copy h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.05;
  margin: 18px 0 24px;
  max-width: 10ch;
}
.campaign-pulse-copy h2 em {
  color: var(--eu-yellow);
}
.campaign-pulse-copy p {
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}
.campaign-pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.campaign-pulse .counter {
  border: 1px solid rgba(255, 209, 0, 0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.campaign-pulse .counter-num {
  font-size: clamp(48px, 5vw, 84px);
  margin-bottom: 20px;
}
.campaign-pulse .counter-label {
  font-size: 14px;
}
.campaign-pulse .counter-source {
  color: rgba(255,255,255,0.42);
}

/* ============================================================
   COUNTERS
   ============================================================ */
.counters {
  background: var(--eu-blue-deep);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.counters-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.counter {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.counter:first-child { padding-left: 0; }
.counter:last-child { border-right: none; padding-right: 0; }
.counter-num {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 128px);
  color: var(--eu-yellow);
  line-height: 0.92;
  margin-bottom: 14px;
  letter-spacing: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.counter-label {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  max-width: 320px;
}
.counter-source {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* ============================================================
   TWO STORIES (Passenger + Driver split)
   ============================================================ */
.two-stories {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.two-stories-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.two-stories-head { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.two-stories-head .section-title {
  margin: 0 auto 24px;
  text-align: center;
  max-width: none;
}
.two-stories-head .lede {
  margin: 0 auto;
  text-align: center;
}
.two-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}
.two-story {
  padding: 64px 56px;
  position: relative;
}
.two-story:first-child {
  border-right: 1px solid var(--grey-line);
}
.two-story-label {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eu-blue);
  margin-bottom: 24px;
}
.two-story-title {
  font-family: var(--serif);
  font-size: var(--text-h3);
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--ink);
}
.two-story-stat {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 96px);
  color: var(--eu-blue);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.two-story-stat-label {
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey);
  max-width: 360px;
}

/* ============================================================
   WALL OF ABSURDITY
   ============================================================ */
.absurdity { background: var(--eu-blue); color: var(--white); overflow: hidden; }
.absurdity-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 130px var(--gutter) 70px;
}
.absurdity-track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter) 130px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.absurdity-track::-webkit-scrollbar { height: 6px; }
.absurdity-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); }
.absurdity-track::-webkit-scrollbar-thumb { background: var(--eu-yellow); border-radius: 3px; }
.map-detail-art {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 20, 40, 0.12);
  background: var(--off-white);
}
.map-detail-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.map-detail-art:hover img { transform: scale(1.035); }
.absurd-card {
  flex: 0 0 380px;
  background: var(--eu-blue-deep);
  border: 1px solid rgba(255, 209, 0, 0.18);
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.absurd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.absurd-card.positive { border-color: rgba(72, 180, 224, 0.4); }
.absurd-head {
  padding: 28px 28px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.absurd-num {
  font-family: var(--script);
  color: var(--eu-yellow);
  font-size: 22px;
  font-weight: 700;
}
.absurd-flag { font-size: 28px; line-height: 1; }
.absurd-headline {
  padding: 0 28px 20px;
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0.95;
  color: var(--eu-yellow);
  letter-spacing: 0;
}
.absurd-card.positive .absurd-headline { color: var(--eu-blue-light); }
.absurd-art {
  height: 220px;
  width: 100%;
  background: linear-gradient(180deg, var(--eu-blue) 0%, var(--eu-blue-deep) 100%);
  position: relative;
  overflow: hidden;
}
.absurd-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.absurd-art-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(255, 209, 0, 0.4);
  line-height: 1;
}
.absurd-foot {
  background: var(--eu-yellow);
  color: var(--eu-blue);
  padding: 22px 28px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  flex: 1;
  display: flex;
  align-items: center;
}
.absurd-card.positive .absurd-foot { background: var(--eu-blue-light); color: var(--eu-blue-deep); }
.absurd-country {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* ============================================================
   CITY JUXTAPOSITIONS
   ============================================================ */
.juxta { background: var(--paper); color: var(--ink); }
.juxta-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter) 60px;
  text-align: center;
}
.juxta-header .eyebrow {
  margin: 0 auto 18px;
  display: inline-flex;
}
.juxta-header .section-title {
  margin: 0 auto 24px;
  text-align: center;
}
.juxta-header .lede { margin: 0 auto; text-align: center; }
.juxta-pairs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}
.juxta-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 56px;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  background: var(--white);
}
.juxta-pair:last-child { margin-bottom: 0; }
.juxta-side {
  padding: 56px 48px;
  text-align: center;
  position: relative;
}
.juxta-side.right {
  background: var(--eu-blue);
  color: var(--white);
}
.juxta-flag { font-size: 56px; line-height: 1; margin-bottom: 16px; }
.juxta-city {
  font-family: var(--serif);
  font-size: var(--text-h3);
  line-height: 1.05;
  margin-bottom: 6px;
  color: var(--eu-blue);
}
.juxta-side.right .juxta-city { color: var(--white); }
.juxta-country {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 36px;
}
.juxta-side.right .juxta-country { color: rgba(255,255,255,0.65); }
.juxta-metric {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.92;
  color: var(--eu-blue);
  letter-spacing: 0;
  margin-bottom: 14px;
}
.juxta-side.right .juxta-metric { color: var(--eu-yellow); }
.juxta-metric-label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--grey);
  max-width: 200px;
  margin: 0 auto 28px;
}
.juxta-side.right .juxta-metric-label { color: rgba(255,255,255,0.7); }
.juxta-verdict {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--eu-blue);
}
.juxta-side.right .juxta-verdict { color: var(--eu-yellow); }
.juxta-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  padding: 0 24px;
  position: relative;
  border-left: 1px solid var(--grey-line);
  border-right: 1px solid var(--grey-line);
}
.juxta-vs-text {
  font-family: var(--script);
  font-size: 36px;
  color: var(--eu-blue);
  margin-bottom: 8px;
}
.juxta-vs-ratio {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--eu-blue);
  font-weight: 400;
  font-style: italic;
}
.juxta-pair-foot {
  grid-column: 1 / -1;
  padding: 40px 56px 48px;
  background: var(--white);
  border-top: 1px solid var(--grey-line);
  text-align: center;
}
.juxta-pair-foot h3 {
  font-family: var(--serif);
  font-size: var(--text-h3);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--ink);
}
.juxta-pair-foot p {
  max-width: 600px;
  margin: 0 auto 16px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.6;
}
.juxta-pair-foot .punchline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--eu-blue);
  margin-top: 18px;
}
.juxta-context {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 130px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.juxta-extreme {
  border-left: 4px solid var(--eu-yellow);
  padding: 24px 32px;
  background: var(--white);
}
.juxta-extreme strong {
  font-family: var(--serif);
  font-size: 56px;
  display: block;
  color: var(--eu-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.juxta-extreme .city-name {
  font-family: var(--serif);
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
}
.juxta-extreme .note {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

/* ============================================================
   DRIVERS + PASSENGERS (shared card system)
   ============================================================ */
.people { background: var(--eu-blue); color: var(--white); position: relative; }
.people .section-inner { padding: 130px var(--gutter); }
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.person-card {
  background: var(--eu-blue-deep);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}
.person-card:hover { transform: translateY(-6px); }
.person-portrait {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--eu-blue-soft) 0%, var(--eu-blue-deep) 100%);
  position: relative;
  overflow: hidden;
}
.person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-portrait-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-family: var(--serif);
  font-size: 96px;
  color: rgba(255,255,255,0.15);
}
.person-meta { padding: 28px; color: var(--white); }
.person-name {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 4px;
}
.person-where {
  font-size: 13px;
  color: var(--eu-yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.person-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}
.person-story {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.person-stat-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 209, 0, 0.25);
}
.person-stat {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--eu-yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.person-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}
.person-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 209, 0, 0.12);
  color: var(--eu-yellow);
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Aggregate stats */
.people-aggregate {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 209, 0, 0.25);
}
.people-aggregate h3 {
  font-family: var(--serif);
  font-size: var(--text-h3);
  margin-bottom: 36px;
  max-width: 16ch;
}
.aggregate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.aggregate-stat strong {
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 72px);
  color: var(--eu-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.aggregate-stat span {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  display: block;
}

/* ============================================================
   IMAGINE IF
   ============================================================ */
.imagine { background: var(--eu-blue-deep); color: var(--white); overflow: hidden; }
.imagine-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 130px var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.imagine-list { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); line-height: 1.25; }
.imagine-list p { margin-bottom: 32px; }
.imagine-list em.kw { color: var(--eu-yellow); font-style: italic; }
.imagine-list .turn {
  color: var(--eu-yellow);
  font-size: 0.55em;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 800;
  font-style: normal;
  display: block;
  margin: 50px 0 24px;
}
.imagine-list .conclusion { font-size: clamp(34px, 3.5vw, 54px); line-height: 1.15; }
.imagine-list .conclusion em { color: var(--eu-yellow); font-style: italic; }
.stopwatch-art { aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; }
.stopwatch-art img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   POSITION + PUBLICATIONS
   ============================================================ */
.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.draghi-quote {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  font-style: italic;
  border-left: 4px solid var(--eu-yellow);
  padding: 8px 0 8px 32px;
  margin: 32px 0;
}
.draghi-quote .attribution {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eu-yellow);
  margin-top: 16px;
  font-weight: 700;
}
.pubs-list { display: flex; flex-direction: column; gap: 16px; }
.pub {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 4px;
  transition: all 0.2s;
}
.pub:hover {
  border-color: var(--eu-yellow);
  background: rgba(255, 209, 0, 0.08);
  transform: translateX(6px);
}
.pub-info { flex: 1; }
.pub-date {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--eu-yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pub-title {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--white);
}
.pub-arrow { color: var(--eu-yellow); font-size: 22px; font-weight: 700; }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
.news-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.news-img {
  aspect-ratio: 16/10;
  background: var(--eu-blue);
  position: relative;
  overflow: hidden;
}
.news-card.featured .news-img { aspect-ratio: 4/3; }
.news-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-family: var(--serif);
  color: var(--eu-yellow);
  font-size: 64px;
}
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--eu-blue);
  text-transform: uppercase;
}
.news-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
}
.news-card.featured .news-title { font-size: 28px; }
.news-summary {
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey);
}
.news-meta {
  font-size: 12px;
  color: var(--grey);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--grey-soft);
  display: flex;
  justify-content: space-between;
}
.news-list { border-top: 1px solid rgba(255,255,255,0.15); }
.news-row {
  display: grid;
  grid-template-columns: 90px 1fr 140px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: center;
  transition: padding-left 0.2s;
}
.news-row:hover { padding-left: 12px; }
.news-row .date {
  color: var(--eu-yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.news-row .title { font-family: var(--serif); font-size: 20px; line-height: 1.3; color: var(--white); }
.news-row .src { font-size: 12px; color: rgba(255,255,255,0.55); text-align: right; }

/* ============================================================
   MEMBERS — with logo support
   ============================================================ */
.members-stat {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.members-stat strong {
  font-family: var(--serif);
  font-size: 96px;
  color: var(--eu-yellow);
  line-height: 1;
}
.members-stat span {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.member {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 32px 24px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.member-logo-slot {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.member-logo-slot img {
  max-height: 56px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.member-logo-fallback {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--eu-blue);
  letter-spacing: 0;
  line-height: 1;
}
.member-meta { margin-top: auto; }
.member-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  color: var(--eu-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.member-full {
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.45;
  margin-bottom: 8px;
}
.member-country {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
.event-featured {
  background: var(--eu-blue);
  color: var(--white);
  padding: 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.event-date {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--eu-yellow);
  margin-bottom: 8px;
}
.event-when {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-weight: 700;
}
.event-title { font-family: var(--serif); font-size: 36px; line-height: 1.15; margin-bottom: 16px; }
.event-desc { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 460px; }
.event-list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-soft);
}
.event-row .when {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--eu-blue);
}
.event-row .what strong {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  line-height: 1.25;
}
.event-row .what span { font-size: 13px; color: var(--grey); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--eu-blue);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 130px var(--gutter);
  position: relative;
  z-index: 1;
}
.cta h2 { font-family: var(--serif); font-size: clamp(44px, 6vw, 84px); line-height: 1.05; margin-bottom: 28px; }
.cta h2 em { color: var(--eu-yellow); font-style: italic; }
.cta-sub {
  font-size: 19px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--eu-blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px var(--gutter) 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-tag {
  color: var(--eu-yellow);
  font-family: var(--script);
  font-size: 22px;
  margin-bottom: 14px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--eu-yellow); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.visible { animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.25s; }
.reveal.d3 { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .nav-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    padding: 14px;
    background: rgba(0, 20, 40, 0.98);
    border: 1px solid rgba(255, 209, 0, 0.22);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links a {
    padding: 12px 14px;
    border-radius: 4px;
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .nav-links a:hover::after { display: none; }
  .nav-links .nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 6px;
  }
  .nav-inner { padding: 14px 24px; }
  .section-inner { padding: 80px 24px; }
  .campaign-pulse-inner { grid-template-columns: 1fr; padding: 72px 24px; }
  .campaign-pulse-copy h2 { max-width: 12ch; }
  .campaign-pulse-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .counter { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 48px; }
  .counter:last-child { border-bottom: none; padding-bottom: 0; }
  .two-stories-grid { grid-template-columns: 1fr; }
  .two-story { padding: 48px 32px; }
  .two-story:first-child { border-right: none; border-bottom: 1px solid var(--grey-line); }
  .position-grid, .imagine-grid, .events-grid { grid-template-columns: 1fr; gap: 40px; }
  .juxta-pair { grid-template-columns: 1fr; }
  .juxta-vs { padding: 24px 0; border: none; border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); }
  .juxta-context { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .aggregate-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .absurdity-header { padding: 80px 24px 50px; }
  .absurdity-track { padding: 0 24px 80px; }
  .absurd-card { flex: 0 0 300px; }
  .imagine-grid { padding: 80px 24px; }
  .cta-inner { padding: 90px 24px; }
  .juxta-header { padding: 80px 24px 50px; }
  .juxta-pairs { padding: 0 24px 50px; }
  .juxta-context { padding: 0 24px 80px; }
}
@media (max-width: 600px) {
  .members-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 1fr; gap: 6px; }
  .news-row .src { text-align: left; }
  .hero-side-note { display: none; }
  .hero h1 { font-size: clamp(52px, 18vw, 84px); }
  .hero-sub { font-size: 18px; }
  .campaign-pulse .counter { min-height: auto; }
}

/* ============================================================
   V2.5 — THE LONG WAY HOME (scrollytelling)
   ============================================================ */
.long-way {
  background: var(--eu-blue-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.long-way-intro {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter) 40px;
  text-align: center;
}
.long-way-intro .eyebrow {
  margin: 0 auto 18px;
  display: inline-flex;
}
.long-way-intro .eyebrow,
.long-way-intro .eyebrow::before { color: var(--eu-yellow); background: var(--eu-yellow); }
.long-way-intro .eyebrow::before { background: var(--eu-yellow); }
.long-way-intro .section-title { margin: 0 auto 24px; max-width: 22ch; }
.long-way-intro .lede { margin: 0 auto 28px; }
.long-way-opening {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--eu-yellow);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.35;
}
.long-way-stage {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.long-way-sticky {
  position: sticky;
  top: 80px;
  align-self: start;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.phone-frame {
  width: 320px;
  height: 660px;
  background: linear-gradient(180deg, #1a1d2e 0%, #0a0e1a 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #001a3a 0%, #001428 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-app-bar {
  padding: 50px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.phone-app-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--eu-yellow);
}
.phone-app-time {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.phone-content {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s, transform 0.3s;
}
.phone-content.swap {
  opacity: 0;
  transform: translateY(8px);
}
.phone-loader { color: rgba(255,255,255,0.5); font-size: 14px; }
.phone-pulse {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--eu-yellow);
  margin: 0 auto 24px;
  opacity: 0.2;
  animation: phonePulse 1.6s ease-in-out infinite;
}
@keyframes phonePulse {
  0%, 100% { transform: scale(0.85); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.4; }
}
.phone-flag { font-size: 38px; margin-bottom: 16px; }
.phone-city {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--eu-yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.phone-context {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.phone-status {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.phone-status.searching { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.phone-status.failed { background: rgba(255, 68, 68, 0.15); color: #ff7777; }
.phone-status.success { background: rgba(72, 180, 224, 0.18); color: var(--eu-blue-light); }
.phone-result {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
  padding: 0 8px;
}
.phone-reason {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  padding: 0 8px;
}
.long-way-panels {
  padding-top: 25vh;
  padding-bottom: 25vh;
}
.lw-panel {
  min-height: 60vh;
  padding: 12vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lw-panel-num {
  font-family: var(--script);
  font-size: 36px;
  color: var(--eu-yellow);
  margin-bottom: 16px;
}
.lw-panel-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0;
}
.lw-panel-rule {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  max-width: 480px;
}
.lw-panel-stat {
  border-left: 3px solid var(--eu-yellow);
  padding-left: 20px;
  margin-top: 12px;
}
.lw-panel-stat-num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--eu-yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.lw-panel-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 320px;
}
.long-way-closing {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px var(--gutter);
  text-align: center;
}
.long-way-closing .section-title { margin: 0 auto 24px; }
.long-way-closing .lede { margin: 0 auto 28px; }
.long-way-punch {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--eu-yellow);
  line-height: 1.3;
  margin-bottom: 40px;
}

/* ============================================================
   V2.5 — INTERACTIVE EUROPE MAP
   ============================================================ */
.map-section {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.map-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.map-header { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.map-header .eyebrow { margin: 0 auto 18px; display: inline-flex; }
.map-header .section-title { margin: 0 auto 24px; }
.map-header .lede { margin: 0 auto; }
.map-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.map-filters {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--grey-line);
}
.map-filter {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: var(--sans);
  border: none;
}
.map-filter:hover { color: var(--ink); }
.map-filter.active {
  background: var(--eu-blue);
  color: var(--white);
}
.map-legend {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.3px;
}
.map-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.map-legend-dot.red { background: #d23a3a; }
.map-legend-dot.amber { background: #e8a533; }
.map-legend-dot.blue { background: var(--eu-blue-light); }
.map-legend-dot.yellow { background: var(--eu-yellow); }
.map-legend-dot.grey { background: #c4c8d0; }

.map-stage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.map-grid {
  position: relative;
  background: linear-gradient(180deg, #fcfcfa 0%, var(--white) 100%);
  border: 1px solid var(--grey-line);
  border-radius: 12px;
  padding: 36px;
  aspect-ratio: 10 / 9;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 6px;
  box-shadow: 0 4px 24px rgba(0, 47, 108, 0.05);
}
.map-tile {
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  transition: all 0.2s;
  font-size: 10px;
  position: relative;
  border: 1px solid transparent;
}
.map-tile:hover {
  transform: scale(1.08);
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.map-tile.active {
  outline: 3px solid var(--eu-blue);
  outline-offset: 2px;
}
.map-tile-flag {
  font-size: clamp(14px, 1.2vw, 22px);
  line-height: 1;
}
.map-tile-code {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ink);
  opacity: 0.85;
}
.map-tile.red { background: rgba(210, 58, 58, 0.18); border-color: rgba(210, 58, 58, 0.4); }
.map-tile.red.dim { background: rgba(210, 58, 58, 0.06); border-color: rgba(210, 58, 58, 0.15); opacity: 0.4; }
.map-tile.amber { background: rgba(232, 165, 51, 0.18); border-color: rgba(232, 165, 51, 0.4); }
.map-tile.amber.dim { background: rgba(232, 165, 51, 0.06); border-color: rgba(232, 165, 51, 0.15); opacity: 0.4; }
.map-tile.blue { background: rgba(72, 180, 224, 0.22); border-color: rgba(72, 180, 224, 0.5); }
.map-tile.blue.dim { background: rgba(72, 180, 224, 0.08); border-color: rgba(72, 180, 224, 0.18); opacity: 0.4; }
.map-tile.yellow { background: rgba(255, 209, 0, 0.25); border-color: rgba(255, 209, 0, 0.6); }
.map-tile.yellow.dim { background: rgba(255, 209, 0, 0.08); border-color: rgba(255, 209, 0, 0.2); opacity: 0.4; }
.map-tile.grey { background: rgba(196, 200, 208, 0.3); border-color: rgba(196, 200, 208, 0.6); }
.map-tile.grey.dim { background: rgba(196, 200, 208, 0.1); border-color: rgba(196, 200, 208, 0.2); opacity: 0.4; }

.map-detail {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 8px;
  padding: 32px;
  position: sticky;
  top: 100px;
  min-height: 400px;
}
.map-detail-default { color: var(--grey); }
.map-detail-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eu-blue);
  display: block;
  margin-bottom: 18px;
}
.map-detail-prompt {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}
.map-detail-content { color: var(--ink); }
.map-detail-flag { font-size: 56px; line-height: 1; margin-bottom: 14px; }
.map-detail-name {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 6px;
  color: var(--ink);
}
.map-detail-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.map-detail-status.red { background: rgba(210, 58, 58, 0.15); color: #b03030; }
.map-detail-status.amber { background: rgba(232, 165, 51, 0.18); color: #a86b00; }
.map-detail-status.blue { background: rgba(72, 180, 224, 0.18); color: var(--eu-blue); }
.map-detail-status.yellow { background: rgba(255, 209, 0, 0.22); color: var(--eu-blue); }
.map-detail-status.grey { background: rgba(196, 200, 208, 0.3); color: var(--grey); }
.map-detail-rule {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
}
.map-detail-affects {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--grey);
  margin-bottom: 16px;
}
.map-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--eu-blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--eu-blue);
  padding-bottom: 2px;
}

/* ============================================================
   V2.5 — WHAT MODERN LOOKS LIKE
   ============================================================ */
.modern {
  background: var(--off-white);
  color: var(--ink);
  position: relative;
}
.modern-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.modern-header { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.modern-header .eyebrow { margin: 0 auto 18px; display: inline-flex; }
.modern-header .section-title { margin: 0 auto 24px; }
.modern-header .lede { margin: 0 auto; }
.modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.modern-case {
  background: var(--white);
  border-radius: 8px;
  padding: 48px 40px;
  border-top: 4px solid var(--eu-blue-light);
  display: flex;
  flex-direction: column;
}
.modern-case .flag { font-size: 48px; line-height: 1; margin-bottom: 16px; }
.modern-case .country-line {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eu-blue);
  margin-bottom: 24px;
}
.modern-case .country-line .year {
  color: var(--grey);
  font-weight: 600;
  margin-left: 6px;
}
.modern-case .case-headline {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
}
.modern-case .case-stat {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  color: var(--eu-blue);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.modern-case .case-stat-label {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 28px;
  line-height: 1.5;
}
.modern-case .case-story {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1;
}
.modern-case .case-verdict {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--eu-blue);
  margin-top: auto;
}
.modern-closer {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.modern-closer em { color: var(--eu-blue); font-style: italic; }

/* ============================================================
   V2.5 — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .long-way-stage { grid-template-columns: 1fr; gap: 40px; }
  .long-way-sticky { position: relative; top: auto; height: auto; }
  .phone-frame { transform: scale(0.9); }
  .lw-panel { min-height: auto; padding: 60px 0; }
  .map-stage { grid-template-columns: 1fr; }
  .map-detail { position: static; }
  .modern-grid { grid-template-columns: 1fr; }
  .map-grid { aspect-ratio: 1; }
  .map-controls { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .map-grid { gap: 2px; padding: 16px; }
  .map-tile-code { display: none; }
  .map-tile-flag { font-size: 14px; }
  .phone-frame { transform: scale(0.8); }
  .long-way-intro { padding: 80px 24px 40px; }
  .long-way-closing { padding: 80px 24px; }
  .map-inner { padding: 80px 24px; }
  .modern-inner { padding: 80px 24px; }
  .modern-case { padding: 32px 24px; }
}

/* ============================================================
   V2.5b — TIGHTENING + LESS REPETITION
   ============================================================ */

/* Section transitions — quieter */
section + section { border-top: 0; }

/* Make the People sections visually distinct */
#drivers .people-grid,
#passengers .people-grid {
  display: grid;
  gap: 28px;
}
#drivers .people-grid { grid-template-columns: repeat(3, 1fr); }
/* Passengers as a different rhythm — stacked scenario cards */
#passengers .people-grid {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 50px auto 0;
  gap: 16px;
}
#passengers .person-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
}
#passengers .person-portrait {
  aspect-ratio: auto;
  height: 100%;
  min-height: 220px;
}
#passengers .person-meta {
  padding: 32px 40px;
}
#passengers .person-name {
  font-size: 22px;
  margin-bottom: 2px;
}
#passengers .person-where { margin-bottom: 8px; }
#passengers .person-quote {
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 14px;
}
#passengers .person-story { font-size: 14px; line-height: 1.6; }
#passengers .person-stat-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
}
#passengers .person-stat { font-size: 32px; margin-bottom: 0; line-height: 1; }
#passengers .person-stat-label { font-size: 11px; max-width: none; }

/* People aggregate stats — use horizontal layout to feel different */
.people-aggregate { margin-top: 60px; padding-top: 50px; }

@media (max-width: 1024px) {
  #passengers .person-card { grid-template-columns: 1fr; }
  #passengers .person-portrait { min-height: 280px; }
  #passengers .person-meta { padding: 28px; }
}

/* Passengers section uses paper background instead of deep blue for variety */
#passengers {
  background: var(--off-white) !important;
  color: var(--ink) !important;
}
#passengers .eyebrow,
#passengers .eyebrow::before { color: var(--eu-blue); background: var(--eu-blue); }
#passengers .eyebrow::before { background: var(--eu-blue); }
#passengers .section-title { color: var(--ink); }
#passengers .section-title em { color: var(--eu-blue); }
#passengers .lede { color: var(--grey); }
#passengers .person-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  box-shadow: 0 4px 18px rgba(0, 47, 108, 0.04);
}
#passengers .person-card:hover {
  box-shadow: 0 12px 32px rgba(0, 47, 108, 0.08);
}
#passengers .person-name { color: var(--ink); }
#passengers .person-where { color: var(--eu-blue); }
#passengers .person-quote { color: var(--ink); font-family: var(--serif); font-style: italic; }
#passengers .person-story { color: var(--grey); }
#passengers .person-stat-block { border-top-color: var(--grey-line); }
#passengers .person-stat { color: var(--eu-blue); }
#passengers .person-stat-label { color: var(--grey); }
#passengers .person-tag { background: rgba(0,47,108,0.08); color: var(--eu-blue); }
#passengers .people-aggregate { border-top-color: var(--grey-line); }
#passengers .people-aggregate h3 { color: var(--ink); }
#passengers .aggregate-stat strong { color: var(--eu-blue); }
#passengers .aggregate-stat span { color: var(--grey); }
#passengers .person-portrait-fallback { color: rgba(0, 47, 108, 0.12); background: linear-gradient(135deg, var(--off-white) 0%, var(--paper) 100%); }
#passengers .stripe-corner { opacity: 0.4; }

/* Long Way Home — better alignment of phone with panels */
.long-way-stage-fix-applied {}
.long-way-sticky {
  align-self: flex-start;
  height: calc(100vh - 80px);
  top: 80px;
}
.lw-panel:first-child { padding-top: 4vh; }
.lw-panel:last-child { padding-bottom: 8vh; }

/* Subtle horizontal section accents */
.section-blue + .section-blue,
.section-blue + .section-blue-deep,
.section-blue-deep + .section-blue { border-top: 1px solid rgba(255, 209, 0, 0.08); }

/* ============================================================
   V2.5c — STICKY PHONE FIX
   ============================================================ */
.long-way-stage {
  align-items: start !important;
  min-height: auto;
}
.long-way-sticky {
  position: sticky !important;
  top: 80px !important;
  align-self: start !important;
  height: calc(100vh - 80px) !important;
}

/* Add a subtle progress indicator showing which city of 12 we're on */
.phone-progress {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.phone-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 0.3s, transform 0.3s;
}
.phone-progress-dot.active {
  background: var(--eu-yellow);
  transform: scale(1.4);
}
.phone-progress-dot.passed {
  background: rgba(255, 209, 0, 0.5);
}

/* Smoother phone content swap */
.phone-content {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.phone-content.swap {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}

/* Trim the panels — even less padding now that sticky works properly */
.lw-panel {
  min-height: 50vh;
  padding: 8vh 0;
}
.long-way-panels {
  padding-top: 18vh;
  padding-bottom: 18vh;
}

/* ============================================================
   V2.5d — LONG WAY NAVIGATION OVERHAUL
   ============================================================ */

/* Sticky city navigator — sits below main nav while inside .long-way section */
.long-way-nav {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(0, 20, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 209, 0, 0.18);
  border-bottom: 1px solid rgba(255, 209, 0, 0.18);
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter);
}
.long-way-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.long-way-nav-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eu-yellow);
  white-space: nowrap;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 209, 0, 0.18);
}
.long-way-nav-pills {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.long-way-nav-pills::-webkit-scrollbar { display: none; }
.lw-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--sans);
}
.lw-pill .lw-pill-num {
  font-family: var(--script);
  color: var(--eu-yellow);
  font-size: 14px;
  font-weight: 700;
}
.lw-pill .lw-pill-flag { font-size: 14px; line-height: 1; }
.lw-pill:hover {
  background: rgba(255, 209, 0, 0.08);
  color: var(--white);
  border-color: rgba(255, 209, 0, 0.4);
}
.lw-pill.active {
  background: var(--eu-yellow);
  color: var(--eu-blue);
  border-color: var(--eu-yellow);
  font-weight: 800;
}
.lw-pill.active .lw-pill-num { color: var(--eu-blue); }
.lw-pill.passed { opacity: 0.55; }
.long-way-nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 209, 0, 0.12);
  color: var(--eu-yellow);
  border: 1px solid rgba(255, 209, 0, 0.3);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.long-way-nav-arrow:hover {
  background: var(--eu-yellow);
  color: var(--eu-blue);
}
.long-way-nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Compact panels — half the size for faster pacing */
.lw-panel {
  min-height: 40vh !important;
  padding: 6vh 0 !important;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0.32;
  transform: translateX(-8px);
}
.lw-panel.is-active {
  opacity: 1;
  transform: translateX(0);
}
.lw-panel.is-passed { opacity: 0.18; }
.lw-panel:hover { opacity: 0.6; }
.lw-panel.is-active:hover { opacity: 1; }

/* Stronger active panel visual */
.lw-panel.is-active .lw-panel-num { color: var(--eu-yellow); }
.lw-panel.is-active .lw-panel-title {
  color: var(--white);
  font-size: clamp(40px, 5vw, 72px);
}
.lw-panel.is-active .lw-panel-stat {
  border-left-color: var(--eu-yellow);
}

/* Smaller intro padding now that journey is more compact */
.long-way-intro { padding-bottom: 24px !important; }
.long-way-panels {
  padding-top: 8vh !important;
  padding-bottom: 12vh !important;
}

/* Phone progress dots — clickable */
.phone-progress-dot {
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.phone-progress-dot:hover { transform: scale(1.6) !important; }

/* Mobile: hide nav arrows + label, just show pills */
@media (max-width: 1024px) {
  .long-way-nav { top: 56px; }
  .long-way-nav-label { display: none; }
  .long-way-nav-arrow { display: none; }
  .long-way-nav-inner { padding: 10px 0; }
  .lw-pill { padding: 5px 10px; font-size: 11px; }
}

/* Style the section's stripe-corner so it doesn't sit under sticky nav */
.long-way > .stripe-corner.tr { z-index: 1; }

/* ============================================================
   V2.5e — STICKY NAV POSITIONING FIX
   ============================================================ */
.long-way-nav {
  position: sticky !important;
  top: 76px !important;          /* clear the main nav */
  z-index: 50 !important;
  background: rgba(0, 20, 40, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 209, 0, 0.2) !important;
  border-bottom: 1px solid rgba(255, 209, 0, 0.2) !important;
  margin: 0 !important;          /* remove negative margin that was pulling it outside parent */
  padding: 0 !important;
  width: 100% !important;
}
.long-way-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--gutter) !important;
  display: flex;
  align-items: center;
  gap: 14px;
}
.long-way-nav-pills {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  min-width: 0; /* let it shrink */
}
.long-way-nav-pills::-webkit-scrollbar { display: none; }

/* Fade indicator on edges of pills container so users know it scrolls */
.long-way-nav-inner {
  position: relative;
}
.long-way-nav-inner::before,
.long-way-nav-inner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
.long-way-nav-inner::before {
  left: 180px;
  background: linear-gradient(90deg, rgba(0,20,40,1) 0%, rgba(0,20,40,0) 100%);
}
.long-way-nav-inner::after {
  right: 100px;
  background: linear-gradient(90deg, rgba(0,20,40,0) 0%, rgba(0,20,40,1) 100%);
}

/* Make sure the section can host sticky correctly */
.long-way { overflow: visible !important; }

/* On smaller viewports the nav loses the label and arrows */
@media (max-width: 1024px) {
  .long-way-nav { top: 64px !important; }
  .long-way-nav-inner::before { left: 0; }
  .long-way-nav-inner::after { right: 0; }
}

/* ============================================================
   V2.5f — RIDE-HAILING PHONE UI + JUXTA POLISH + YELLOW HIGHLIGHTS
   ============================================================ */

/* ---- Phone redesign: ride-hailing app layout ---- */
.phone-content {
  padding: 0 !important;
  text-align: left !important;
  display: flex;
  flex-direction: column;
}
.ph-search {
  margin: 14px 14px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-weight: 500;
}
.ph-search-icon { font-size: 14px; flex: 0 0 auto; }
.ph-search-text { line-height: 1.35; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ph-map-wrap {
  flex: 1;
  margin: 0 14px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  border: 1px solid rgba(255,255,255,0.05);
}
.ph-map { width: 100%; height: 100%; display: block; }
.ph-card {
  margin: 12px 14px 18px;
  background: linear-gradient(180deg, rgba(0,40,90,0.7) 0%, rgba(0,20,40,0.92) 100%);
  border: 1px solid rgba(255, 209, 0, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--sans);
}
.ph-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ph-card-flag { font-size: 22px; line-height: 1; }
.ph-card-where { flex: 1; min-width: 0; }
.ph-card-city {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-card-tag {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.ph-card-status {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex: 0 0 auto;
}
.ph-card-status.failed { background: rgba(255,84,84,0.18); color: #ff7777; }
.ph-card-status.success { background: rgba(72,180,224,0.22); color: var(--eu-blue-light); }
.ph-card-result {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 8px;
}
.ph-card-reason {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
}

/* ---- Yellow highlight under em words on light backgrounds ---- */
.section-title em,
.modern-case .case-verdict,
.juxta-pair-foot .punchline,
.modern-closer em {
  background-image: linear-gradient(transparent 62%, rgba(255, 209, 0, 0.45) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 4px;
}
/* Skip the highlight on dark sections — yellow text already pops there */
.section-blue .section-title em,
.section-blue-deep .section-title em,
.long-way .section-title em,
.cta h2 em,
.imagine-list .conclusion em {
  background-image: none;
  padding: 0;
}

/* ---- Juxta visual upgrade ---- */
.juxta-pair {
  position: relative;
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 47, 108, 0.08);
  margin-bottom: 64px !important;
  background: var(--white) !important;
}
.juxta-pair:hover { box-shadow: 0 16px 60px rgba(0, 47, 108, 0.14); }
.juxta-side {
  padding: 64px 48px !important;
}
.juxta-side.left {
  background: linear-gradient(180deg, #fff 0%, #fbfbf6 100%);
}
.juxta-side.right {
  background: linear-gradient(180deg, var(--eu-blue) 0%, var(--eu-blue-deep) 100%) !important;
}
.juxta-flag {
  font-size: 44px !important;
  margin-bottom: 18px !important;
}
.juxta-city {
  font-size: clamp(28px, 2.6vw, 40px) !important;
  margin-bottom: 4px !important;
}
.juxta-country {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  margin-bottom: 32px !important;
}
.juxta-metric {
  font-size: clamp(96px, 12vw, 180px) !important;
  margin-bottom: 8px !important;
  position: relative;
}
.juxta-metric-label {
  font-size: 11px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px !important;
  max-width: 180px !important;
}
.juxta-verdict {
  display: inline-block;
  font-size: 12px !important;
  font-style: normal !important;
  font-family: var(--sans) !important;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.juxta-side.left .juxta-verdict {
  background: rgba(0, 47, 108, 0.08);
  color: var(--eu-blue);
}
.juxta-side.right .juxta-verdict {
  background: rgba(255, 209, 0, 0.18);
  color: var(--eu-yellow) !important;
}

/* "vs" connector — circular yellow badge */
.juxta-vs {
  background: var(--paper) !important;
  border-left: none !important;
  border-right: none !important;
  position: relative;
  padding: 0 16px !important;
}
.juxta-vs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper);
  z-index: 0;
}
.juxta-vs-text {
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: var(--sans) !important;
  font-weight: 800;
  color: var(--grey) !important;
  margin-bottom: 14px !important;
  position: relative; z-index: 1;
}
.juxta-vs-ratio {
  font-family: var(--serif) !important;
  font-size: clamp(40px, 4.2vw, 64px) !important;
  font-style: normal !important;
  color: var(--eu-blue) !important;
  background: var(--eu-yellow);
  padding: 14px 22px !important;
  border-radius: 999px;
  font-weight: 400;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(255, 209, 0, 0.5);
}

/* Pair foot — lighter, more confident */
.juxta-pair-foot {
  padding: 32px 56px 40px !important;
  background: var(--paper) !important;
  border-top: none !important;
  text-align: left !important;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: center;
}
.juxta-pair-foot p {
  margin: 0 !important;
  text-align: left !important;
  max-width: 600px !important;
  color: var(--ink-soft) !important;
  font-size: 15.5px !important;
  line-height: 1.55 !important;
}
.juxta-pair-foot .punchline {
  margin-top: 0 !important;
  text-align: left !important;
  font-size: 22px !important;
  font-style: italic;
  color: var(--eu-blue) !important;
  white-space: nowrap;
}

/* Hide the redundant headline in pair-foot — punchline carries the weight */
.juxta-pair-foot h3 { display: none; }

/* Context band below pairs — cleaner */
.juxta-context {
  padding-bottom: 110px !important;
}
.juxta-extreme {
  background: var(--white) !important;
  border-left: 4px solid var(--eu-yellow) !important;
  padding: 28px 32px !important;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 18px rgba(0,47,108,0.05);
}
.juxta-extreme strong {
  font-size: 64px !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
}

@media (max-width: 1024px) {
  .juxta-pair-foot { grid-template-columns: 1fr; padding: 28px 32px !important; }
  .juxta-pair-foot .punchline { white-space: normal; }
  .juxta-side { padding: 48px 32px !important; }
  .ph-card-result { font-size: 14px; }
}

/* ============================================================
   V2.5g — FROM/TO PHONE UI + AWARD CARDS
   ============================================================ */

/* ---- FROM/TO Route panel inside phone ---- */
.ph-route {
  margin: 12px 14px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.ph-route-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  flex: 0 0 auto;
}
.ph-pin {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.ph-pin.pickup {
  background: var(--eu-yellow);
  box-shadow: 0 0 0 3px rgba(255,209,0,0.18);
}
.ph-pin.dropoff {
  background: #ff5454;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  width: 11px;
  height: 11px;
}
.ph-pin.dropoff.success { background: var(--eu-blue-light); }
.ph-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,209,0,0.4), rgba(255,255,255,0.15));
  margin: 4px 0;
  border-radius: 2px;
}
.ph-route-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.ph-route-row {
  padding: 2px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ph-route-row + .ph-route-row {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ph-route-label {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
}
.ph-route-addr {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hide the old .ph-search if it's still around */
.ph-search { display: none !important; }

/* Tighter map area now that route block is taller */
.ph-map-wrap { min-height: 150px; }

/* ============================================================
   AWARD CARDS — Tallinn (gold) vs Brussels (counter)
   ============================================================ */
.juxta-context {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
}
/* Override the older juxta-extreme style for the new award treatment */
.juxta-context > .juxta-extreme { display: none !important; }

.award-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 36px 36px 92px;
  box-shadow: 0 4px 30px rgba(0,47,108,0.08);
  border: 1px solid var(--grey-line);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(0,47,108,0.16);
}

/* Gold (Tallinn) — yellow ribbon + trophy */
.award-card.award-gold {
  border-color: rgba(255, 209, 0, 0.5);
  background: linear-gradient(180deg, #fffbea 0%, #fff 60%);
}
.award-card.award-gold::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 8px;
  background: linear-gradient(180deg, var(--eu-yellow) 0%, #f5c000 100%);
}

/* Counter (Brussels) — somber slate ribbon */
.award-card.award-counter {
  border-color: rgba(108, 117, 132, 0.3);
  background: linear-gradient(180deg, #f4f5f8 0%, #fff 60%);
}
.award-card.award-counter::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 8px;
  background: linear-gradient(180deg, #6b7280 0%, #485264 100%);
}

.award-medal {
  position: absolute;
  top: 28px;
  left: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255, 209, 0, 0.18);
  border: 2px solid var(--eu-yellow);
}
.award-card.award-counter .award-medal {
  background: rgba(108, 117, 132, 0.12);
  border-color: #6b7280;
}

.award-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eu-blue);
  margin-bottom: 18px;
}
.award-card.award-counter .award-label {
  color: #485264;
}
.award-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-line);
}
.award-city {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}
.award-country {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 600;
}
.award-metric { text-align: right; }
.award-metric strong {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.95;
  color: var(--eu-blue);
  display: block;
  letter-spacing: 0;
}
.award-card.award-counter .award-metric strong {
  color: #485264;
}
.award-metric span {
  display: block;
  font-size: 11px;
  color: var(--grey);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.award-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 1024px) {
  .juxta-context { grid-template-columns: 1fr !important; }
  .award-card { padding: 32px 28px 28px 76px; }
  .award-medal { width: 44px; height: 44px; left: 20px; top: 24px; font-size: 24px; }
  .award-row { flex-direction: column; align-items: flex-start; }
  .award-metric { text-align: left; }
  .award-metric strong { font-size: 52px; }
}

/* ============================================================
   V2.5h — RideEurope wordmark
   ============================================================ */
.phone-app-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.92) !important;
}
.phone-app-star {
  color: var(--eu-yellow);
  font-size: 14px;
  line-height: 1;
}
.phone-app-emph { color: var(--eu-yellow); }

/* ============================================================
   V2.5i — DOTS BELOW PHONE + LIGHT MAP REFINEMENTS
   ============================================================ */

/* Sticky parent stacks: phone, then dots */
.long-way-sticky {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px;
}

/* Progress dots — now below phone, not inside */
.phone-progress {
  position: static !important;
  transform: none !important;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px;
  z-index: auto !important;
  bottom: auto !important;
  left: auto !important;
}
.phone-progress-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: 1px solid rgba(255,255,255,0.05);
}
.phone-progress-dot:hover {
  transform: scale(1.4);
  background: rgba(255, 209, 0, 0.6);
}
.phone-progress-dot.active {
  background: var(--eu-yellow);
  transform: scale(1.4);
  box-shadow: 0 0 14px rgba(255, 209, 0, 0.6);
}
.phone-progress-dot.passed {
  background: rgba(255, 209, 0, 0.45);
}

/* Inside-phone progress (legacy) — disable any leftover styling that put dots over the UI */
.phone-screen .phone-progress { display: none; }

/* Phone screen — slightly lighter inner background to complement the lighter map */
.phone-screen {
  background: linear-gradient(180deg, #001a3a 0%, #000d1c 100%) !important;
}

/* Map container subtle tweaks for the new light bg */
.ph-map-wrap {
  background: #eef2f7;
}

/* ============================================================
   V2.5j — UNIFIED ACROSS EUROPE SECTION
   Map + Juxta + Awards in one coherent section
   ============================================================ */

.map-divider {
  height: 1px;
  background: var(--grey-line);
  margin: 80px auto;
  max-width: 200px;
  opacity: 0.6;
}

.map-gaps-intro {
  text-align: center;
  margin-bottom: 48px;
  margin-top: 24px;
}
.map-sub-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eu-blue);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.map-sub-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--eu-yellow);
}
.map-sub-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--eu-yellow);
}
.map-sub-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink);
}
.map-sub-title em {
  font-style: italic;
  color: var(--eu-blue);
  background-image: linear-gradient(transparent 62%, rgba(255, 209, 0, 0.45) 62%);
  background-repeat: no-repeat;
  padding: 0 4px;
}

/* Juxta pairs inside the map section — keep the existing card design but tighten */
.map-section .juxta-pairs {
  padding: 0 !important;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map-section .juxta-pair {
  margin-bottom: 0 !important;
}

/* Juxta context (awards) inside the map section — direct grid, no extra wrapper padding */
.map-section .juxta-context {
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}

/* Hide the now-orphaned juxta header slots since we use map-gaps-intro instead */
.map-section [data-slot="juxta-lede"] { display: none; }

/* Hide the redundant lede line from the original juxta intro */
.map-gaps-intro .lede { display: none; }

@media (max-width: 1024px) {
  .map-section .juxta-context { grid-template-columns: 1fr; }
  .map-divider { margin: 56px auto; }
}

/* ============================================================
   V2.5k — POSITION TEASER (manifesto on its own page)
   ============================================================ */
.position-teaser {
  max-width: 820px;
  margin: 0 auto;
  padding: 110px var(--gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}
.position-teaser .eyebrow {
  margin: 0 auto 18px;
  display: inline-flex;
}
.position-teaser .section-title {
  margin: 0 auto 28px;
  text-align: center;
  max-width: none;
}
.position-teaser-lede {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 44px;
}
.position-teaser-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .position-teaser { padding: 80px 24px; }
  .position-teaser-cta { flex-direction: column; }
  .position-teaser-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   V2.5l — VOICES / COALITION TEASER / TIGHTENED NEWS
   ============================================================ */

/* ---- Voices section ---- */
.voices {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.voices-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.voices-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.voices-header .eyebrow {
  margin: 0 auto 18px;
  display: inline-flex;
}
.voices-header .section-title {
  margin: 0 auto 24px;
  text-align: center;
}
.voices-header .lede {
  margin: 0 auto;
  text-align: center;
  color: var(--grey);
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voice-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,47,108,0.12);
}
.voice-card.voice-driver { border-top: 4px solid var(--eu-yellow); }
.voice-card.voice-rider { border-top: 4px solid var(--eu-blue-light); }
.voice-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 209, 0, 0.95);
  color: var(--eu-blue);
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 3;
}
.voice-rider .voice-tag {
  background: var(--eu-blue-light);
  color: var(--white);
}
.voice-tag.voice-tag-composite {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  background: rgba(0, 47, 108, 0.18);
  color: var(--eu-blue);
  font-size: 9px;
  letter-spacing: 1px;
}
.voice-portrait {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--eu-blue-soft) 0%, var(--eu-blue-deep) 100%);
  position: relative;
  overflow: hidden;
}
.voice-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-portrait-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-size: 64px;
  background: linear-gradient(135deg, #f4f5f8 0%, #e8eaef 100%);
  color: var(--eu-blue);
  opacity: 0.4;
}
.voice-meta {
  padding: 28px;
  color: var(--ink);
}
.voice-name {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--ink);
}
.voice-where {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--eu-blue);
  margin-bottom: 18px;
}
.voice-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 14px;
}
.voice-story {
  font-size: 14px;
  line-height: 1.55;
  color: var(--grey);
}

/* Aggregate stats below voices */
.voices-aggregate {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--grey-line);
}
.voices-aggregate h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 36px;
  max-width: 16ch;
  color: var(--ink);
}
.voices-aggregate .aggregate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.voices-aggregate .aggregate-stat strong {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--eu-blue);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.voices-aggregate .aggregate-stat span {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  display: block;
}

/* ---- Coalition teaser ---- */
.coalition-teaser {
  max-width: 900px;
  margin: 0 auto;
  padding: 110px var(--gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}
.coalition-teaser .eyebrow {
  margin: 0 auto 18px;
  display: inline-flex;
}
.coalition-teaser .section-title {
  margin: 0 auto 28px;
  text-align: center;
  max-width: none;
}
.coalition-teaser-lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 56px;
}
.coalition-stat-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.cstat strong {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  color: var(--eu-yellow);
  display: block;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.cstat span {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.coalition-teaser-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- News view-all link ---- */
.news-view-all {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .voices-grid { grid-template-columns: 1fr; }
  .voices-aggregate .aggregate-grid { grid-template-columns: 1fr; gap: 32px; }
  .coalition-stat-row { gap: 32px; }
  .coalition-teaser { padding: 80px 24px; }
  .coalition-teaser-cta { flex-direction: column; }
  .coalition-teaser-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   V2.5m — Hero overlay tuned for "Europe is waiting" queue image
   ============================================================ */
.hero::before {
  background: linear-gradient(120deg,
    rgba(0, 20, 40, 0.85) 0%,
    rgba(0, 20, 40, 0.45) 35%,
    rgba(0, 20, 40, 0.15) 65%,
    rgba(0, 20, 40, 0.65) 100%) !important;
}
/* Hero image positioning — show the queue prominently */
.hero-img { object-position: center 40%; }
/* Strengthen text legibility against the busy lower-right of the photo */
.hero h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero-sub {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   V2.6 — MOBILE AND PRODUCTION POLISH
   ============================================================ */
@media (max-width: 1024px) {
  .long-way-stage {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .long-way-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    padding: 24px 0 10px;
  }
  .long-way-panels {
    padding-top: 0 !important;
  }
  .lw-panel {
    min-height: auto !important;
    padding: 44px 0 !important;
    opacity: 1;
    transform: none;
  }
  .lw-panel.is-passed {
    opacity: 0.55;
  }
}

@media (max-width: 600px) {
  .phone-frame {
    width: min(320px, calc(100vw - 48px));
    height: 620px;
    transform: none !important;
  }
  .phone-progress {
    max-width: min(320px, calc(100vw - 48px));
  }
  .map-filters {
    width: 100%;
  }
  .map-filter {
    flex: 1;
    padding-left: 12px;
    padding-right: 12px;
  }
  .map-legend {
    gap: 12px;
  }
  .map-stage {
    gap: 24px;
  }
  .news-meta {
    flex-direction: column;
    gap: 4px;
  }
}

/* ============================================================
   V2.6 — OVERALL POLISH PASS
   Hero motion, card micro-interactions, phone hardware feel,
   map detail transitions, a11y focus states, reduced motion.
   ============================================================ */

/* ---- Headline balance: no orphan words in big titles ---- */
.section-title,
.hero h1,
.manifesto-hero h1,
.lede {
  text-wrap: balance;
}

/* ---- Hero: slow cinematic drift + stronger base vignette ---- */
@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.09) translateY(-10px); }
}
.hero-img {
  animation: heroDrift 26s ease-out forwards;
  will-change: transform;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(0,20,40,0) 0%, rgba(0,20,40,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-sub { text-shadow: 0 1px 14px rgba(0, 20, 40, 0.45); }

/* Scroll cue: gentle bob */
@keyframes cueBob {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(6px); }
}
.hero-side-note { animation: cueBob 2.6s ease-in-out infinite; }

/* ---- Buttons: press state + consistent motion ---- */
.btn { transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s, border-color 0.22s, color 0.22s, background 0.22s; }
.btn:active { transform: translateY(0) scale(0.985); }
.btn-ghost:hover { transform: translateY(-2px); }

/* ---- Accessibility: visible focus everywhere ---- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.map-tile:focus-visible,
.lw-pill:focus-visible,
.phone-progress-dot:focus-visible {
  outline: 3px solid var(--eu-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Anchored sections shouldn't hide under the fixed nav */
section[id], [id="news"], [id="events"] { scroll-margin-top: 92px; }

/* ---- Modern cases: lift + accent shift on hover ---- */
.modern-case {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}
.modern-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 47, 108, 0.12);
  border-top-color: var(--eu-yellow);
}

/* ---- Manifesto demand / pillar cards: gentle hover ---- */
.demand {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
}
.demand:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 36px rgba(0, 47, 108, 0.10);
}

/* ---- Map: smoother tile motion + detail panel entrance ---- */
.map-tile { transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s, opacity 0.22s, background 0.22s; }
.map-tile:hover { transform: scale(1.12); }
.map-tile.active { outline-color: var(--eu-blue); }

@keyframes detailIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.map-detail-content .map-detail-flag,
.map-detail-content .map-detail-name,
.map-detail-content .map-detail-status,
.map-detail-content .map-detail-rule,
.map-detail-content .map-detail-affects {
  animation: detailIn 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.map-detail-content .map-detail-name { animation-delay: 0.04s; }
.map-detail-content .map-detail-status { animation-delay: 0.08s; }
.map-detail-content .map-detail-rule { animation-delay: 0.12s; }
.map-detail-content .map-detail-affects { animation-delay: 0.16s; }
.map-detail { box-shadow: 0 12px 44px rgba(0, 47, 108, 0.07); }

/* ---- Phone: hardware buttons, glass sheen, ambient glow ---- */
.phone-frame::before,
.phone-frame::after {
  content: '';
  position: absolute;
  right: -3px;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: #2a2e42;
}
.phone-frame::before { top: 130px; height: 64px; }   /* power */
.phone-frame::after  { top: 210px; height: 40px; }   /* volume */
.phone-frame {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 8px 28px rgba(0, 20, 40, 0.45),
    0 0 90px rgba(255, 209, 0, 0.07),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 18%,
    transparent 32%);
  pointer-events: none;
  z-index: 5;
  border-radius: inherit;
}

/* ---- Numbers everywhere: lining, tabular ---- */
.counter-num,
.lw-panel-stat-num,
.case-stat,
.juxta-metric,
.person-stat {
  font-variant-numeric: lining-nums tabular-nums;
}

/* ---- News rows + event rows + members: consistent hover ---- */
.news-row,
.event-row,
.member,
.manifesto-pub,
.pub {
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s, border-color 0.22s, background 0.22s;
}
.news-row:hover,
.event-row:hover { transform: translateX(6px); }
.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 47, 108, 0.10);
}

/* ---- Footer links: yellow underline on hover ---- */
.footer-col a {
  transition: color 0.18s;
  position: relative;
}
.footer-col a:hover { color: var(--eu-yellow); }

/* ---- Reveal: slightly snappier, with grid stagger ---- */
.modern-grid .modern-case:nth-child(2) { transition-delay: 0s; }
.reveal.visible { animation-duration: 0.7s; }

/* ---- Reduced motion: respect the preference ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-img,
  .hero-side-note,
  .map-detail-content .map-detail-flag,
  .map-detail-content .map-detail-name,
  .map-detail-content .map-detail-status,
  .map-detail-content .map-detail-rule,
  .map-detail-content .map-detail-affects {
    animation: none !important;
  }
  .hero-img { transform: scale(1.02); }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Skip link (keyboard users) ---- */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--eu-yellow);
  color: var(--eu-blue-deep);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---- Balanced headlines ---- */
.section-title { text-wrap: balance; }

/* ---- Phone map: living route + markers ---- */
@media (prefers-reduced-motion: no-preference) {
  .ph-map .route-base {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: phRouteDraw 1.1s ease-out 0.2s forwards;
  }
  .ph-map .route-flow { animation: phRouteFlow 1.4s linear infinite; }
  .ph-map .pickup-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: phPulse 2.2s ease-out infinite;
  }
  .ph-map .mid-marker {
    transform-box: fill-box;
    transform-origin: center;
    animation: phPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s backwards;
  }
}
@keyframes phRouteDraw { to { stroke-dashoffset: 0; } }
@keyframes phRouteFlow { to { stroke-dashoffset: -13; } }
@keyframes phPulse {
  0% { transform: scale(0.55); opacity: 0.6; }
  70%, 100% { transform: scale(1.3); opacity: 0; }
}
@keyframes phPop { from { transform: scale(0); } }

/* ---- Merged ask/CTA: three-button row ---- */
.cta-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- "Many countries already did it" scrolling ticker ---- */
.modern-ticker {
  overflow: hidden;
  margin: 0 0 48px;
  padding: 14px 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.modern-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
}
.modern-ticker-item {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--eu-blue);
}
.modern-ticker-sep {
  color: var(--eu-yellow);
  font-size: 13px;
}
@media (prefers-reduced-motion: no-preference) {
  .modern-ticker-track { animation: modernTicker 28s linear infinite; }
}
@keyframes modernTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Riders/Drivers pictogram strips ---- */
.two-story-viz {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 24px;
}
.viz-item { width: 36px; height: 36px; }
.viz-person.dim { fill: rgba(0, 47, 108, 0.14); }
.viz-person.lit { fill: var(--eu-yellow); stroke: var(--eu-blue); stroke-width: 1.5; }
.viz-coin.solid circle { fill: var(--eu-yellow); stroke: var(--eu-blue); stroke-width: 2; }
.viz-coin.solid text { font: 800 17px var(--sans); fill: var(--eu-blue); }
.viz-coin.ghost circle { fill: none; stroke: rgba(0, 47, 108, 0.28); stroke-width: 2; stroke-dasharray: 4 4; }
.viz-coin.ghost text { font: 800 17px var(--sans); fill: rgba(0, 47, 108, 0.28); }
@media (prefers-reduced-motion: no-preference) {
  .two-story-viz .viz-item { opacity: 0; transform: translateY(8px) scale(0.55); }
  .two-story-viz.visible .viz-item { animation: vizPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .two-story-viz.visible .viz-item:nth-child(1) { animation-delay: 0.05s; }
  .two-story-viz.visible .viz-item:nth-child(2) { animation-delay: 0.15s; }
  .two-story-viz.visible .viz-item:nth-child(3) { animation-delay: 0.25s; }
  .two-story-viz.visible .viz-item:nth-child(4) { animation-delay: 0.35s; }
  .two-story-viz.visible .viz-item:nth-child(5) { animation-delay: 0.45s; }
  .two-story-viz.visible .viz-item:nth-child(6) { animation-delay: 0.55s; }
}
@keyframes vizPop { to { opacity: 1; transform: none; } }

/* ---- Modern cases: proper cards ---- */
.modern-case {
  border-radius: 14px;
  border: 1px solid var(--grey-line);
  border-top: 4px solid var(--eu-blue-light);
  box-shadow: 0 8px 30px rgba(0, 47, 108, 0.07);
}
.modern-case .flag {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  background: var(--off-white);
  border: 1px solid var(--grey-line);
  border-radius: 50%;
  margin-bottom: 20px;
}
.modern-case .case-stat { color: var(--eu-blue); }
.modern-case .case-verdict { margin-top: auto; }

/* ---- Phone launch/home screen ---- */
.ph-home {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px 16px 14px;
  gap: 10px;
  text-align: left;
}
.ph-home-greet {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ph-home-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.ph-home-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #5a6b80;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 14px;
}
.ph-home-search-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--eu-yellow);
  box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.25);
}
.ph-home .ph-map-wrap { flex: 1; min-height: 120px; }
.ph-home-rows { display: flex; flex-direction: column; gap: 6px; }
.ph-home-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  padding: 9px 12px;
}
.ph-home-hint {
  text-align: center;
  color: var(--eu-yellow);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-top: 2px;
}
@media (prefers-reduced-motion: no-preference) {
  .ph-home-hint .arr { display: inline-block; animation: hintBob 1.5s ease-in-out infinite; }
}
@keyframes hintBob { 50% { transform: translateY(3px); } }

/* ---- Progress dots -> flag buttons ---- */
.phone-progress { gap: 8px; }
.phone-progress-dot {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid transparent;
  filter: grayscale(1) brightness(1.4);
  opacity: 0.55;
}
.phone-progress-dot.active {
  filter: none;
  opacity: 1;
  border-color: var(--eu-yellow);
  background: rgba(255, 209, 0, 0.12);
  transform: scale(1.15);
}
.phone-progress-dot.passed {
  filter: none;
  opacity: 0.8;
  background: rgba(255, 209, 0, 0.18);
}
.phone-progress-dot:hover { filter: none; opacity: 1; transform: scale(1.25) !important; }

/* ---- Source notes under big claims ---- */
.two-story-source {
  margin-top: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0.65;
}
.lw-closing-source {
  margin: -14px 0 26px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Phone: result card as a bottom sheet ---- */
.ph-card {
  position: relative;
  z-index: 2;
  margin-top: -16px;
  border-radius: 16px 16px 12px 12px;
  box-shadow: 0 -10px 26px rgba(0, 10, 25, 0.45);
}
.ph-card::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  margin: -2px auto 10px;
}

/* ---- Phone: driver row on confirmed rides ---- */
.ph-driver {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
}
.ph-driver-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--eu-yellow);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}
.ph-driver-avatar svg { width: 22px; height: 22px; fill: var(--eu-blue); }
.ph-driver-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; text-align: left; }
.ph-driver-meta strong { font-size: 11.5px; font-weight: 700; color: #fff; }
.ph-driver-meta span { font-size: 10.5px; color: rgba(255,255,255,0.55); }
.ph-driver-eta {
  background: var(--eu-yellow);
  color: var(--eu-blue-deep);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}
