/* ---------- AstroMoWe — Brand styles ---------- */

:root {
  --care-blue: #0065BD;
  --care-blue-700: #00549c;
  --care-blue-300: #4a93d8;
  --night-orbit: #2A3372;
  --night-orbit-700: #1f2659;
  --night-orbit-300: #5860a0;
  --off-white: #F5F7FB;
  --ink: #0E1326;
  --ink-60: rgba(14, 19, 38, 0.6);
  --ink-30: rgba(14, 19, 38, 0.3);
  --ink-10: rgba(14, 19, 38, 0.08);
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --shadow-card: 0 1px 2px rgba(14, 19, 38, 0.04), 0 8px 24px rgba(14, 19, 38, 0.06);
  --shadow-card-hover: 0 4px 8px rgba(14, 19, 38, 0.06), 0 16px 32px rgba(14, 19, 38, 0.09);
  --radius-card: 16px;
  --radius-btn: 8px;
  --max-w: 1200px;
  --max-w-narrow: 920px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--care-blue);
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover { color: var(--night-orbit); }

button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.h-display {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.h-1 { font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.02em; line-height: 1.1; }
.h-2 { font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -0.015em; line-height: 1.15; }
.h-3 { font-size: clamp(20px, 1.8vw, 24px); letter-spacing: -0.01em; line-height: 1.2; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--care-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.on-dark { color: #9DB6FF; }
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-60);
  max-width: 56ch;
  text-wrap: pretty;
}
.lede.on-dark { color: var(--white-70); }

.muted { color: var(--ink-60); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: var(--max-w-narrow); }

section.band {
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
section.band.tight { padding: clamp(48px, 6vw, 80px) 0; }

.band.white { background: var(--white); color: var(--ink); }
.band.off { background: var(--off-white); color: var(--ink); }
.band.blue { background: var(--care-blue); color: var(--white); }
.band.night { background: var(--night-orbit); color: var(--white); }

.band.blue .lede, .band.night .lede { color: var(--white-70); }
.band.blue .muted, .band.night .muted { color: var(--white-70); }
/* Link tint inside dark bands — but NOT buttons, whose variants set their own
   colour (otherwise this higher-specificity rule paints white CTAs light-blue
   text on white = unreadable). */
.band.blue a:not(.btn), .band.night a:not(.btn) { color: #BFDCFF; }
.band.blue a:not(.btn):hover, .band.night a:not(.btn):hover { color: var(--white); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 760px;
}
.section-head.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
  align-items: center;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--care-blue); color: var(--white); border-color: var(--care-blue); }
.btn-primary:hover { background: var(--night-orbit); border-color: var(--night-orbit); color: var(--white); }

.btn-on-blue-fill { background: var(--white); color: var(--care-blue-700); font-weight: 600; }
/* Hover stays a light chip (with a lift) so the button never blends into a blue
   or night-orbit section background the way an invert-to-navy hover did. */
.btn-on-blue-fill:hover { background: #e8f0fb; color: var(--care-blue-700); box-shadow: 0 10px 26px rgba(14, 19, 38, 0.18); }

.btn-on-blue-outline { background: transparent; color: var(--white); border-color: var(--white-50); }
.btn-on-blue-outline:hover { background: var(--white); color: var(--care-blue); border-color: var(--white); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink-10); }
.btn-outline:hover { border-color: var(--night-orbit); color: var(--night-orbit); }

.btn-ghost { background: transparent; color: var(--care-blue); padding: 10px 0; }
.btn-ghost:hover { color: var(--night-orbit); }

.btn-cta-strip {
  padding: 16px 28px;
  font-size: 16px;
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 250ms ease, box-shadow 250ms ease, color 250ms ease;
  background: transparent;
}
.nav-wrap.solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--ink-10), 0 8px 24px rgba(14, 19, 38, 0.04);
}
.nav {
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.nav-brand-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.nav-logo { width: 44px; height: 44px; display: block; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; }
.lang-switch button {
  background: none; border: 0; cursor: pointer; color: inherit; font: inherit;
  padding: 4px 3px; opacity: 0.5; letter-spacing: 0.04em;
  transition: opacity 150ms ease, color 150ms ease;
}
.lang-switch button:hover { opacity: 0.85; }
.lang-switch button.active { opacity: 1; color: var(--care-blue); }
.lang-switch .lang-sep { opacity: 0.3; }
.nav-wrap:not(.solid).hero-light .lang-switch button.active { color: var(--white); }
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand-name {
  font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
}
.nav-brand-sub {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-60);
  font-weight: 500;
}
.nav-wrap:not(.solid) .nav-brand-sub { color: var(--white-70); }
.nav-wrap:not(.solid).hero-light .nav-brand,
.nav-wrap:not(.solid).hero-light .nav-links a,
.nav-wrap:not(.solid).hero-light .nav-right,
.nav-wrap:not(.solid).hero-light .nav-toggle { color: var(--white); }
.nav-wrap:not(.solid).hero-light .nav-brand-sub { color: var(--white-70); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 200ms ease, background 200ms ease;
}
.nav-links a:hover { color: var(--care-blue); }
.nav-wrap:not(.solid).hero-light .nav-links a:hover {
  color: var(--white);
  background: var(--white-10);
}
.nav-links a.active { color: var(--care-blue); }
.nav-wrap:not(.solid).hero-light .nav-links a.active {
  color: var(--white);
  background: var(--white-10);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 18px;
  font-size: 14.5px;
}

