/* =========================================================================
   Interport Global — Direction A2, "Gateway Cinematic"
   Implementation of `A2 - Gateway Cinematic.dc.html` (Claude Design)
   ========================================================================= */

:root {
  --ink:          #04181E;
  --ink-raised:   #051E25;
  --text:         #EAF6F8;
  --pale:         #C3E7EF;
  --accent:       #7CC4D2;
  --accent-deep:  #3594A6;
  --white:        #FFFFFF;

  --line:         rgba(195, 231, 239, 0.12);
  --line-strong:  rgba(195, 231, 239, 0.14);
  --line-soft:    rgba(195, 231, 239, 0.10);

  --gutter:       56px;
  --measure:      1320px;
  --nav-h:        84px;

  --ease:         cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: var(--pale); text-decoration: none; }
a:hover { color: var(--white); }

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

::selection { background: var(--accent-deep); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--pale);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--pale);
  color: var(--ink);
  font-size: 12px; font-weight: 800; letter-spacing: .2em;
  border-radius: 2px;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; color: var(--ink); }

/* ---------- shared type ------------------------------------------------ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
  color: var(--accent);
}
.eyebrow--centred { justify-content: center; margin-bottom: 30px; letter-spacing: .34em; }
.eyebrow--pulse { margin-bottom: 34px; letter-spacing: .34em; }

.rule {
  width: 36px;
  height: 1px;
  background: var(--accent-deep);
  flex: none;
}

.pulse {
  position: relative;
  width: 8px; height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--pale);
}
.pulse > span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--pale);
  animation: ipgPulse 2.4s ease-out infinite;
}

.h2 {
  margin: 0;
  font-weight: 200;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.12;
  color: var(--white);
  text-wrap: balance;
}
.h2 em, .hero__title em, .contact__title em, .interlude__quote em {
  font-style: normal;
  font-weight: 700;
  color: var(--pale);
}

.lede {
  margin: 0 0 28px;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.8;
  color: rgba(234, 246, 248, .8);
}
.body {
  margin: 0 0 72px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(234, 246, 248, .55);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .22em;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn span { font-weight: 400; font-size: 15px; }
.btn--solid { background: var(--pale); color: var(--ink); }
.btn--solid:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }
.btn--ghost {
  color: rgba(234, 246, 248, .75);
  border-color: rgba(195, 231, 239, .25);
  font-weight: 700;
}
.btn--ghost:hover { border-color: rgba(195, 231, 239, .7); color: var(--white); }

/* ---------- media slots ------------------------------------------------ */
/*
   Each .media shows its art-direction brief (`data-brief`, carried over from
   the design's <image-slot placeholder="…">) until a real photograph is
   dropped into assets/img/. main.js adds .has-image once the <img> actually
   decodes, so a missing or broken file always falls back to the brief.
*/
.media {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 148, 166, .16), rgba(4, 24, 30, .5)),
    var(--ink-raised);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Keep the box (opacity, not display) — display:none would stop native
   lazy-loading from ever fetching the image. */
.js .media img { opacity: 0; transition: opacity .6s var(--ease); }
.js .media.has-image img { opacity: 1; }
.media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.js .media.has-video video { display: block; }
.js .media.has-video img { display: none; }
.js .media.has-video::before { content: none; }
.js .media:not(.has-image):not(.has-video)::before {
  content: attr(data-brief);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.9;
  text-transform: uppercase;
  color: rgba(195, 231, 239, .45);
  border: 1px dashed rgba(195, 231, 239, .18);
}
.media figcaption {
  position: absolute;
  left: 16px;
  bottom: 22px;
  pointer-events: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(255, 255, 255, .6);
  text-shadow: 0 1px 8px rgba(4, 24, 30, .8);
}
.media--thumb { border-radius: 2px; }

