/* ---------- tokens ---------- */
:root {
  --bg: #f5f4f0;
  --surface: #ffffff;
  --sunk: #f5f4f0;
  --ink: #111111;
  --ink-2: #55555a;
  --ink-3: #8d8d93;
  --line: #e4e2dc;
  --accent: #ff5b1f;
  --ok: #1f9d55;   --ok-bg: #e7f5ec;
  --warn: #c27c00; --warn-bg: #fbf1dc;
  --idle: #6b6b72; --idle-bg: #efeeea;
  --blue: #3b6ef5;
  --pink: #d9468f;
  --teal: #0f9e8e;
  --shadow: 0 1px 0 var(--line), 0 30px 60px -30px rgba(17, 17, 17, .18);
  --shadow-hi: 0 1px 0 var(--line), 0 40px 60px -30px rgba(17, 17, 17, .28);
  --header: rgba(245, 244, 240, .78);
  --band: #111111; --band-ink: #ffffff; --band-2: #b5b5ba;
  --sans: 'Instrument Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  color-scheme: light;
}
:root[data-theme='dark'] {
  --bg: #0d0d0f;
  --surface: #17171a;
  --sunk: #1f1f23;
  --ink: #f2f1ee;
  --ink-2: #a9a9b0;
  --ink-3: #75757d;
  --line: #27272c;
  --ok: #4ad083;   --ok-bg: rgba(74, 208, 131, .12);
  --warn: #f0b440; --warn-bg: rgba(240, 180, 64, .12);
  --idle: #a9a9b0; --idle-bg: rgba(255, 255, 255, .06);
  --blue: #7a9dff;
  --pink: #f07ab5;
  --teal: #3fd1bf;
  --shadow: 0 0 0 1px var(--line);
  --shadow-hi: 0 0 0 1px #3a3a41, 0 30px 60px -30px rgba(0, 0, 0, .8);
  --header: rgba(13, 13, 15, .78);
  --band: #17171a; --band-ink: #f2f1ee; --band-2: #a9a9b0;
  color-scheme: dark;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--bg); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mono { font-family: var(--mono); }

/* ---------- page transitions (cross-document) ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out .22s var(--ease) both; }
::view-transition-new(root) { animation: vt-in .5s var(--ease) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }
header { view-transition-name: header; }
::view-transition-old(header), ::view-transition-new(header) { animation: none; }
/* the theme switch reveals the new colours as a growing circle; JS drives it */
html.theming::view-transition-old(root), html.theming::view-transition-new(root) { animation: none; mix-blend-mode: normal; }
html.theming header, html.theming .mnav { view-transition-name: none; }
html.theming::view-transition-old(root) { z-index: 1; }
html.theming::view-transition-new(root) { z-index: 2; }