.nav-toggle {
  display: none;
  background: none; border: none;
  color: inherit;
  padding: 8px;
}

@media (max-width: 1180px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { padding: 0 20px; }
}
.mobile-menu .lang-switch-mobile { margin-top: 24px; font-size: 15px; }
.mobile-menu .lang-switch-mobile button { padding: 6px 4px; }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 280ms ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 14px 8px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink-10);
  color: var(--ink);
}
.mobile-menu .nav-cta {
  display: inline-flex; margin-top: 24px; align-self: flex-start;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 96px;
  background: linear-gradient(170deg, var(--care-blue) 0%, var(--care-blue) 55%, #1a4a93 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-grand {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-strip {
  background: var(--night-orbit);
  color: var(--white);
  padding: calc(var(--nav-h) + 48px) 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-strip h1 { font-size: clamp(32px, 4.2vw, 52px); }
.hero-strip .eyebrow { color: #9DB6FF; }

.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BFDCFF;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #BFDCFF;
  box-shadow: 0 0 0 4px rgba(191, 220, 255, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(191, 220, 255, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(191, 220, 255, 0.05); }
}
.hero h1 {
  font-size: clamp(48px, 7.4vw, 96px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 24px;
}
.hero .subhead {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 32px;
  max-width: 24ch;
  text-wrap: balance;
}
.hero .lede { color: var(--white-70); max-width: 56ch; }
.hero .hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-orbit { display: none; }
}

.hero-orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hero-orbit svg { width: 100%; height: 100%; overflow: visible; }
@media (prefers-reduced-motion: no-preference) {
  .orbit-spin { animation: spin 60s linear infinite; transform-origin: 50% 50%; }
  .orbit-spin-fast { animation: spin 24s linear infinite; transform-origin: 50% 50%; }
  .orbit-spin-rev { animation: spin-rev 90s linear infinite; transform-origin: 50% 50%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

.ekg-line {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 64px;
  pointer-events: none;
  opacity: 0.55;
}
.ekg-line svg { width: 100%; height: 100%; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .ekg-line path {
    stroke-dasharray: 60 1200;
    animation: ekg 3.6s linear infinite;
  }
}
@keyframes ekg {
  to { stroke-dashoffset: -1260; }
}

/* Background orbit watermark */
.orbit-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}
.orbit-watermark.dark { opacity: 0.14; }

/* ---------- Parallax starfield + cursor glow (ported from the launch gate) ---------- */
.starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.starfield .sf-layer { position: absolute; inset: -40px; will-change: transform; }
.sf-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: var(--a, 0.5);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  animation: sf-tw var(--d, 5s) ease-in-out var(--o, 0s) infinite;
}
@keyframes sf-tw {
  0%, 100% { opacity: var(--a, 0.5); }
  50% { opacity: calc(var(--a, 0.5) * 0.2); }
}
.sf-spot {
  position: absolute;
  width: 520px; height: 520px;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: radial-gradient(circle, rgba(127, 196, 255, 0.16) 0%, rgba(127, 196, 255, 0.05) 35%, transparent 70%);
  transition: opacity 0.5s ease;
}
/* On the bright blue hero the stars are deliberately understated. */
.hero .starfield { opacity: 0.55; }
@media (prefers-reduced-motion: reduce) {
  .sf-star { animation: none !important; }
}

/* ---------- Cosmos scene: Earth limb + orbiting ISS ---------- */
.cosmos-scene {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: min(72vh, 680px);
  z-index: 1;
  pointer-events: none;
}
/* Give the Earth limb room beneath the section's content. */
.space-earth { padding-bottom: clamp(160px, 24vh, 320px); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 280ms ease, box-shadow 280ms ease;
  border: 1px solid transparent;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.card-dark:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.28); }

.card-on-blue {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}

.card .icon, .card-dark .icon, .card-on-blue .icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.card .icon { background: rgba(0, 101, 189, 0.08); color: var(--night-orbit); }
.card-dark .icon, .card-on-blue .icon { background: rgba(255, 255, 255, 0.10); color: var(--white); }

.card h3, .card-dark h3, .card-on-blue h3 {
  font-size: 19px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.25;
  text-wrap: balance;
}
.card p, .card-dark p, .card-on-blue p {
  margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-60);
}
.card-dark p, .card-on-blue p { color: var(--white-70); }

.card-arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--care-blue);
}

