*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B2D5B;
  --sienna: #D4935A;
  --pumpkin: #F28030;
  --cerulean: #33C6F5;
  --cream: #F0E0B0;
  --offwhite: #F7F6F2;
  --slate: #2C3A4A;
  --sand: #E8E6DF;
}
html { scroll-behavior: smooth; }
body { font-family: 'Ubuntu', system-ui; background: #fff; color: var(--slate); margin: 0; }
body.admin-bar { --tc-admin-bar-offset: 32px; }

@media screen and (max-width: 782px) {
  /* At <=782px WP's admin bar becomes position:absolute (it scrolls away), so a
     fixed nav must NOT reserve space for it — otherwise page content shows through
     the gap once scrolled. Pin the nav to the very top. */
  body.admin-bar { --tc-admin-bar-offset: 0px; }
}

/* NAV — transparent until sticky triggers */
nav {
  position: fixed; top: var(--tc-admin-bar-offset, 0); left: 0; right: 0; z-index: 100;
  padding: 0 48px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
/* Frosted-glass scrim behind the row so the nav stays legible over the hero
   video. A LIGHT sky/white tint (not a dark one — we're a clean-energy sector,
   no "smog" look) plus blur lifts contrast under the navy nav text; it fades out
   once the nav goes sticky (which already has its own solid white background). */
nav::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.72), rgba(204,236,252,0.52));
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  transition: opacity 0.4s;
}
nav.sticky::before,
nav.nav-open::before { opacity: 0; }
nav.sticky {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(27,45,91,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-brand {
  width: 122px; height: 64px; overflow: hidden;
  display: flex; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-brand img {
  width: 92px; height: 92px;
  display: block; object-fit: contain;
  margin-left: -2px;
  transform: translateY(-1px);
}
nav.sticky .nav-brand {
  opacity: 1; pointer-events: auto;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
/* Navy text throughout: the light frosted scrim (and the sticky white bg) both
   call for dark text — readable over the hero and on-brand. */
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--navy);
  text-decoration: none; transition: color 0.3s;
  letter-spacing: 0.01em;
}
nav.sticky .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--pumpkin); }
nav.sticky .nav-links a:hover { color: var(--pumpkin); }
.nav-cta {
  background: var(--pumpkin); color: #fff !important;
  padding: 8px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600 !important;
}
nav.sticky .nav-cta { background: var(--pumpkin); color: #fff !important; }
/* Donate sits to the left of "Stay in Touch": a cerulean pill so the two CTAs read as a
   pair (cerulean + pumpkin) rather than two identical buttons. Navy text because white
   fails contrast on the bright cerulean. Compound selector (.nav-cta.nav-cta--donate) so
   this beats the generic mobile `.nav-cta { color:#fff }` rule further down. Links
   straight to every.org; the button.js loader upgrades the click into a donation modal. */
.nav-cta.nav-cta--donate,
nav.sticky .nav-cta.nav-cta--donate { background: var(--cerulean); color: var(--navy) !important; }
.nav-cta.nav-cta--donate:hover,
nav.sticky .nav-cta.nav-cta--donate:hover { background: var(--cerulean); color: var(--navy) !important; opacity: 0.9; }

/* HAMBURGER (mobile only — hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; padding: 0;
  background: none; border: 0; cursor: pointer;
  z-index: 2;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.2s, background 0.3s;
}
nav.sticky .nav-toggle span,
nav.nav-open .nav-toggle span { background: var(--navy); }
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-logo {
  position: relative; z-index: 2;
  margin-left: 156px;
  width: min(600px, 58vw);
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.4));
}
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-hint span {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* STICKY QUOTE BAR */
.sticky-bar {
  position: sticky; top: calc(64px + var(--tc-admin-bar-offset, 0px)); z-index: 90;
  background: var(--cream);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.sticky-bar.visible { max-height: 80px; }
.sticky-bar-inner {
  padding: 18px 48px;
  font-size: 15px; font-weight: 400;
  color: var(--cerulean); line-height: 1.5;
  text-align: center; font-style: italic;
}
.sticky-bar-inner strong { font-weight: 700; font-style: normal; color: var(--pumpkin); }

/* STATEMENT */
.statement { background: var(--cream); padding: 80px 48px; text-align: center; }
.statement-inner { max-width: 900px; margin: 0 auto; }
.statement-text {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1;
  color: var(--navy);
}
.statement-text span { color: var(--pumpkin); }
.statement-cta {
  display: inline-block; margin-top: 30px;
  background: var(--pumpkin); color: #fff;
  padding: 15px 38px; border-radius: 999px;
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none; transition: background 0.15s ease, transform 0.15s ease;
}
.statement-cta:hover { background: var(--navy); transform: translateY(-1px); }
.statement-cta:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(51,198,245,0.5); }

/* SIMULATOR */
.sim-section {
  position: relative;
  padding: 96px 48px;
  background: transparent;
}
.sim-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F28030' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-color: var(--offwhite);
  z-index: 0;
}
.sim-section > * { position: relative; z-index: 1; }
.sim-section-inner { max-width: 800px; margin: 0 auto; }
.section-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pumpkin); margin-bottom: 16px;
}
.section-title {
  font-size: 32px; font-weight: 900; text-transform: uppercase;
  color: var(--navy); letter-spacing: -0.01em; margin-bottom: 12px;
}
.section-sub {
  font-size: 15px; font-weight: 300; color: var(--slate); line-height: 1.75;
  margin-bottom: 2rem;
}
.sim-step-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #888; margin-bottom: 10px; padding: 0 4px;
}
.sim-scroll-track {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 4px 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; margin-bottom: 1.25rem;
}
.sim-scroll-track::-webkit-scrollbar { display: none; }
.sim-card {
  flex-shrink: 0; scroll-snap-align: start; border-radius: 12px;
  padding: 14px 18px; cursor: pointer; border: 1.5px solid #E8E6DF;
  background: #fff; transition: all 0.15s; min-width: 140px;
  text-align: left; font-family: 'Ubuntu', system-ui;
}
.sim-card:hover { border-color: var(--pumpkin); }
.sim-card.at { background: var(--pumpkin); border-color: var(--pumpkin); }
.sim-card.aa { background: var(--navy); border-color: var(--navy); }
.sim-card-icon { font-size: 22px; margin-bottom: 6px; display: block; }
.sim-card-label { font-size: 13px; font-weight: 500; color: #2C3A4A; line-height: 1.3; }
.sim-card.at .sim-card-label, .sim-card.aa .sim-card-label { color: #fff; }
.sim-card-sub { font-size: 11px; font-weight: 300; color: #888; margin-top: 3px; line-height: 1.4; }
.sim-card.at .sim-card-sub, .sim-card.aa .sim-card-sub { color: rgba(255,255,255,0.7); }
.sim-gen-btn {
  width: 100%; padding: 14px; background: var(--pumpkin); color: #fff;
  border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  font-family: 'Ubuntu', system-ui; cursor: pointer; text-transform: uppercase;
  letter-spacing: 0.06em; transition: opacity 0.15s;
}
.sim-gen-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.sim-gen-btn:not(:disabled):hover { opacity: 0.9; }
.sim-result-wrap { margin-top: 1.5rem; }
.sim-result-track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 4px 12px;
}
.sim-result-track::-webkit-scrollbar { display: none; }
.sim-result-card {
  flex-shrink: 0; scroll-snap-align: start; width: 280px;
  border-radius: 14px; overflow: hidden; border: 0.5px solid #E8E6DF;
}
.src-opener { background: var(--navy); padding: 20px; }
.src-opener-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cerulean); margin-bottom: 10px; }
.src-opener-text { font-size: 14px; font-weight: 400; color: #fff; line-height: 1.6; font-style: italic; }
.src-tip { background: var(--cream); padding: 16px 18px; border-top: 0.5px solid rgba(27,45,91,0.1); }
.src-tip-num { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pumpkin); margin-bottom: 6px; }
.src-tip-text { font-size: 13px; font-weight: 400; color: var(--navy); line-height: 1.5; }
.src-fact { background: var(--cerulean); padding: 16px 18px; }
.src-fact-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; opacity: 0.7; }
.src-fact-text { font-size: 13px; font-weight: 400; color: var(--navy); line-height: 1.5; }
.sim-dots { display: flex; justify-content: center; gap: 6px; margin-top: 8px; }
.sim-dot { width: 6px; height: 6px; border-radius: 50%; background: #E8E6DF; transition: background 0.2s, transform 0.2s; }
.sim-dot.active { background: var(--pumpkin); transform: scale(1.3); }
.sim-ctx-bar { background: #F7F6F2; border-radius: 10px; padding: 10px 14px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.sim-ctx-text { font-size: 12px; font-weight: 500; color: var(--navy); text-transform: capitalize; }
.sim-reset-btn { font-size: 11px; font-weight: 500; color: var(--pumpkin); background: none; border: none; cursor: pointer; font-family: 'Ubuntu', system-ui; text-transform: uppercase; letter-spacing: 0.06em; }
.sim-loading { display: none; text-align: center; padding: 20px; font-size: 13px; color: #888; }

/* STAT STRIP */
.stat-strip {
  position: relative;
  padding: 64px 48px;
  background-attachment: fixed;
  background-color: var(--cerulean);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231B2D5B' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.stat-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-block { text-align: center; }
.stat-number { font-size: clamp(36px, 4vw, 52px); font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; font-weight: 400; color: var(--navy); opacity: 0.8; line-height: 1.5; }

/* MISSION */
/* Cream/gold band (matches the "WE NEED TO TAKE ACTION NOW" statement) so the
   mission reads distinct from the off-white interactive-tool section above it. */
.mission { background: var(--offwhite); padding: 96px 48px; }
.mission-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 80px; align-items: center; }
.mission-headline { font-size: 36px; font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 24px; text-transform: uppercase; letter-spacing: -0.01em; }
.mission-body { font-size: 15px; font-weight: 300; color: var(--slate); line-height: 1.75; }
.mission-right { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* Title-only cards: no description, so vertically centre the (slightly larger) title. */
.pillar { background: var(--cream); border-radius: 12px; padding: 20px; border: 0.5px solid var(--sand); display: flex; align-items: center; min-height: 84px; }
.pillar-title { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.3; }

/* CLIMATE CONVERSATION CAROUSEL */
.conversation-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 88px 0 72px;
}
.conversation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2333C6F5' stroke-opacity='0.11' stroke-width='1'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}
.conversation-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.conversation-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: end;
  padding: 0 48px 38px;
}
.conversation-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-bottom: 14px;
}
.conversation-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}
.conversation-sub {
  max-width: 560px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}