/* ---------- header ---------- */
header { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(14px) saturate(1.4); background: var(--header); transition: box-shadow .3s; }
header.scrolled { box-shadow: 0 1px 0 var(--line); }
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.logo svg { transition: transform .8s var(--ease); }
.logo:hover svg { transform: rotate(180deg); }
.logo .ring { stroke: var(--ink); }
.logo .core { fill: var(--ink); }
nav ul { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
nav a.link { position: relative; font-size: 15px; color: var(--ink-2); transition: color .2s; }
nav a.link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
nav a.link:hover, nav a.link[aria-current='page'] { color: var(--ink); }
nav a.link:hover::after, nav a.link[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.right { display: flex; align-items: center; gap: 10px; }
.theme { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); transition: box-shadow .2s, transform .3s var(--ease); position: relative; overflow: hidden; }
.theme:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.theme:active { transform: scale(.92); }
.theme svg { position: absolute; transition: transform .6s var(--ease), opacity .3s; }
.theme .moon { transform: translateY(0) rotate(0); }
.theme .sun { transform: translateY(26px) rotate(-90deg); opacity: 0; }
:root[data-theme='dark'] .theme .moon { transform: translateY(-26px) rotate(90deg); opacity: 0; }
:root[data-theme='dark'] .theme .sun { transform: none; opacity: 1; }

/* ---------- buttons ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 18px; border-radius: 999px; background: var(--ink); color: var(--bg); font-size: 14px; font-weight: 500; white-space: nowrap; transition: transform .3s var(--ease), opacity .2s, box-shadow .2s; }
.pill:hover { transform: translateY(-1px); opacity: .88; }
.pill svg, .more svg, .arrow-link svg { transition: transform .3s var(--ease); }
.pill:hover svg, .more:hover svg, .arrow-link:hover svg { transform: translateX(3px); }
.pill.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.pill.ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); opacity: 1; }
.pill.lg { height: 48px; padding: 0 24px; font-size: 15px; }
.pill[aria-disabled='true'] { background: var(--sunk); color: var(--ink-3); cursor: default; transform: none; opacity: 1; }

/* ---------- shared pieces ---------- */
.card { background: var(--surface); border-radius: 24px; box-shadow: var(--shadow); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); padding: 6px 12px 6px 8px; border-radius: 999px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; flex: none; }
.live::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--accent); animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(3); opacity: 0; } }
.status { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.status .ic { width: 13px; height: 13px; stroke-width: 2.2; }
.status.go { color: var(--ok); background: var(--ok-bg); }
.status.tbc { color: var(--warn); background: var(--warn-bg); }
.status.tbd { color: var(--idle); background: var(--idle-bg); }
.tag { font-size: 13px; padding: 5px 12px; border-radius: 999px; background: var(--sunk); color: var(--ink-2); white-space: nowrap; }
a.tag:hover { color: var(--ink); }
.more { font-size: 15px; font-weight: 500; display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
.arrow-link { display: inline-flex; gap: 6px; align-items: center; font-weight: 500; }

/* loading placeholders */
.skel { display: block; height: 12px; border-radius: 6px; margin: 10px 0; background: linear-gradient(90deg, var(--sunk) 0%, color-mix(in srgb, var(--sunk) 55%, var(--line)) 50%, var(--sunk) 100%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
.skel.h { height: 22px; margin: 16px 0 12px; }
.skel.block { height: 88px; border-radius: 14px; margin: 24px 0; }
@keyframes shimmer { to { background-position: -200% 0; } }
.stale { color: var(--warn); }

/* icons */
.ic { flex: none; display: inline-block; vertical-align: -3px; }
.ibadge { --c: var(--ink); width: 40px; height: 40px; border-radius: 12px; display: inline-grid; place-items: center; flex: none; color: var(--c); background: color-mix(in srgb, var(--c) 10%, transparent); transition: transform .5s var(--ease); }
.head .title { display: flex; align-items: center; gap: 14px; }
.stat .top { display: flex; justify-content: space-between; align-items: start; }
.stat:hover .ibadge, .head:hover .ibadge { transform: rotate(-8deg) scale(1.06); }
.pill .ic { width: 15px; height: 15px; }
.facts dt, .kv dt { display: flex; align-items: center; gap: 6px; }
.facts dt .ic, .kv dt .ic { width: 13px; height: 13px; }
.meta-ic { display: inline-flex; align-items: center; gap: 6px; }
.meta-ic .ic { width: 14px; height: 14px; opacity: .8; }
.mnav a { display: flex; gap: 6px; align-items: center; }
.mnav .ic { width: 16px; height: 16px; }

/* page head */
.phead { padding: 80px 0 40px; display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; }
.phead h1 { font-size: clamp(44px, 6vw, 72px); font-weight: 500; letter-spacing: -.04em; line-height: 1; margin: 20px 0 16px; }
.phead p { color: var(--ink-2); font-size: 18px; margin: 0; max-width: 520px; }
.split { display: block; overflow: hidden; padding-bottom: .06em; }
.split > span { display: inline-block; transform: translateY(105%); animation: rise 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { transform: none; } }
.fade-up { opacity: 0; transform: translateY(16px); animation: fadeup .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeup { to { opacity: 1; transform: none; } }

/* section head */
section.block { padding: 96px 0 0; }
.head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; gap: 24px; }
.head h2, .head h3 { font-size: 34px; font-weight: 500; letter-spacing: -.025em; margin: 0; }
.head p { margin: 6px 0 0; color: var(--ink-2); }
.count { font-family: var(--mono); font-size: 14px; color: var(--ink-3); font-weight: 400; margin-left: 10px; letter-spacing: 0; vertical-align: middle; }

/* toolbar: segmented control, chips, search */
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.seg { position: relative; display: inline-flex; padding: 4px; border-radius: 999px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.seg button { position: relative; z-index: 1; height: 36px; padding: 0 16px; border-radius: 999px; font-size: 14px; color: var(--ink-2); transition: color .3s; }
.seg button[aria-pressed='true'] { color: var(--bg); }
.seg .thumb { position: absolute; z-index: 0; top: 4px; bottom: 4px; left: 0; border-radius: 999px; background: var(--ink); transition: transform .45s var(--ease), width .45s var(--ease); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { height: 36px; padding: 0 14px; border-radius: 999px; font-size: 14px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; box-shadow: inset 0 0 0 1px var(--line); transition: background .25s, color .25s, box-shadow .25s; }
.chip:hover { box-shadow: inset 0 0 0 1px var(--ink-3); color: var(--ink); }
.chip-ic { display: inline-flex; }
.chip[aria-pressed='true'] .chip-ic { color: inherit !important; }
.chip .n { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.chip[aria-pressed='true'] { background: var(--ink); color: var(--bg); box-shadow: none; }
.chip[aria-pressed='true'] .n { color: inherit; opacity: .6; }
.search { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 16px; border-radius: 999px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); width: 300px; color: var(--ink-3); transition: box-shadow .2s, width .4s var(--ease); }
.search:focus-within { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); width: 340px; }
.search input { flex: 1; min-width: 0; border: 0; outline: none; background: transparent; font-size: 15px; }
.search input::placeholder { color: var(--ink-3); }
.empty { padding: 72px 0; text-align: center; color: var(--ink-3); }

/* ---------- launch rows ---------- */
.list { overflow: hidden; }
.row { display: grid; grid-template-columns: 180px 1fr 220px 90px 24px; align-items: center; gap: 24px; padding: 22px 28px; border-top: 1px solid var(--line); transition: background .25s; width: 100%; text-align: left; }
.list > :first-child, .list > :first-child > .row { border-top: 0; }
.row:hover { background: var(--sunk); }
.row .when { font-family: var(--mono); font-size: 14px; color: var(--ink-2); }
.row .cd { font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.row .name { font-weight: 500; font-size: 17px; }
.row .sub { font-size: 14px; color: var(--ink-3); }
.row .place { font-size: 14px; color: var(--ink-2); }
.row .arrow { color: var(--ink-3); transition: transform .4s var(--ease), color .2s; justify-self: end; }
a.row:hover .arrow { transform: translateX(4px); color: var(--ink); }
.launch.open .row .arrow { transform: rotate(180deg); color: var(--ink); }
.launch.open .row { background: var(--sunk); }
/* expandable detail: grid rows 0fr -> 1fr animates to the content's own height */
.more-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); background: var(--sunk); }
.launch.open .more-wrap { grid-template-rows: 1fr; }
.more-wrap > div { overflow: hidden; }
.detail { padding: 4px 28px 28px 232px; opacity: 0; transform: translateY(-6px); transition: opacity .35s, transform .5s var(--ease); }
.launch.open .detail { opacity: 1; transform: none; transition-delay: .1s; }
.detail .about { color: var(--ink-2); margin: 0 0 20px; max-width: 700px; font-size: 15px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 32px; }
.facts dt { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.facts dd { margin: 2px 0 0; font-size: 15px; }
.crew { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.crew span { background: var(--surface); border-radius: 12px; padding: 10px 14px; font-size: 14px; box-shadow: inset 0 0 0 1px var(--line); }
.crew small { display: block; color: var(--ink-3); font-size: 12px; }
.detail .acts { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.group-title { font-size: 13px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; margin: 48px 0 14px 4px; display: flex; gap: 10px; }

/* ---------- countdown ---------- */
.clock { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.unit { background: var(--sunk); border-radius: 14px; padding: 16px 0 12px; text-align: center; }
.digits { font-family: var(--mono); font-size: 36px; font-weight: 500; letter-spacing: -.03em; height: 44px; overflow: hidden; position: relative; line-height: 44px; }
.digits span { display: block; }
.digits span.out { position: absolute; inset: 0; animation: d-out .45s var(--ease) forwards; }
.digits span.in { animation: d-in .45s var(--ease); }
@keyframes d-out { to { transform: translateY(-100%); opacity: 0; } }
@keyframes d-in { from { transform: translateY(100%); opacity: 0; } }
.unit small { display: block; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.clock.big .digits { font-size: 56px; height: 66px; line-height: 66px; }
.clock.big .unit { padding: 22px 0 16px; border-radius: 18px; }

/* ---------- feature card (next launch) ---------- */
.feature { padding: 36px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.feature h2 { font-size: 36px; font-weight: 500; letter-spacing: -.03em; margin: 14px 0 6px; line-height: 1.1; }
.feature .where { color: var(--ink-2); margin: 0 0 24px; }
.feature .top { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--ink-3); }

/* ---------- mission cards ---------- */
.mgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mcard { padding: 24px; display: flex; flex-direction: column; gap: 14px; min-height: 196px; text-align: left; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.mcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-hi); }
.mcard .t { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.mcard .name { font-size: 19px; font-weight: 500; letter-spacing: -.01em; line-height: 1.25; }
.mcard .to { color: var(--ink-2); font-size: 14px; margin-top: -8px; }
.mcard .foot { margin-top: auto; display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-3); gap: 12px; }
.phase { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; white-space: nowrap; color: var(--c); }
.phase .ic { width: 14px; height: 14px; }
.track { height: 6px; border-radius: 99px; background: var(--sunk); overflow: hidden; }
.track i { display: block; height: 100%; border-radius: 99px; background: var(--ink); width: 0; transition: width 1.6s var(--ease); }
.in .track i, .track.in i { width: var(--p); }
.pop { animation: pop .5s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } }

/* ---------- drawer ---------- */
.scrim { position: fixed; inset: 0; z-index: 40; background: rgba(10, 10, 12, .35); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.scrim.on { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; z-index: 41; top: 12px; right: 12px; bottom: 12px; width: min(520px, calc(100% - 24px)); border-radius: 28px; background: var(--surface); box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .35); transform: translateX(calc(100% + 24px)); transition: transform .6s var(--ease); display: flex; flex-direction: column; overflow: hidden; }
.drawer.on { transform: none; }
.drawer .bar { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px 0; }
.drawer .x { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); transition: transform .4s var(--ease); }
.drawer .x:hover { transform: rotate(90deg); }
.drawer .body { padding: 12px 32px 40px; overflow-y: auto; }
.drawer h2 { font-size: 36px; font-weight: 500; letter-spacing: -.03em; line-height: 1.05; margin: 14px 0 12px; }
.drawer .lead { color: var(--ink-2); margin: 0 0 24px; }
.drawer h3 { font-size: 13px; font-weight: 500; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; margin: 32px 0 12px; }
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kv div { background: var(--sunk); border-radius: 14px; padding: 12px 14px; }
.kv dt { font-size: 12px; color: var(--ink-3); }
.kv dd { margin: 2px 0 0; font-size: 15px; font-weight: 500; }
.tl { list-style: none; margin: 0; padding: 0; }
.tl li { position: relative; padding: 0 0 18px 26px; }
.tl li::before { content: ''; position: absolute; left: 5px; top: 18px; bottom: 0; width: 1.5px; background: var(--line); }
.tl li:last-child::before { display: none; }
.tl li::after { content: ''; position: absolute; left: 0; top: 6px; width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--ink-3); background: var(--surface); }
.tl li.done::after { background: var(--ink); box-shadow: none; }
.tl li.next::after { box-shadow: inset 0 0 0 1.5px var(--accent); animation: ring 2s var(--ease) infinite; }
@keyframes ring { 0% { box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 0 rgba(255, 91, 31, .45); } 100% { box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 10px rgba(255, 91, 31, 0); } }
.tl .tt { font-size: 15px; }
.tl li:not(.done):not(.next) .tt { color: var(--ink-2); }
.tl .on { font-size: 13px; color: var(--ink-3); }
.tl li.next .on { color: var(--accent); }
.obj { margin: 0; padding-left: 18px; color: var(--ink-2); }
.obj li { margin-bottom: 6px; }
.drawer .body > * { animation: pop .6s var(--ease) both; }
.drawer .body > *:nth-child(2) { animation-delay: .05s; } .drawer .body > *:nth-child(3) { animation-delay: .1s; }
.drawer .body > *:nth-child(4) { animation-delay: .15s; } .drawer .body > *:nth-child(n+5) { animation-delay: .2s; }

/* ---------- news ---------- */
.lead-story { padding: 0; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.lead-story:hover { transform: translateY(-4px); box-shadow: var(--shadow-hi); }
.lead-story h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 500; letter-spacing: -.03em; line-height: 1.08; margin: 18px 0 18px; }
.lead-story p { color: var(--ink-2); font-size: 17px; margin: 0; max-width: 620px; }
.src-line { font-size: 13px; color: var(--ink-3); display: flex; gap: 10px; }
.lead-story .pic { aspect-ratio: auto; min-height: 380px; }
.lead-story .body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.lead-story .side { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 24px; }
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.story { display: flex; flex-direction: column; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.story .txt { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pic { aspect-ratio: 16 / 10; background: var(--sunk); overflow: hidden; position: relative; }
.pic .cover { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--ink-3); opacity: 0; transition: opacity .6s; }
.pic.fallback { background: radial-gradient(120% 90% at 70% 30%, color-mix(in srgb, var(--accent) 16%, var(--sunk)), var(--sunk)); }
.pic.fallback .cover { opacity: 1; }
.pic img { position: relative; width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transform: scale(1.04); transition: opacity .7s var(--ease), transform 1.2s var(--ease); }
.pic img.loaded { opacity: 1; transform: none; }
.story:hover .pic img.loaded, .lead-story:hover .pic img.loaded { transform: scale(1.04); }
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-hi); }
.story .src { font-size: 13px; color: var(--ink-3); display: flex; justify-content: space-between; gap: 12px; }
.story h3, .story h4 { font-size: 21px; font-weight: 500; letter-spacing: -.015em; line-height: 1.25; margin: 0; }
.story p { color: var(--ink-2); font-size: 15px; margin: 0; }
.story .tag { margin-top: auto; align-self: flex-start; }
.story:hover h3, .story:hover h4, .lead-story:hover h2 { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; }

/* ---------- home ---------- */
.hero { padding: 96px 0 72px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(42px, 5vw, 64px); line-height: 1; letter-spacing: -.035em; font-weight: 500; margin: 28px 0 24px; }
.hero .soft { color: var(--ink-3); }
.hero .lede { font-size: 18px; color: var(--ink-2); max-width: 460px; margin: 0 0 36px; }
.ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.next { padding: 32px; position: relative; overflow: hidden; }
.next > :not(.orbit) { position: relative; }
.next .top { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-3); }
.next h2 { font-size: 28px; font-weight: 500; letter-spacing: -.02em; margin: 18px 0 4px; }
.next .where { color: var(--ink-2); font-size: 15px; margin: 0; }
.next .clock { margin: 28px 0 24px; }
.next .foot { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-2); padding-top: 20px; border-top: 1px solid var(--line); }
.orbit { position: absolute; right: -110px; bottom: -120px; width: 260px; height: 260px; pointer-events: none; }
.orbit circle.o { stroke: var(--line); }
.orbit .sat { transform-origin: 110px 110px; animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 28px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-hi); }
.stat .n { font-size: 56px; font-weight: 500; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .l { color: var(--ink-2); margin-top: 10px; display: flex; align-items: center; gap: 8px; font-size: 15px; }

.cruise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ship { padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.ship:hover { transform: translateY(-4px); box-shadow: var(--shadow-hi); }
.ship .t { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.ship .name { font-size: 20px; font-weight: 500; letter-spacing: -.01em; }
.ship .pct { font-family: var(--mono); font-size: 14px; color: var(--ink-2); }
.ship .to { color: var(--ink-2); font-size: 15px; margin-top: -8px; }
.ship .track { margin: 6px 0 2px; }
.ship.in .track i { width: var(--p); }
.ship .meta { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--ink-3); }

/* ---------- app band + footer ---------- */
.cta { margin: 120px 0 0; padding: 72px 64px; border-radius: 32px; background: var(--band); color: var(--band-ink); display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.cta h2 { font-size: 44px; font-weight: 500; letter-spacing: -.03em; line-height: 1.05; margin: 0 0 14px; }
.cta p { color: var(--band-2); margin: 0; max-width: 460px; }
.cta .pill { background: var(--band-ink); color: var(--band); }
.cta .rings { position: absolute; right: -120px; bottom: -160px; width: 420px; height: 420px; opacity: .25; }
.cta .rings circle { stroke: var(--band-ink); animation: breathe 6s ease-in-out infinite; transform-origin: center; }
.cta .rings circle:nth-child(2) { animation-delay: -2s; }
.cta .rings circle:nth-child(3) { animation-delay: -4s; }
@keyframes breathe { 50% { transform: scale(1.06); opacity: .5; } }
footer { padding: 56px 0 64px; color: var(--ink-3); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer a:hover { color: var(--ink); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- small screens ---------- */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  nav ul { display: none; }
  .right .pill { display: none; }
  .hero, .feature, .lead-story { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .feature { padding: 28px; gap: 24px; }
  .lead-story .pic { min-height: 220px; }
  .lead-story .body { padding: 28px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cruise, .news, .mgrid { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr auto; gap: 4px 16px; padding: 18px 20px; }
  .row .place, .row .arrow { display: none; }
  .row > :first-child { grid-column: 1 / -1; }
  .detail { padding: 4px 20px 24px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; padding: 48px 28px; }
  .cta h2 { font-size: 34px; }
  .search, .search:focus-within { width: 100%; }
  .clock.big .digits { font-size: 36px; height: 44px; line-height: 44px; }
  .mnav { display: flex; }
}
.mnav { display: none; position: fixed; z-index: 30; left: 50%; bottom: 16px; transform: translateX(-50%); gap: 4px; padding: 6px; border-radius: 999px; background: var(--header); backdrop-filter: blur(14px); box-shadow: var(--shadow-hi); view-transition-name: mnav; }
.mnav a { height: 40px; padding: 0 16px; border-radius: 999px; display: grid; place-items: center; font-size: 14px; color: var(--ink-2); }
.mnav a[aria-current='page'] { background: var(--ink); color: var(--bg); }
@media (max-width: 900px) { body { padding-bottom: 88px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .split > span, .fade-up, .reveal { transform: none; opacity: 1; }
  .track i { width: var(--p); }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}