/* Audience card variant (large) */
.aud-card {
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.aud-card .num {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--care-blue);
  margin-bottom: 16px;
}
.aud-card h3 { font-size: 22px; }

/* Stat card */
.stat {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.stat .stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--care-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .stat-label {
  font-size: 14px; font-weight: 500; color: var(--ink-60);
  letter-spacing: 0.01em;
}

.stat-on-blue {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-on-blue .stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-on-blue .stat-label {
  font-size: 14px; font-weight: 500; color: var(--white-70);
}

/* ---------- Two-column block ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.two-col.flip { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}

.two-col p { color: var(--ink-60); margin: 0 0 14px; }
.band.blue .two-col p, .band.night .two-col p { color: var(--white-70); }

/* ---------- Image placeholder ---------- */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(14,19,38,0.04) 0 1px, transparent 1px 14px),
    var(--off-white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-60);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  text-align: center;
  padding: 24px;
}
.img-ph.on-dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 14px),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white-70);
}
.img-ph.tall { aspect-ratio: 3 / 4; }
.img-ph.wide { aspect-ratio: 16 / 9; }
.img-ph.square { aspect-ratio: 1 / 1; }

/* Sensor illustration container */
.sensor-illo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--ink-10);
}

/* ---------- Steps / Timeline ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps.four { grid-template-columns: repeat(4, 1fr); }
.steps .step {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
}
.steps-row.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .steps-row, .steps-row.four { grid-template-columns: 1fr; }
}

.step-num {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--care-blue);
}
.card-on-blue .step-num { color: #BFDCFF; }

.connector-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--white-50);
  display: none;
}
@media (min-width: 981px) {
  .steps-row .step-card { position: relative; }
  .steps-row .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%; right: -16px;
    transform: translateY(-50%);
    width: 32px; height: 1px;
    background: rgba(255,255,255,0.3);
    z-index: 1;
  }
  .steps-row .step-card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%; right: -22px;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-top: 1px solid rgba(255,255,255,0.5);
    border-right: 1px solid rgba(255,255,255,0.5);
    rotate: 45deg;
    z-index: 2;
  }
}

/* Timeline (3 step horizontal) */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; }
}
.timeline-step {
  padding: 32px 32px 32px 0;
  position: relative;
  border-top: 1px solid var(--ink-10);
  padding-top: 28px;
}
.timeline-step::before {
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--care-blue);
  box-shadow: 0 0 0 4px var(--off-white), 0 0 0 5px var(--care-blue);
}
.timeline-step .ts-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--care-blue);
  margin-bottom: 8px;
}
.timeline-step h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.timeline-step p { color: var(--ink-60); margin: 0; }