/* ---------- nav -------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  background: linear-gradient(to bottom, rgba(4, 24, 30, .85), rgba(4, 24, 30, 0));
  backdrop-filter: blur(2px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
  color: var(--pale); /* official reversed brandmark colour on dark ground */
}
.logo:hover { color: var(--pale); }
.logo__ipg { height: 30px; width: auto; display: block; flex: none; }
.logo__word {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 1px solid rgba(195, 231, 239, .25);
}
.logo__mark { font-weight: 800; font-size: 13px; letter-spacing: .28em; color: var(--white); }
.logo__sub  { font-weight: 300; font-size: 9px;  letter-spacing: .6em;  color: var(--accent); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 40px; }

.nav__link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(234, 246, 248, .6);
  transition: color .25s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link--cta {
  color: var(--pale);
  border: 1px solid rgba(195, 231, 239, .35);
  padding: 11px 24px;
  border-radius: 2px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.nav__link--cta:hover { background: var(--pale); color: var(--ink); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  background: none;
  border: 1px solid rgba(195, 231, 239, .28);
  border-radius: 2px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav__toggle span {
  width: 16px; height: 1px;
  background: var(--pale);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- hero ------------------------------------------------------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__map {
  position: absolute;
  inset: -10% 0;
  opacity: .9;
  will-change: transform;
}
.hero__map iframe,
.routes iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 90% at 22% 78%, rgba(4,24,30,.96) 0%, rgba(4,24,30,.72) 45%, rgba(4,24,30,.12) 75%),
    linear-gradient(to top, #04181E 0%, rgba(4,24,30,0) 30%),
    linear-gradient(to bottom, rgba(4,24,30,.9) 0%, rgba(4,24,30,0) 22%);
}

.hero__body {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 110px;
  max-width: 1180px;
  pointer-events: none;
  will-change: transform;
}

.hero__title {
  margin: 0 0 30px;
  font-weight: 200;
  font-size: clamp(40px, 6.6vw, 104px);
  line-height: 1.02;
  letter-spacing: -.015em;
  color: var(--white);
  text-wrap: balance;
}

.hero__lede {
  margin: 0 0 44px;
  max-width: 560px;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(234, 246, 248, .68);
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  pointer-events: auto;
}

.hero__cue {
  position: absolute;
  right: var(--gutter);
  bottom: 110px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.hero__cue-line {
  display: block;
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: ipgCue 2.2s ease-in-out infinite;
}
.hero__cue-text {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  color: rgba(234, 246, 248, .4);
}

/* ---------- ticker ----------------------------------------------------- */

.ticker {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(195, 231, 239, .02);
  overflow: hidden;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ipgTicker 38s linear infinite;
}
.ticker__group {
  display: flex;
  gap: 64px;
  padding: 16px 32px;
  white-space: nowrap;
}
.ticker__group span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  color: rgba(195, 231, 239, .5);
}
.ticker__group i { color: rgba(195, 231, 239, .25); font-style: normal; }

/* ---------- platform --------------------------------------------------- */

.platform {
  padding: 160px var(--gutter);
  max-width: var(--measure);
  margin: 0 auto;
}
.platform__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(400px, 1.6fr);
  gap: 80px;
  align-items: start;
}
.platform__aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.media--tall { height: 340px; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat__value {
  margin: 0;
  font-weight: 200;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1;
  color: var(--pale);
  font-variant-numeric: tabular-nums;
}
.stat__unit { font-size: 26px; font-weight: 400; color: var(--accent); }
.stat__label {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.6;
  color: rgba(234, 246, 248, .5);
}

/* ---------- interlude -------------------------------------------------- */

.interlude {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}
.interlude__media {
  position: absolute;
  inset: -14% 0;
  will-change: transform;
}
.interlude__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, #04181E 0%, rgba(4,24,30,.25) 30%, rgba(4,24,30,.25) 70%, #04181E 100%);
}
.interlude__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.interlude__quote {
  margin: 0;
  max-width: 900px;
  text-align: center;
  font-weight: 200;
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 1.3;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(4, 24, 30, .7);
  text-wrap: balance;
}

/* ---------- verticals -------------------------------------------------- */

.verticals {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(to bottom, var(--ink-raised), var(--ink));
}
.verticals__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 140px var(--gutter) 120px;
}
.verticals__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.verticals__note {
  margin: 0;
  max-width: 360px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(234, 246, 248, .5);
}

.rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }

.row {
  display: grid;
  grid-template-columns: 200px 90px 1fr 1.3fr auto;
  gap: 36px;
  align-items: center;
  padding: 32px 12px;
  border-top: 1px solid var(--line-strong);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.row:last-child { border-bottom: 1px solid var(--line-strong); }
.row:hover { background: rgba(195, 231, 239, .04); padding: 32px 24px; }
.row:hover .row__arrow { transform: translateX(6px); color: var(--pale); }

.row .media { height: 130px; }
.row__num {
  font-weight: 200;
  font-size: 44px;
  color: rgba(195, 231, 239, .3);
}
.row__title {
  margin: 0;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .02em;
  color: var(--white);
}
.row__text {
  margin: 0;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(234, 246, 248, .55);
}
.row__arrow {
  font-size: 20px;
  color: var(--accent);
  transition: transform .3s var(--ease), color .3s var(--ease);
}

/* ---------- routes ----------------------------------------------------- */

.routes {
  position: relative;
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
.routes__stage {
  position: relative;
  height: 80vh;
  min-height: 560px;
}
.routes__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(4,24,30,.94) 0%, rgba(4,24,30,.4) 38%, rgba(4,24,30,0) 62%),
    linear-gradient(to top, rgba(4,24,30,.85), transparent 28%),
    linear-gradient(to bottom, rgba(4,24,30,.6), transparent 20%);
}
.routes__body {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  max-width: 440px;
}
.routes__body .h2 { margin-bottom: 26px; }
.routes__text {
  margin: 0;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(234, 246, 248, .6);
}

/* ---------- contact ---------------------------------------------------- */

.contact {
  position: relative;
  padding: 200px var(--gutter);
  text-align: center;
  overflow: hidden;
}
.contact__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 60%, rgba(53, 148, 166, .14) 0%, transparent 70%);
}
.contact__body { position: relative; }
.contact__title {
  margin: 0 auto 48px;
  max-width: 900px;
  font-weight: 200;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.1;
  color: var(--white);
  text-wrap: balance;
}
.contact .btn { padding: 20px 42px; }

/* ---------- footer ----------------------------------------------------- */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--gutter);
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(234, 246, 248, .35);
}
.footer__ipg { height: 16px; width: auto; color: rgba(195, 231, 239, .5); }
.footer__addr {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(234, 246, 248, .3);
}
.footer__legal {
  flex-basis: 100%;
  margin: 10px 0 0;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.7;
  color: rgba(234, 246, 248, .22);
}

/* ---------- team page --------------------------------------------------- */

.page-head {
  position: relative;
  padding: calc(var(--nav-h) + 110px) var(--gutter) 90px;
  max-width: var(--measure);
  margin: 0 auto;
  overflow: hidden;
}
.page-head__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 30% 20%, rgba(53, 148, 166, .12) 0%, transparent 70%);
  pointer-events: none;
}
.page-head__body { position: relative; max-width: 820px; }
.page-head__title { font-size: clamp(38px, 4.6vw, 72px); margin-bottom: 26px; }
.page-head__lede {
  margin: 0;
  max-width: 560px;
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(234, 246, 248, .6);
}

.team-section { border-top: 1px solid var(--line-soft); }
.team-section__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 90px var(--gutter) 40px;
}
.team-group { margin-bottom: 90px; }
.team-group__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
  color: var(--accent);
}
.team-group__note {
  margin: -22px 0 40px 50px;
  max-width: 560px;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(234, 246, 248, .5);
}

.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.team-grid--board { grid-template-columns: repeat(5, 1fr); }

.person__portrait {
  position: relative;
  margin: 0 0 18px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(53, 148, 166, .22), transparent 70%),
    var(--ink-raised);
  border: 1px solid var(--line);
}
.person__portrait::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 200;
  font-size: 44px;
  letter-spacing: .08em;
  color: rgba(195, 231, 239, .35);
}
.person__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* transparent cutouts composite onto the card gradient — contain from the
     bottom so heads never crop */
  object-fit: contain;
  object-position: bottom center;
  transition: transform .5s var(--ease);
}
.person:hover .person__portrait img { transform: scale(1.04); transform-origin: bottom center; }
.person__portrait.has-image::before { content: none; }
.person__name {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: .02em;
  color: var(--white);
}
.person__role {
  margin: 0;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.6;
  color: var(--accent);
}