.conversation-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 12px;
}
.conversation-marquee::before,
.conversation-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 2;
  pointer-events: none;
}
.conversation-marquee::before { left: 0; background: linear-gradient(to right, var(--navy), rgba(27,45,91,0)); }
.conversation-marquee::after { right: 0; background: linear-gradient(to left, var(--navy), rgba(27,45,91,0)); }
.conversation-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 48px;
  will-change: transform;
}
.conversation-track.is-duplicated { animation: conversation-marquee 210s linear infinite; }
.conversation-marquee:hover .conversation-track,
.conversation-marquee:focus-within .conversation-track { animation-play-state: paused; }
@keyframes conversation-marquee {
  to { transform: translateX(var(--marquee-shift, -50%)); }
}
.conversation-card {
  flex: 0 0 332px;
  min-height: 254px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}
.conversation-card--white { background: #fff; color: var(--navy); }
.conversation-card--cream { background: var(--cream); color: var(--navy); }
.conversation-card--blue { background: var(--cerulean); color: var(--navy); }
.conversation-card--orange { background: var(--pumpkin); color: #fff; }
.conversation-card--navy { background: #243A6D; color: #fff; border-color: rgba(255,255,255,0.22); }
.conversation-card-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.72;
}
.conversation-card-value {
  font-size: 58px;
  font-weight: 900;
  line-height: 0.95;
  color: var(--pumpkin);
  letter-spacing: 0;
}
.conversation-card--navy .conversation-card-value { color: var(--cerulean); }
.conversation-card--orange .conversation-card-value { color: var(--cream); }
.conversation-card--blue .conversation-card-value { color: #fff; }
.conversation-card-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}
.conversation-card-source {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.62;
}
.conversation-quote {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}
.conversation-card--quote { justify-content: flex-start; }
.conversation-sources {
  padding: 20px 48px 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
}
.conversation-sources a {
  color: var(--cerulean);
  text-decoration: none;
  border-bottom: 1px solid rgba(51,198,245,0.35);
}
.conversation-sources a:hover { color: #fff; border-bottom-color: #fff; }

/* LINKEDIN FEED (Elfsight widget in a cream band) */
.linkedin-feed { background: var(--cream); padding: 80px 48px; text-align: center; }
.linkedin-feed-inner { max-width: 1200px; margin: 0 auto; }
.linkedin-feed-title { font-size: 28px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: -0.01em; margin: 8px 0 32px; }

/* LINKEDIN TICKER */
.linkedin-section { background: var(--cream); padding: 80px 48px; text-align: center; }
.linkedin-inner { max-width: 700px; margin: 0 auto; }
.linkedin-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; opacity: 0.6; }
.linkedin-title { font-size: 28px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 32px; }
.ticker-placeholder {
  background: #fff; border-radius: 12px; padding: 32px;
  border: 1.5px dashed var(--sand); color: var(--slate);
  font-size: 14px; font-weight: 300; line-height: 1.65;
}
.ticker-icon { font-size: 28px; margin-bottom: 12px; }
.ticker-label { font-size: 12px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

/* FOOTER — styles moved to assets/css/footer.css (shared across all pages). */

@media (max-width: 900px) {
  .conversation-section { padding: 72px 0 58px; }
  .conversation-header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 28px 30px;
  }
  .conversation-title { font-size: 36px; }
  .conversation-sub { font-size: 19px; }
  .conversation-track { padding: 0 28px; }
  .conversation-card { flex-basis: 304px; min-height: 266px; }
  .conversation-marquee::before,
  .conversation-marquee::after { width: 38px; }
  .conversation-sources { padding: 18px 28px 0; }
}

@media (max-width: 560px) {
  .conversation-section { padding: 62px 0 50px; }
  .conversation-header { padding: 0 22px 26px; }
  .conversation-title { font-size: 30px; }
  .conversation-track { gap: 12px; padding: 0 22px; }
  .conversation-card {
    flex-basis: calc(100vw - 58px);
    min-height: 278px;
    padding: 20px;
  }
  .conversation-card-value { font-size: 48px; }
  .conversation-quote { font-size: 22px; }
  .conversation-sources { padding: 16px 22px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .conversation-track.is-duplicated { animation: none; }
  .conversation-marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .conversation-card { scroll-snap-align: start; }
}

/* ------------------------------------------------------------------ *
 * MOBILE (the WebFlow port is desktop-first; this keeps every section
 * inside the viewport — no horizontal overflow — on phones/tablets).
 * ------------------------------------------------------------------ */
@media (max-width: 768px) {
  /* Never let any section push past the right edge. Clamp the ROOT (not just body): a stray
     element wider than the screen otherwise widens the layout viewport, which on mobile drags
     the position:fixed nav (and its Join Us CTA) out past the edge. `clip` avoids creating a
     scroll container, so it doesn't break any position:sticky descendants. */
  html, body { overflow-x: clip; max-width: 100%; }

  /* NAV — links collapse into a hamburger panel. */
  nav { padding: 0 20px; }
  nav.nav-open { background: #fff; border-bottom-color: rgba(27,45,91,0.1); }
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 8px 20px 18px;
    border-bottom: 0.5px solid rgba(27,45,91,0.1);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    display: none;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links a {
    color: var(--navy); font-size: 16px; font-weight: 500;
    padding: 15px 4px; border-bottom: 0.5px solid rgba(27,45,91,0.08);
  }
  nav.sticky .nav-links a { color: var(--navy); }
  .nav-links a:hover, nav.sticky .nav-links a:hover { color: var(--pumpkin); }
  .nav-cta, nav.sticky .nav-cta {
    margin-top: 14px; text-align: center;
    color: #fff !important; padding: 13px; font-size: 15px;
    border-bottom: 0 !important;
  }

  /* HERO — the logo had a 156px left inset meant for desktop. */
  .hero-logo { margin-left: 20px; width: min(420px, 72vw); }

  /* Uniform, comfortable side padding for the stacked sections. */
  .sticky-bar-inner { padding: 14px 20px; font-size: 14px; }
  .statement { padding: 56px 22px; }
  .sim-section { padding: 64px 20px; }
  .stat-strip { padding: 48px 22px; }
  .mission { padding: 64px 22px; }
  .linkedin-section { padding: 56px 22px; }
  footer { padding: 48px 22px; }

  /* background-attachment: fixed is janky/blurry on mobile — pin to scroll. */
  .sim-section::before,
  .stat-strip { background-attachment: scroll; }

  /* STAT STRIP — 4 fixed columns don't fit; 2×2 grid. */
  .stat-strip-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }

  /* MISSION — stack the headline over the pillar grid. */
  .mission-inner { flex-direction: column; gap: 36px; align-items: stretch; }
  .mission-headline { font-size: 30px; }

}

@media (max-width: 460px) {
  /* Stack the mission pillars on the narrowest phones (iPhone SE etc.). */
  .mission-right { grid-template-columns: 1fr; }
}