/* ---------- Bullet list ---------- */
.brand-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.brand-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 6px 0;
}
.brand-list li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--care-blue);
  margin-top: 11px;
  flex-shrink: 0;
}
.band.blue .brand-list li::before, .band.night .brand-list li::before { background: var(--white); }

.brand-list.lg li { font-size: 17px; font-weight: 500; }

.numbered {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: q;
  display: flex; flex-direction: column; gap: 0;
}
.numbered li {
  counter-increment: q;
  padding: 28px 0 28px 80px;
  border-top: 1px solid var(--ink-10);
  position: relative;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.numbered li:last-child { border-bottom: 1px solid var(--ink-10); }
.numbered li::before {
  content: counter(q, decimal-leading-zero);
  position: absolute; left: 0; top: 30px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--care-blue);
  font-feature-settings: "tnum";
}

/* ---------- Logo strip ---------- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) { .logo-strip { grid-template-columns: repeat(2, 1fr); } }
.logo-tile {
  display: flex; align-items: center; justify-content: center;
  padding: 26px 18px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--ink-10);
  min-height: 158px;
  text-align: center;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.logo-tile:hover { border-color: var(--night-orbit-300); transform: translateY(-2px); }
.logo-tile .lg-logo {
  height: 56px; display: flex; align-items: center; justify-content: center;
}
.logo-tile .lg-logo img {
  max-height: 56px; max-width: 100%; width: auto; object-fit: contain;
}
.logo-tile .lg-mark {
  font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--night-orbit);
}
.logo-tile .lg-sub {
  font-size: 12.5px; line-height: 1.35;
  color: var(--ink-60);
  font-weight: 500;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--care-blue);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-size: clamp(26px, 2.6vw, 36px); max-width: 22ch; }
.cta-strip .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--night-orbit);
  color: var(--white);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
footer .footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  footer .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  footer .footer-top { grid-template-columns: 1fr; }
}

footer h4 {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 18px;
}
footer .foot-links { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
footer .foot-links a { color: var(--white); opacity: 0.85; font-size: 15px; }
footer .foot-links a:hover { opacity: 1; color: var(--white); }

footer .partners-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 14px;
}
footer .partner-chip {
  font-size: 12px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--white-20);
  color: var(--white);
}

footer .foot-brand {
  display: flex; gap: 14px; align-items: center; margin-bottom: 20px;
}
footer .foot-brand-mark { width: 60px; height: 60px; flex-shrink: 0; }
footer .foot-brand-mark img { width: 60px; height: 60px; display: block; }
footer .foot-brand-name { font-weight: 600; font-size: 18px; }
footer .foot-brand-sub {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-70); font-weight: 500;
}

footer .foot-bottom {
  border-top: 1px solid var(--white-20);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--white-70);
}
footer .foot-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
footer .foot-bottom-links a { color: var(--white-70); }
footer .foot-bottom-links a:hover { color: var(--white); }

/* ESA funding acknowledgment + disclaimer (sits above the bottom rule) */
footer .foot-esa {
  display: flex; flex-direction: column; gap: 3px;
  margin-bottom: 22px;
  font-size: 13px; color: var(--white-70);
}
footer .foot-esa-note { font-size: 12px; color: var(--white-50); font-style: italic; }

.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  color: var(--white);
  transition: background 200ms ease, border-color 200ms ease;
}
.social-row a:hover { background: var(--white); color: var(--night-orbit); border-color: var(--white); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--night-orbit);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; right: 24px; bottom: 24px; left: auto;
  z-index: 90;
  width: calc(100% - 48px);
  max-width: 440px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ink-10);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(14,19,38,0.18);
  padding: 22px 24px;
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.cookie p { margin: 0; font-size: 14px; color: var(--ink-60); flex: 1 1 240px; }
.cookie .btn { padding: 10px 18px; font-size: 14px; }