.contact--compact { padding: 130px var(--gutter); }

@media (max-width: 1080px) {
  .team-grid, .team-grid--board { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .page-head { padding: calc(var(--nav-h) + 70px) var(--gutter) 60px; }
  .team-section__inner { padding: 60px var(--gutter) 10px; }
  .team-group { margin-bottom: 60px; }
  .team-group__note { margin-left: 0; }
  .team-grid, .team-grid--board { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .person__name { font-size: 15px; }
}

/* ---------- scroll reveal ---------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- keyframes -------------------------------------------------- */

@keyframes ipgPulse {
  0%        { transform: scale(1);   opacity: .8; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}
@keyframes ipgCue {
  0%, 100% { transform: translateY(0);    opacity: .9; }
  50%      { transform: translateY(10px); opacity: .3; }
}
@keyframes ipgTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1180px) {
  :root { --gutter: 40px; }
  .platform__grid { gap: 56px; }
  .row { grid-template-columns: 160px 64px 1fr 1.2fr auto; gap: 28px; }
  .row__num { font-size: 36px; }
}

@media (max-width: 980px) {
  .platform { padding: 110px var(--gutter); }
  .platform__grid { grid-template-columns: 1fr; gap: 56px; }
  .platform__aside { position: static; }
  .body { margin-bottom: 56px; }

  .verticals__inner { padding: 100px var(--gutter) 90px; }
  .verticals__head { margin-bottom: 56px; }

  .row {
    grid-template-columns: 140px 1fr auto;
    grid-template-areas:
      "thumb num  arrow"
      "thumb title title"
      "thumb text text";
    row-gap: 12px;
    column-gap: 28px;
    align-items: start;
  }
  .row:hover { padding: 32px 12px; }
  .row .media { grid-area: thumb; height: 150px; }
  .row__num   { grid-area: num; font-size: 28px; }
  .row__title { grid-area: title; font-size: 22px; }
  .row__text  { grid-area: text; }
  .row__arrow { grid-area: arrow; justify-self: end; }

  .routes__scrim {
    background:
      linear-gradient(to top, rgba(4,24,30,.96) 26%, rgba(4,24,30,.35) 62%, rgba(4,24,30,0) 86%),
      linear-gradient(to bottom, rgba(4,24,30,.7), transparent 24%);
  }
  .routes__body {
    left: var(--gutter);
    right: var(--gutter);
    top: auto;
    bottom: 56px;
    transform: none;
    max-width: 560px;
  }

  .contact { padding: 140px var(--gutter); }
}

@media (max-width: 760px) {
  :root { --gutter: 24px; --nav-h: 72px; }

  .nav { align-items: center; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    background: rgba(4, 24, 30, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 16px 0; border-top: 1px solid var(--line); }
  .nav__link--cta { text-align: center; margin-top: 16px; border: 1px solid rgba(195,231,239,.35); }

  .hero { min-height: 620px; }
  .hero__body { padding-bottom: 84px; }
  .hero__lede { font-size: 16px; }
  .hero__cue { display: none; }
  .btn { padding: 16px 26px; font-size: 11.5px; letter-spacing: .18em; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  .ticker__group { gap: 40px; padding: 14px 20px; }

  .platform { padding: 88px var(--gutter); }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 30px 24px; }
  .media--tall { height: 260px; }

  .interlude { height: 60vh; min-height: 420px; }

  .row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "thumb thumb"
      "num   arrow"
      "title title"
      "text  text";
  }
  .row .media { height: 190px; margin-bottom: 8px; }

  .routes__stage { height: 70vh; min-height: 480px; }

  .contact { padding: 110px var(--gutter); }
  .contact .btn { padding: 18px 26px; }

  .footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track,
  .pulse > span,
  .hero__cue-line { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  * { scroll-behavior: auto !important; }
}