/* ---------- Scroll fade in ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .orbit-spin, .orbit-spin-fast, .orbit-spin-rev { animation: none !important; }
  .ekg-line path { animation: none !important; }
  .hero-eyebrow .dot { animation: none !important; }
}

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.form-card label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink); }
.form-card input, .form-card textarea, .form-card select {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--ink-10);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: none;
  border-color: var(--care-blue);
  box-shadow: 0 0 0 4px rgba(0, 101, 189, 0.12);
}
.form-card textarea { min-height: 140px; resize: vertical; }
.gdpr {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--ink-60);
}
.gdpr input { margin-top: 4px; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--ink-10); margin: 24px 0; }
.divider.on-dark { background: var(--white-20); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(0, 101, 189, 0.08);
  color: var(--care-blue);
}
.chip.on-dark { background: var(--white-10); color: var(--white); }

.icon-tile {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0, 101, 189, 0.08);
  color: var(--night-orbit);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-tile.on-dark { background: var(--white-10); color: var(--white); }
.icon-tile.on-blue { background: rgba(255, 255, 255, 0.12); color: var(--white); }

/* Featured lead card */
.lead-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 800px) {
  .lead-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
.lead-card .portrait {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    repeating-linear-gradient(135deg, rgba(14,19,38,0.04) 0 1px, transparent 1px 14px),
    var(--off-white);
  border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-60);
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Download row */
.download-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.download-row:hover { border-color: var(--night-orbit-300); transform: translateY(-1px); }
.download-row .dr-left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.download-row .file-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0, 101, 189, 0.08);
  color: var(--night-orbit);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.download-row .dr-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.download-row .dr-name { font-weight: 500; font-size: 16px; }
.download-row .dr-meta { font-size: 13px; color: var(--ink-60); }
.download-list { display: flex; flex-direction: column; gap: 12px; }
a.download-row { color: inherit; text-decoration: none; cursor: pointer; }
.download-row .chip { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* Brand download kit (News → Loga projektu) */
.brand-kit { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .brand-kit { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .brand-kit { grid-template-columns: 1fr; } }
.brand-tile {
  background: var(--white); border: 1px solid var(--ink-10); border-radius: 16px;
  padding: 16px; text-align: center;
  transition: border-color 200ms ease, transform 200ms ease;
}
.brand-tile:hover { border-color: var(--night-orbit-300); transform: translateY(-2px); }
.bt-preview {
  height: 116px; border-radius: 12px; padding: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
}
.bt-preview.dark { background: var(--night-orbit); }
.bt-preview img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bt-name { font-weight: 500; font-size: 14px; margin-top: 12px; }
.bt-links { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
.bt-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--care-blue); text-decoration: none;
  border: 1px solid var(--ink-10); border-radius: 8px; padding: 5px 12px;
  transition: background 150ms ease, border-color 150ms ease;
}
.bt-links a:hover { background: rgba(0, 101, 189, 0.08); border-color: var(--care-blue-300); }

/* ---------- Team ---------- */
.team-leads { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .team-leads { grid-template-columns: 1fr; } }
.team-lead {
  display: grid; grid-template-columns: 132px 1fr; gap: 28px; align-items: start;
  background: var(--white); border: 1px solid var(--ink-10); border-radius: 22px;
  padding: 30px; box-shadow: var(--shadow-card);
  font: inherit; color: inherit; text-align: left; width: 100%; cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.team-lead:hover { border-color: var(--night-orbit-300); transform: translateY(-2px); }
.team-lead .tc-more { margin-top: 16px; }
@media (max-width: 520px) {
  .team-lead { grid-template-columns: 1fr; gap: 18px; text-align: center; justify-items: center; }
}
.team-photo {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  background: var(--off-white); border: 1px solid var(--ink-10); flex-shrink: 0;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Card portraits are desaturated; full colour is revealed in the popup. */
.team-card .team-photo img, .team-lead .team-photo img { filter: grayscale(100%); transition: filter 300ms ease; }
.team-avatar {
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 101, 189, 0.08); color: var(--care-blue);
  font-weight: 600; letter-spacing: 0.04em;
}
.team-lead .team-avatar { font-size: 34px; }
.team-card .team-avatar { font-size: 26px; }

.team-group { margin-top: 44px; }
.team-group:first-of-type { margin-top: 8px; }
.team-group-head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--ink-10);
}
.team-group-org { font-size: 20px; font-weight: 600; margin: 0; color: var(--night-orbit); }
.team-group-sub { font-size: 14px; color: var(--ink-60); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  display: flex; flex-direction: column; align-items: center; height: 100%;
  background: var(--white); border: 1px solid var(--ink-10); border-radius: 18px;
  padding: 26px 24px; text-align: center;
  font: inherit; color: inherit; width: 100%; cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.team-card:hover { border-color: var(--night-orbit-300); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.team-card .team-photo { width: 96px; margin: 0 auto 16px; }
.tc-name { font-weight: 600; font-size: 16px; line-height: 1.3; min-height: 2.6em; display: flex; align-items: center; }
.tc-role { font-size: 13px; color: var(--care-blue); font-weight: 600; margin-top: 6px; }
.tc-org { font-size: 12px; color: var(--ink-60); letter-spacing: 0.08em; text-transform: uppercase; }
.tc-desc {
  font-size: 14px; color: var(--ink-60); margin: 12px 0 0; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden; min-height: calc(1.55em * 4);
}
.tc-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--care-blue); font-weight: 600; font-size: 13px;
  transition: gap 200ms ease;
}
.team-card .tc-more { margin-top: auto; padding-top: 16px; }
.team-card:hover .tc-more, .team-lead:hover .tc-more { gap: 10px; }

/* Team member popup */
.tm-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(14, 19, 38, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: tm-fade 180ms ease;
}
@keyframes tm-fade { from { opacity: 0; } to { opacity: 1; } }
.tm-dialog {
  position: relative; width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto;
  background: var(--white); border-radius: 22px; padding: 34px;
  box-shadow: 0 30px 80px rgba(14, 19, 38, 0.4);
  animation: tm-pop 220ms cubic-bezier(.2, .7, .3, 1);
}
@keyframes tm-pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.tm-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center; border-radius: 10px;
  border: 0; background: var(--off-white); color: var(--ink-60); cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.tm-close:hover { background: var(--ink-10); color: var(--ink); }
.tm-head { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; padding-right: 40px; }
.tm-photo { width: 96px; flex-shrink: 0; }
.tm-name { font-size: 22px; font-weight: 600; margin: 0 0 4px; line-height: 1.2; }
.tm-role { color: var(--care-blue); font-weight: 600; font-size: 14px; }
.tm-org { color: var(--ink-60); font-size: 13px; margin-top: 2px; }
.tm-bio { color: #3b4456; line-height: 1.7; margin: 0; }
.tm-contact { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--ink-10); }
.tm-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--care-blue); text-decoration: none; font-weight: 500; font-size: 14px; }
.tm-contact a:hover { color: var(--night-orbit); }
.tm-note { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--ink-10); color: var(--ink-60); font-size: 13.5px; font-style: italic; }
@media (max-width: 520px) {
  .tm-head { flex-direction: column; text-align: center; padding-right: 0; }
  .tm-photo { margin: 0 auto; }
  .tm-dialog { padding: 26px 20px; }
}
@media (prefers-reduced-motion: reduce) { .tm-overlay, .tm-dialog { animation: none; } }

/* ---------- Interactive EMG + IMU monitor ---------- */
.signal-viz {
  background: linear-gradient(160deg, #141b3a 0%, #0e1430 100%);
  border: 1px solid rgba(127, 196, 255, 0.18);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.sv-controls {
  display: inline-flex; gap: 4px; padding: 4px; flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06); border-radius: 12px; margin-bottom: 20px;
}
.sv-controls button {
  font: inherit; font-size: 14px; font-weight: 600;
  color: rgba(255, 255, 255, 0.7); background: transparent; border: 0;
  border-radius: 9px; padding: 9px 16px; cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.sv-controls button:hover { color: #fff; }
.sv-controls button.active { background: var(--care-blue); color: #fff; box-shadow: 0 4px 14px rgba(0, 101, 189, 0.4); }
.sv-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 18px; }
@media (max-width: 680px) { .sv-grid { grid-template-columns: 1fr; } }
.sv-scope {
  background: rgba(8, 12, 28, 0.6); border: 1px solid rgba(127, 196, 255, 0.14);
  border-radius: 14px; padding: 14px 16px;
}
.sv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sv-tag { font-family: ui-monospace, monospace; font-weight: 600; letter-spacing: 0.12em; color: #CFE6FF; font-size: 13px; }
.sv-rate { font-family: ui-monospace, monospace; font-size: 12px; color: rgba(207, 230, 255, 0.6); }
.sv-emg { width: 100%; height: 140px; display: block; }
.sv-imu { width: 100%; height: 180px; display: block; }
.sv-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; font-size: 12.5px; color: rgba(255, 255, 255, 0.6); }
.sv-val { font-family: ui-monospace, monospace; color: #7FC4FF; font-weight: 600; }
.sv-caption { color: rgba(255, 255, 255, 0.62); font-size: 13.5px; margin: 16px 0 0; }

/* ---------- Interactive research journey ---------- */
.journey-track { position: relative; padding-top: 8px; }
.jt-rail {
  position: absolute; top: 29px; left: 12.5%; right: 12.5%; height: 3px;
  background: var(--ink-10); border-radius: 3px; overflow: hidden;
}
.jt-fill { height: 100%; background: var(--care-blue); border-radius: 3px; transition: width 600ms cubic-bezier(.4, 0, .2, 1); }
.jt-rocket {
  position: absolute; top: 19px; transform: translateX(-50%); z-index: 2;
  color: var(--care-blue); transition: left 600ms cubic-bezier(.4, 0, .2, 1);
}
.jt-nodes { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.jt-node {
  justify-self: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: none; border: 0; padding: 0; width: 100%; cursor: pointer;
}
.jt-dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  background: var(--white); border: 2px solid var(--ink-10); color: var(--ink-60);
  box-shadow: 0 2px 8px rgba(14, 19, 38, 0.05);
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}
.jt-node.done .jt-dot { border-color: var(--care-blue); color: var(--care-blue); }
.jt-node.active .jt-dot {
  background: var(--care-blue); border-color: var(--care-blue); color: #fff;
  transform: scale(1.12); box-shadow: 0 6px 18px rgba(0, 101, 189, 0.35);
}
.jt-label { font-size: 13px; font-weight: 500; color: var(--ink-60); text-align: center; line-height: 1.25; }
.jt-node.active .jt-label { color: var(--ink); font-weight: 600; }
.journey-panel {
  margin-top: 36px; background: var(--white); border: 1px solid var(--ink-10);
  border-radius: 18px; padding: 32px; box-shadow: var(--shadow-card);
  animation: jp-in 400ms ease;
}
@keyframes jp-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.journey-panel .icon-tile { margin-bottom: 14px; }
.jp-step { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--care-blue); font-weight: 600; }
.journey-panel h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; margin: 6px 0 10px; }
.journey-panel p { color: var(--ink-60); margin: 0; max-width: 64ch; }
@media (prefers-reduced-motion: reduce) {
  .jt-fill, .jt-rocket, .jt-dot { transition: none; }
  .journey-panel { animation: none; }
}

/* News card */
.news-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.news-card .img-ph { border-radius: 0; border: none; aspect-ratio: 16 / 10; }
.news-card .news-body { padding: 26px 28px 32px; display: flex; flex-direction: column; gap: 10px; }
.news-card .news-meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--care-blue); font-weight: 500; }
.news-card h3 { font-size: 20px; font-weight: 600; line-height: 1.25; text-wrap: balance; }
.news-card p { color: var(--ink-60); margin: 0; font-size: 15px; }
