/* ============================================================
   INDORIV CLINICAL — Design System v2
   "Promoting the Science of Healthcare"

   Built strictly to Indoriv Clinical Brand Guidelines (2022):
   · Core palette   — Blue #060638 · White #FAFAFA · Black #111111
   · Brand palette  — Blue #3284FF (primary accent) · Teal #6CE0DF
                      Vibrant Blue #334BEB is on-brand but sits too
                      close to #060638 to read on dark fields, so the
                      brighter #3284FF carries the accent role.
   · Typography     — Open Sans (Light / Regular / Medium / Bold)
   · Proportions    — White dominant, balanced with dark blue.
                      Brand colours used sparingly, for moments of
                      support, assurance, delight and interaction.
   ============================================================ */

:root {
  /* ---- Core palette (accessibility, simplicity, consistency) ---- */
  --white:       #FAFAFA;
  --surface:     #FFFFFF;
  --navy:        #060638;   /* core dark blue */
  --navy-deep:   #04041F;   /* deeper shade for footer / overlays */
  --navy-lift:   #0C0C52;   /* lifted shade for gradients */
  --black:       #111111;

  /* ---- Brand palette (used sparingly) ---- */
  --accent:      #3284FF;   /* graphics, rules, icons, CTAs, hovers */
  --blue:        #3284FF;   /* alias */
  --teal:        #6CE0DF;   /* accent on dark fields only */

  /* ---- Derived neutrals ---- */
  --paper:       #FAFAFA;
  --paper-2:     #F1F2F9;
  --ink:         var(--navy);
  --ink-70:      rgba(6, 6, 56, .72);
  --ink-55:      rgba(6, 6, 56, .58);
  --ink-40:      rgba(6, 6, 56, .40);
  --line:        rgba(6, 6, 56, .10);
  --line-strong: rgba(6, 6, 56, .20);

  /* ---- Tints (soft washes of brand colour) ---- */
  --accent-soft: rgba(50, 132, 255, .10);
  --blue-soft:   rgba(50, 132, 255, .10);
  --teal-soft:   rgba(108, 224, 223, .16);

  /* ---- Status ---- */
  --success:     #1E7A55;
  --error:       #C0392B;

  /* ---- Type ---- */
  --font-display: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Rhythm ---- */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* ---- Elevation ---- */
  --shadow-sm: 0 1px 2px rgba(6, 6, 56, .04), 0 4px 12px -6px rgba(6, 6, 56, .10);
  --shadow-md: 0 2px 4px rgba(6, 6, 56, .03), 0 18px 40px -22px rgba(6, 6, 56, .22);
  --shadow-lg: 0 4px 8px rgba(6, 6, 56, .03), 0 40px 80px -40px rgba(6, 6, 56, .32);

  /* ---- Motion ---- */
  --ease-out:   cubic-bezier(.22, 1, .36, 1);
  --ease-inout: cubic-bezier(.65, 0, .35, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --dur: .75s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 2000;
  background: var(--navy); color: #fff; padding: .6rem 1.2rem;
  border-radius: 8px; transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ----------
   Open Sans throughout. Headings gain presence from weight and
   tightened tracking rather than a second typeface. */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.h-xl { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.032em; }
.h-lg { font-size: clamp(1.95rem, 4.2vw, 3.1rem); letter-spacing: -0.028em; }
.h-md { font-size: clamp(1.45rem, 2.5vw, 1.95rem); letter-spacing: -0.02em; }
.h-sm { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }

/* Per the manual: B/W type paired with a coloured mark. On light
   fields the micro-type is navy and the rule carries the blue. */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; flex: none;
  background: var(--accent); border-radius: 2px;
  transform-origin: left; transform: scaleX(1);
  transition: transform .8s .2s var(--ease-out);
}
/* draw the rule as the block scrolls into view */
[data-reveal] .eyebrow::before { transform: scaleX(0); }
[data-reveal].is-inview .eyebrow::before { transform: scaleX(1); }
.on-dark .eyebrow, .eyebrow.on-dark,
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow,
.cta-banner .eyebrow, .stats-band .eyebrow { color: var(--teal); }
.on-dark .eyebrow::before, .eyebrow.on-dark::before,
.section--dark .eyebrow::before, .hero .eyebrow::before, .page-hero .eyebrow::before,
.cta-banner .eyebrow::before, .stats-band .eyebrow::before { background: currentColor; }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  font-weight: 300; line-height: 1.65;
  color: var(--ink-70); max-width: 50ch;
}
.muted { color: var(--ink-55); }
em.accent {
  font-style: normal; font-weight: 700; color: var(--ink);
  box-shadow: inset 0 -.42em 0 var(--accent-soft);
  border-bottom: 2px solid var(--accent);
}
.section--dark em.accent, .cta-banner em.accent {
  color: #fff; box-shadow: none; border-bottom-color: var(--teal);
}
/* inside a masked line-reveal a bottom border would be clipped —
   carry the emphasis in colour instead */
.hero em.accent, .page-hero em.accent {
  color: var(--teal); box-shadow: none; border-bottom: 0;
}

/* ---------- Layout ---------- */
.container { width: min(1200px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--wide { width: min(1360px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section-pad); position: relative; }
.section--dark {
  background: var(--navy); color: rgba(255,255,255,.78);
  position: relative; overflow: hidden;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lede { color: rgba(255,255,255,.68); }
.section--dark .muted { color: rgba(255,255,255,.55); }
.section--surface { background: var(--surface); }
.section--tint { background: linear-gradient(180deg, var(--surface), var(--paper-2)); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lede { margin-inline: auto; }
.section-head--split {
  max-width: none; display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: flex-end; justify-content: space-between;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Hairline divider used to structure white space */
.rule { height: 1px; background: var(--line); border: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: transform .5s var(--ease-out);
}
.site-nav__inner {
  width: min(1360px, 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.4rem;
  transition: padding .5s var(--ease-out);
}
.site-nav::before {
  content: ""; position: absolute; inset: 0;
  background: #fff;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  opacity: 0; transition: opacity .5s var(--ease-out), border-color .5s;
}
.site-nav.is-scrolled::before { opacity: 1; border-bottom-color: var(--line); }
.site-nav.is-scrolled .site-nav__inner { padding-block: .8rem; }
.site-nav.is-hidden { transform: translateY(-101%); }

/* scroll progress hairline */
.site-nav__progress {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--blue) 55%, var(--teal));
  opacity: 0; transition: opacity .4s;
}
.site-nav.is-scrolled .site-nav__progress { opacity: 1; }

/* Official lockup from the brand manual. Two exposures of the same
   artwork — black type for light fields, white type for dark — swapped
   in place so the mark never changes colour. Clear space around the
   lockup is kept equal to the width of the logo mark. */
.brand {
  display: inline-flex; align-items: center; position: relative; z-index: 2;
  padding-inline: .2rem;
}
.brand__logo {
  display: block; width: auto; height: 60px; flex: none;
  object-fit: contain; object-position: left center;
  transition: transform .5s var(--ease-spring), opacity .4s var(--ease-out);
}
.brand:hover .brand__logo { transform: scale(1.025); }
/* stack the two exposures so swapping never reflows the nav */
.brand__logo--rev { position: absolute; left: .2rem; top: 50%; translate: 0 -50%; }
.brand__logo--ink { opacity: 1; }
.brand__logo--rev { opacity: 0; }
.nav--on-dark:not(.is-scrolled) .brand__logo--ink { opacity: 0; }
.nav--on-dark:not(.is-scrolled) .brand__logo--rev { opacity: 1; }
@media (max-width: 560px) { .brand__logo { height: 32px; } }

.site-footer .brand__logo { height: 55px; }
.footer-brand .brand { margin-bottom: .3rem; }

.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 1.9vw, 1.9rem); position: relative; z-index: 2; }
.nav-links a:not(.btn) {
  position: relative; font-size: .92rem; font-weight: 500;
  color: var(--ink-70); padding-block: .35rem;
  transition: color .3s;
}
.nav-links a:not(.btn):hover, .nav-links a.is-active { color: var(--ink); }
.nav--on-dark:not(.is-scrolled) .nav-links a:not(.btn) { color: rgba(255,255,255,.76); }
.nav--on-dark:not(.is-scrolled) .nav-links a:not(.btn):hover,
.nav--on-dark:not(.is-scrolled) .nav-links a.is-active { color: #fff; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--accent);
  border-radius: 2px; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav--on-dark:not(.is-scrolled) .nav-links a:not(.btn)::after { background: var(--teal); }
.nav-links a:not(.btn):hover::after,
.nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none; position: relative; z-index: 1102;
  width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .4s var(--ease-out), opacity .25s, background .3s;
}
.nav--on-dark:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav-toggle span { background: #fff; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: #060638;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 8vw, 5rem);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  visibility: hidden;
  transition: clip-path .8s var(--ease-inout), visibility 0s .8s;
}
body.menu-open .mobile-menu {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  visibility: visible; transition: clip-path .8s var(--ease-inout);
}
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 7.5vw, 2.9rem); letter-spacing: -.03em;
  color: #fff; padding-block: .4rem; display: inline-block; width: fit-content;
  opacity: 0; transform: translateY(26px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), color .3s;
}
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--teal); }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
.mobile-menu__meta {
  margin-top: 2.5rem; color: rgba(255,255,255,.45); font-size: .9rem;
  opacity: 0; transition: opacity .5s .4s;
}
body.menu-open .mobile-menu__meta { opacity: 1; }
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   BUTTONS
   Default = core navy. Brand blue reserved for primary CTAs.
   ============================================================ */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-sweep: var(--accent);
  position: relative; display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2rem; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: .93rem; letter-spacing: .005em;
  overflow: hidden; isolation: isolate;
  transition: color .35s var(--ease-out), box-shadow .4s var(--ease-out), background .3s;
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--btn-sweep);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover { box-shadow: 0 16px 34px -16px rgba(50, 132, 255, .55); }
.btn:active { box-shadow: 0 6px 14px -8px rgba(6, 6, 56, .45); }
.btn .btn__arrow { transition: transform .4s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* Primary CTA — brand blue chip with navy ink (5.4:1), sweeping to
   navy-on-white. Reads clearly on both light and dark fields. */
.btn--primary { --btn-bg: var(--accent); --btn-fg: var(--navy); --btn-sweep: var(--navy);color: #fff; }
.btn--primary:hover { --btn-fg: #fff; box-shadow: 0 16px 34px -16px rgba(6, 6, 56, .55); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--navy); --btn-sweep: var(--accent); }
.btn--light:hover { --btn-fg: #fff; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy); --btn-sweep: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn--ghost:hover { --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px var(--navy); }
.section--dark .btn--ghost, .hero .btn--ghost, .page-hero .btn--ghost,
.cta-banner .btn--ghost {
  --btn-fg: #fff; --btn-sweep: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3);
}
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover,
.page-hero .btn--ghost:hover, .cta-banner .btn--ghost:hover {
  --btn-fg: var(--navy); box-shadow: inset 0 0 0 1.5px #fff;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .92rem; color: var(--ink);
  position: relative; width: fit-content;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.link-arrow svg { stroke: var(--accent); transition: transform .35s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow, .hero .link-arrow,
.page-hero .link-arrow, .cta-banner .link-arrow { color: var(--teal); }
.section--dark .link-arrow::after, .hero .link-arrow::after,
.page-hero .link-arrow::after, .cta-banner .link-arrow::after { background: currentColor; }
.section--dark .link-arrow svg, .hero .link-arrow svg,
.page-hero .link-arrow svg, .cta-banner .link-arrow svg { stroke: currentColor; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background:
    radial-gradient(1100px 620px at 84% -12%, rgba(108, 224, 223, .18), transparent 62%),
    radial-gradient(900px 700px at -12% 112%, rgba(50, 132, 255, .28), transparent 58%),
    linear-gradient(158deg, var(--navy-deep) 0%, var(--navy) 52%, var(--navy-lift) 100%);
  color: #fff; overflow: hidden;
  /* compact enough that the whole banner sits inside one viewport,
     including the video and chip row, on ordinary laptop heights */
  padding-block: clamp(6.5rem, 11vw, 8.25rem) clamp(2.5rem, 5vw, 3.5rem);
}
.hero--inner { min-height: 72vh; padding-block: 10rem 5rem; }
.hero .container { position: relative; z-index: 3; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .lede { color: rgba(255,255,255,.72); margin-top: 1.15rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }

/* ---- Split banner: copy left, company film right ---- */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
/* narrower column — ease the display size so the headline holds two lines */
.hero__grid .hero__copy h1 {
  max-width: 14ch;
  font-size: clamp(2.05rem, 3.4vw, 3.05rem);
}
.hero__grid .hero__copy .lede { max-width: 44ch; font-size: clamp(1rem, 1.2vw, 1.1rem); }
.hero__grid .hero__copy .eyebrow { margin-bottom: .7rem; }
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero__grid .hero__copy h1,
  .hero__grid .hero__copy .lede { max-width: none; }
}

.hero__media { position: relative; margin: 0; }
.hero__media-note {
  margin-top: .7rem; font-size: .78rem; font-weight: 300;
  color: rgba(255,255,255,.5); letter-spacing: .01em;
}

.hero-video {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  /* a touch shorter than 16:10 so the whole banner clears one viewport */
  aspect-ratio: 16 / 9.3;
  background: linear-gradient(150deg, var(--navy-lift), var(--navy-deep));
  box-shadow: 0 50px 100px -45px rgba(0, 0, 0, .85),
              inset 0 0 0 1px rgba(255, 255, 255, .12);
  isolation: isolate;
}
.hero-video__el {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* lift the film out of the navy so it never reads as a black hole */
  filter: saturate(1.06) contrast(1.04) brightness(1.06);
}
/* brand-tinted wash so the footage sits inside the palette */
.hero-video::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(200deg, rgba(50, 132, 255, .16), transparent 45%),
    linear-gradient(0deg, rgba(6, 6, 56, .58), transparent 52%);
}
/* soft outer glow that keeps the right side of the banner alive */
.hero-video__glow {
  position: absolute; inset: -34% -20% auto -20%; height: 78%; z-index: 0;
  background: radial-gradient(closest-side, rgba(108, 224, 223, .30), transparent 72%);
  filter: blur(12px); pointer-events: none;
}

.hero-video__bar {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.15rem;
}
.hero-video__live {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(6, 6, 56, .5); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  padding: .4rem .8rem; border-radius: 999px;
}
.hero-video__live i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(108, 224, 223, .7);
  animation: livePulse 2.4s var(--ease-inout) infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(108, 224, 223, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(108, 224, 223, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 224, 223, 0); }
}
.hero-video__controls { display: flex; gap: .5rem; }
.hero-video__btn {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  background: rgba(6, 6, 56, .5); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  transition: background .3s, border-color .3s, transform .35s var(--ease-spring);
}
.hero-video__btn:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.hero-video__btn svg { grid-area: 1 / 1; }
/* icon state swapping */
.hero-video__btn .ico-play,
.hero-video__btn .ico-sound { display: none; }
.hero-video.is-paused .hero-video__btn .ico-play { display: block; }
.hero-video.is-paused .hero-video__btn .ico-pause { display: none; }
.hero-video.has-sound .hero-video__btn .ico-sound { display: block; }
.hero-video.has-sound .hero-video__btn .ico-muted { display: none; }

@media (max-width: 560px) { .hero-video { aspect-ratio: 16 / 11; } }

/* subtle grain for depth on dark fields */
.hero::after, .page-hero::after, .cta-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* headline line reveal */
.line-reveal .line { display: block; overflow: hidden; }
.line-reveal .line > span {
  display: block; transform: translateY(110%);
  transition: transform 1.05s var(--ease-out);
}
.line-reveal.is-inview .line > span { transform: translateY(0); }
.line-reveal .line:nth-child(2) > span { transition-delay: .09s; }
.line-reveal .line:nth-child(3) > span { transition-delay: .18s; }

/* Animated art layer */
.hero__art { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .9; }
.hero__art svg { width: 100%; height: 100%; }

.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
}
.hero__scroll::after {
  content: ""; width: 1.5px; height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,.65), transparent);
  animation: scrollPulse 2.2s var(--ease-inout) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* hero badge chips */
.hero__chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.chip {
  padding: .48rem 1.05rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.78);
  backdrop-filter: blur(6px);
  transition: border-color .35s, background .35s, transform .35s var(--ease-out), color .3s;
}
.chip:hover {
  border-color: var(--teal); background: rgba(108,224,223,.12);
  color: #fff; transform: translateY(-2px);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  background: var(--navy); color: rgba(255,255,255,.8);
  overflow: hidden; padding-block: 1.15rem;
  border-block: 1px solid rgba(255,255,255,.07);
}
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 3.5rem;
  font-size: .98rem; font-weight: 500; letter-spacing: .01em; white-space: nowrap;
}
.marquee__track i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex: none; font-style: normal;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.6rem);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .35s;
  overflow: hidden; isolation: isolate;
}
/* cursor-tracked spotlight (coords set in JS) */
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 62%);
  transition: opacity .45s;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(50, 132, 255, .18);
}
.card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue) 55%, var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.card:hover::after { transform: scaleX(1); }
.card h3 { margin-block: 1.25rem .7rem; }
.card p { color: var(--ink-55); font-size: .97rem; }
.card .link-arrow { margin-top: 1.45rem; }

.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  transition: background .4s, color .4s, transform .5s var(--ease-spring);
}
.card:hover .card__icon {
  background: var(--accent); color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

/* Service feature rows */
.feature-row {
  display: flex; gap: 1.15rem; align-items: flex-start;
  padding-block: 1.15rem; border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease-out);
}
.feature-row:last-child { border-bottom: none; }
.feature-row:hover { padding-left: .4rem; }
.feature-row__num {
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  color: var(--accent); padding-top: .38rem; flex: none; width: 2.2rem;
}
.feature-row h4 { font-size: 1.04rem; font-weight: 600; margin-bottom: .25rem; letter-spacing: -.012em; }
.feature-row p { font-size: .94rem; color: var(--ink-55); }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 2; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; } }

.stat { text-align: left; padding-left: 1.5rem; position: relative; }
.stat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--teal), rgba(108,224,223,0));
  transform: scaleY(0); transform-origin: top;
  transition: transform .9s var(--ease-out);
}
.stat.is-inview::before, .is-inview .stat::before { transform: scaleY(1); }
.stat__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.35rem, 5vw, 3.6rem); line-height: 1; color: #fff;
  letter-spacing: -.04em; display: flex; align-items: baseline;
  font-variant-numeric: tabular-nums;
}
.stat__value .suffix { color: var(--teal); font-size: .5em; margin-left: .12em; letter-spacing: -.01em; }
.stat__label { margin-top: .75rem; font-size: .88rem; font-weight: 300; color: rgba(255,255,255,.6); max-width: 22ch; }

/* Disparity bars */
.disparity { margin-top: 1.5rem; display: grid; gap: 1.6rem; }
.disparity__row { display: grid; gap: .5rem; }
.disparity__meta { display: flex; justify-content: space-between; font-size: .9rem; align-items: baseline; }
.disparity__meta strong { font-size: 1.5rem; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.disparity__bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,.1); overflow: hidden; }
.disparity__fill { height: 100%; width: 0; border-radius: inherit; transition: width 1.7s var(--ease-inout); }
.disparity__fill--burden { background: linear-gradient(90deg, var(--accent), var(--blue)); }
.disparity__fill--trials { background: linear-gradient(90deg, var(--blue), var(--teal)); }

/* ============================================================
   SPLIT MEDIA / VISUALS
   ============================================================ */
.media-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(148deg, var(--navy) 0%, var(--accent) 130%);
  box-shadow: var(--shadow-md);
}
.media-frame--tall { aspect-ratio: 3.4 / 4; }
.media-frame svg.fill { position: absolute; inset: 0; width: 100%; height: 100%; }
.media-frame__badge {
  position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-radius: var(--radius-sm); padding: 1rem 1.35rem;
  box-shadow: 0 24px 48px -24px rgba(6,6,56,.5);
  transition: transform .5s var(--ease-out);
}
.media-frame:hover .media-frame__badge { transform: translateY(-4px); }
.media-frame__badge strong { font-size: 1.45rem; font-weight: 700; letter-spacing: -.03em; display: block; line-height: 1.1; color: var(--navy); }
.media-frame__badge span { font-size: .78rem; color: var(--ink-55); }

/* floating decorative orb */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 35% 35%, rgba(108,224,223,.22), transparent 70%);
  filter: blur(2px);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .35s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(50,132,255,.16); }
.team-card__photo { aspect-ratio: 1 / .82; display: grid; place-items: center; position: relative; overflow: hidden; }
.team-card__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.team-card__photo .avatar { position: relative; z-index: 1; }
.team-card__photo .avatar {
  width: 94px; height: 94px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.9rem;
  letter-spacing: -.02em; color: #fff;
  transition: transform .55s var(--ease-spring);
}
.team-card:hover .avatar { transform: scale(1.09) rotate(-3deg); }
.team-card__body { padding: 1.4rem 1.6rem 1.7rem; }
.team-card__body h3 { font-weight: 600; font-size: 1.05rem; letter-spacing: -.015em; }
.team-card__body span { font-size: .84rem; color: var(--ink-55); font-weight: 600; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(var(--accent), var(--teal));
  border-radius: 2px;
}
.timeline li { position: relative; padding-bottom: 1.85rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -2rem; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--accent);
  transition: transform .4s var(--ease-spring), background .3s;
}
.timeline li:hover::before { transform: scale(1.25); background: var(--accent); }
.timeline h4 { font-weight: 600; font-size: 1.01rem; }
.timeline p { font-size: .94rem; color: var(--ink-55); }

/* Values pills */
.values { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.values span {
  padding: .55rem 1.2rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(50, 132, 255, .25);
  font-weight: 600; font-size: .86rem;
  transition: transform .35s var(--ease-out), background .3s, color .3s;
}
.values span:hover { transform: translateY(-3px); background: var(--accent); color: #fff; }

/* Vision / Mission split */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 800px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card { border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.vm-card--vision { background: var(--navy); color: rgba(255,255,255,.78); }
.vm-card--vision h3, .vm-card--vision blockquote { color: #fff; }
.vm-card--mission { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.vm-card blockquote {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.42; letter-spacing: -.018em; margin-block: 1rem 1.2rem;
}
.vm-card p { font-size: .96rem; }
.vm-card svg.corner { position: absolute; right: -20px; bottom: -20px; opacity: .09; width: 160px; height: 160px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-shell {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.section--dark .form-shell { border-color: rgba(255,255,255,.1); }

/* shared rhythm below the field grid — keeps every form identical */
.form-body > .consent { margin-top: 1.4rem; }
.form-body > .btn { margin-top: 1.4rem; }
.form-body > .consent + .btn { margin-top: 1.2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; column-gap: 1.1rem; row-gap: .85rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { position: relative; display: flex; flex-direction: column; min-width: 0; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.1rem .85rem .4rem;
  font-size: .875rem; line-height: 1.35;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field input, .field select { height: 2.95rem; }
.field textarea { min-height: 88px; padding-top: 1.15rem; resize: vertical; }
.field > label {
  position: absolute; left: .85rem; top: .82rem;
  font-size: .875rem; font-weight: 400; color: var(--ink-55); pointer-events: none;
  transition: all .28s var(--ease-out);
}
.field.select > label, .field.file-field > label, .field.pill-field > label {
  position: static; display: block; margin-bottom: .35rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-55);
}
.field select {
  padding: .5rem 2.2rem .5rem .85rem; appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23060638' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(50, 132, 255, .12);
}
.field input:focus + label, .field input.has-value + label,
.field textarea:focus + label, .field textarea.has-value + label {
  top: .34rem; font-size: .62rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink); font-weight: 700;
}

.field .field-msg {
  display: block; font-size: .72rem; margin-top: .3rem; min-height: 1em;
  color: var(--error); opacity: 0; transform: translateY(-4px);
  transition: opacity .3s, transform .3s;
}
.field.is-error .field-msg { opacity: 1; transform: none; }
.field.is-error input, .field.is-error select, .field.is-error textarea {
  border-color: var(--error); background: #FDF4F2;
  animation: shake .42s var(--ease-out);
}
.field.is-error input:focus, .field.is-error select:focus, .field.is-error textarea:focus { box-shadow: 0 0 0 4px rgba(192, 57, 43, .12); }
.field.is-valid input, .field.is-valid select, .field.is-valid textarea { border-color: var(--success); }
.field.is-valid::after {
  content: ""; position: absolute; right: .85rem; top: .95rem;
  width: 15px; height: 15px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E7A55' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.field.select.is-valid::after { top: auto; bottom: 1.85rem; right: 2.2rem; }
.field.file-field.is-valid::after { top: auto; bottom: 1.5rem; right: .9rem; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* radio pills */
.pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill-group label { position: static; margin: 0; cursor: pointer; }
.pill-group input { position: absolute; opacity: 0; pointer-events: none; }
.pill-group .pill {
  display: inline-block; padding: .5rem 1.15rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); font-weight: 500; font-size: .82rem;
  transition: all .3s var(--ease-out); user-select: none;
}
.pill-group .pill:hover { border-color: var(--accent); color: var(--accent); }
.pill-group input:checked + .pill {
  background: var(--navy); color: #fff; border-color: var(--navy); transform: scale(1.03);
}
.pill-group input:focus-visible + .pill { outline: 2px solid var(--accent); outline-offset: 2px; }

/* file dropzone */
.dropzone {
  border: 2px dashed var(--line-strong); border-radius: var(--radius-sm);
  padding: 1.15rem; text-align: center; cursor: pointer;
  transition: border-color .3s, background .3s;
  color: var(--ink-55); font-size: .82rem;
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--accent); background: var(--accent-soft); }
.dropzone input { display: none; }
.dropzone strong { color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.dropzone.has-file { border-style: solid; border-color: var(--success); background: #F1F8F4; color: var(--ink); }

/* consent checkbox */
.consent { display: flex; gap: .65rem; align-items: flex-start; cursor: pointer; font-size: .82rem; line-height: 1.5; color: var(--ink-55); }
.consent input { position: absolute; opacity: 0; }
.consent .box {
  flex: none; width: 18px; height: 18px; margin-top: .1rem;
  border: 2px solid var(--line-strong); border-radius: 6px;
  display: grid; place-items: center; transition: all .25s var(--ease-out);
}
.consent .box svg { width: 12px; height: 12px; opacity: 0; transform: scale(.4); transition: all .25s var(--ease-out); stroke: #fff; }
.consent input:checked + .box { background: var(--accent); border-color: var(--accent); }
.consent input:checked + .box svg { opacity: 1; transform: scale(1); }
.consent input:focus-visible + .box { outline: 2px solid var(--accent); outline-offset: 2px; }
.consent.is-error .box { border-color: var(--error); animation: shake .4s; }

/* form success state */
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; }
.form-success.is-visible { display: block; animation: successIn .65s var(--ease-out); }
@keyframes successIn { from { opacity: 0; transform: translateY(20px) scale(.97); } }
.form-success__icon {
  width: 74px; height: 74px; margin: 0 auto 1.4rem; border-radius: 50%;
  background: var(--accent-soft); display: grid; place-items: center;
}
.form-success__icon svg { stroke: var(--accent); }
.form-success__icon svg path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s .3s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-success h3 { margin-bottom: .6rem; }
.form-success p { color: var(--ink-55); max-width: 40ch; margin-inline: auto; }

/* ============================================================
   TABS
   ============================================================ */
.tabs__nav {
  display: inline-flex; position: relative; gap: 0;
  background: var(--paper-2); border-radius: 999px; padding: 5px;
  margin-bottom: 2rem;
}
.tabs__nav button {
  position: relative; z-index: 2; padding: .75rem 1.8rem;
  border-radius: 999px; font-weight: 600; font-size: .92rem;
  color: var(--ink-55); transition: color .3s;
}
.tabs__nav button.is-active { color: var(--navy); }
.tabs__indicator {
  position: absolute; top: 5px; bottom: 5px; left: 0; z-index: 1;
  background: #fff; border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(6,6,56,.2);
  transition: left .45s var(--ease-out), width .45s var(--ease-out);
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: panelIn .55s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .35s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(50,132,255,.16); }
.post-card__cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__cover svg, .post-card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.post-card:hover .post-card__cover svg, .post-card:hover .post-card__cover img { transform: scale(1.06); }
.post-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  padding: .3rem .85rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); box-shadow: inset 0 0 0 1px rgba(50, 132, 255, .3);
}
.post-card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-card__body time { font-size: .78rem; color: var(--ink-40); margin-bottom: .5rem; letter-spacing: .04em; }
.post-card__body h3 { font-size: 1.16rem; line-height: 1.34; margin-bottom: .6rem; transition: color .3s; }
.post-card:hover h3 { color: var(--accent); }
.post-card__body p { font-size: .92rem; color: var(--ink-55); flex: 1; }
.post-card__body .link-arrow { margin-top: 1.2rem; font-size: .86rem; }

.post-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.post-card--featured .post-card__cover { aspect-ratio: auto; min-height: 320px; }
.post-card--featured .post-card__body { padding: clamp(1.8rem, 4vw, 3rem); justify-content: center; }
.post-card--featured h3 { font-size: clamp(1.45rem, 2.5vw, 1.95rem); }
@media (max-width: 800px) { .post-card--featured { grid-template-columns: 1fr; } .post-card--featured .post-card__cover { min-height: 220px; } }

/* Article page */
.article-body { max-width: 1000px; margin-inline: auto; }
.article-body > * + * { margin-top: 1.45rem; }
.article-body h2 { font-size: clamp(1.45rem, 2.5vw, 1.85rem); margin-top: 2.9rem; }
.article-body p { color: var(--ink-70); font-weight: 400; }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: .5rem 0 .5rem 1.6rem;
  font-weight: 300; font-size: 1.3rem; line-height: 1.48;
  letter-spacing: -.015em; color: var(--ink);
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  font-size: .86rem; color: rgba(255,255,255,.62); margin-top: 1.6rem;
}
.article-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); font-style: normal; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.45rem 0; text-align: left;
  font-weight: 600; font-size: 1.05rem; letter-spacing: -.012em;
  transition: color .3s;
}
.accordion__head:hover { color: var(--accent); }
.accordion__icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); display: grid; place-items: center;
  transition: transform .45s var(--ease-out), background .3s, border-color .3s;
}
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.accordion__icon svg { stroke: currentColor; }
.accordion__item.is-open .accordion__icon svg { stroke: #fff; }
.accordion__body { display: none; padding-bottom: 1.6rem; color: var(--ink-55); max-width: 62ch; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(700px 420px at 88% 0%, rgba(108,224,223,.24), transparent 62%),
    radial-gradient(600px 400px at 5% 100%, rgba(50,132,255,.35), transparent 60%),
    linear-gradient(138deg, var(--navy-deep), var(--navy) 58%, var(--navy-lift));
  color: #fff; padding: clamp(2.75rem, 6vw, 5.25rem);
  text-align: center;
}
.cta-banner > * { position: relative; z-index: 3; }
.cta-banner h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 52ch; margin: 1.2rem auto 2.3rem; font-weight: 300; }
.cta-banner .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-panel {
  display: grid; grid-template-columns: 380px 1fr; gap: 0;
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .contact-panel { grid-template-columns: 1fr; } }
.contact-panel__info {
  background: linear-gradient(162deg, var(--navy-deep), var(--navy) 68%, var(--navy-lift));
  color: rgba(255,255,255,.78); padding: clamp(2rem, 4vw, 3rem);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.contact-panel__info h3 { color: #fff; margin-bottom: .5rem; }
.contact-panel__info > p { font-size: .94rem; color: rgba(255,255,255,.6); font-weight: 300; }
.contact-list { margin-top: 2.2rem; display: grid; gap: 1.5rem; position: relative; z-index: 2; }
.contact-list a { transition: color .3s; }
.contact-list a:hover { color: var(--teal); }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; font-size: .94rem; }
.contact-list li svg { flex: none; margin-top: .2rem; stroke: var(--teal); }
.contact-panel__form { padding: clamp(2rem, 4vw, 3rem); }

.socials { display: flex; gap: .8rem; margin-top: auto; padding-top: 2.5rem; position: relative; z-index: 2; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center;
  transition: all .35s var(--ease-out);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-4px); }
.socials svg { stroke: #fff; }
.socials--light a { border-color: var(--line-strong); }
.socials--light svg { stroke: var(--navy); }
.socials--light a:hover svg { stroke: #fff; }

/* map */
.map-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 21 / 8; position: relative; background: var(--surface);
}
.map-card svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; left: 50%; top: 44%; transform: translate(-50%, -100%); z-index: 2; }
.map-pin .dot {
  width: 18px; height: 18px; background: var(--accent); border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); box-shadow: 0 4px 12px rgba(50,132,255,.5);
  animation: pinBounce 2.4s var(--ease-inout) infinite;
}
.map-pin .pulse {
  position: absolute; left: 50%; top: 110%; transform: translateX(-50%);
  width: 26px; height: 8px; border-radius: 50%;
  background: rgba(50,132,255,.3);
  animation: pinPulse 2.4s var(--ease-inout) infinite;
}
@keyframes pinBounce { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes pinPulse { 0%,100% { transform: translateX(-50%) scale(1); opacity: .5; } 50% { transform: translateX(-50%) scale(.6); opacity: .25; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.62);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.09);
  position: relative; z-index: 2;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: #fff; font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-grid ul { display: grid; gap: .58rem; }
.footer-grid ul a { font-size: .93rem; font-weight: 300; transition: color .3s, padding-left .35s var(--ease-out); }
.footer-grid ul a:hover { color: var(--teal); padding-left: 6px; }
.footer-brand p { font-size: .92rem; font-weight: 300; max-width: 34ch; margin-top: 1.1rem; }
.footer-contact li { display: flex; gap: .7rem; font-size: .91rem; font-weight: 300; margin-bottom: .8rem; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: .25rem; stroke: var(--teal); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.8rem; font-size: .8rem; color: rgba(255,255,255,.38);
  position: relative; z-index: 2;
}
.footer-bottom a:hover { color: var(--teal); }
.site-footer .watermark {
  position: absolute; left: 50%; bottom: -.25em; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(5rem, 16vw, 14rem); letter-spacing: -.05em;
  line-height: 1; color: rgba(255,255,255,.03); white-space: nowrap;
  pointer-events: none; user-select: none;
}

/* back to top */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), background .3s;
  box-shadow: 0 14px 32px -12px rgba(6,6,56,.55);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--accent); }

/* small button variant — cookie banner actions */
.btn--sm { padding: .62rem 1.3rem; font-size: .82rem; gap: .4rem; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; z-index: 950;
  max-width: 900px; margin-inline: auto;
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.5rem;
  opacity: 0; transform: translateY(24px) scale(.98);
  pointer-events: none;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.cookie-banner.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.cookie-banner__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.5rem;
}
.cookie-banner__text { flex: 1 1 320px; margin: 0; font-size: .88rem; line-height: 1.55; color: rgba(255,255,255,.78); }
.cookie-banner__text a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: .7rem; flex: 0 0 auto; }
.cookie-banner .btn--ghost { --btn-fg: #fff; --btn-sweep: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.cookie-banner .btn--ghost:hover { --btn-fg: var(--navy); box-shadow: inset 0 0 0 1.5px #fff; }
@media (max-width: 560px) {
  .cookie-banner { left: .8rem; right: .8rem; bottom: .8rem; padding: 1.1rem 1.2rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 0; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity .01s linear; }
}

/* ============================================================
   JOURNEY OF A SAMPLE — chain of custody
   A rail that draws itself in, nodes that land in sequence.
   ============================================================ */
.journey { background: var(--surface); overflow: hidden; }
.journey__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(760px 420px at 82% -10%, rgba(108, 224, 223, .16), transparent 62%),
    radial-gradient(680px 460px at 6% 108%, rgba(50, 132, 255, .12), transparent 60%);
}
.journey .container { position: relative; z-index: 1; }

.journey__head { align-items: flex-start; gap: clamp(1.5rem, 4vw, 4rem); }
.journey__intro { max-width: 46ch; }
.journey__seal {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.1rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(50, 132, 255, .25);
  padding: .5rem 1rem; border-radius: 999px;
}
.journey__seal svg { color: var(--accent); flex: none; }

/* ---- the track ---- */
.journey__track {
  --node: 76px;
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  counter-reset: stage;
}
/* rail: full-width groove + a fill that draws left to right */
.journey__track::before,
.journey__track::after {
  content: ""; position: absolute; z-index: 0;
  top: calc(var(--node) / 2); height: 2px;
  /* tucked under the first and last nodes so the ends never show */
  left: 8%; right: 8%; border-radius: 2px;
}
.journey__track::before { background: var(--line); }
.journey__track::after {
  background: linear-gradient(90deg, var(--accent), var(--accent) 62%, var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.9s .15s var(--ease-inout);
}
.journey__track.is-inview::after { transform: scaleX(1); }

.journey__step {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  height: 100%;
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.journey__track.is-inview .journey__step { opacity: 1; transform: none; }
.journey__step:nth-child(1) { transition-delay: .25s; }
.journey__step:nth-child(2) { transition-delay: .55s; }
.journey__step:nth-child(3) { transition-delay: .85s; }
.journey__step:nth-child(4) { transition-delay: 1.15s; }
.journey__step:nth-child(5) { transition-delay: 1.45s; }

.journey__node {
  position: relative; flex: none;
  width: var(--node); height: var(--node); border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); color: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(50, 132, 255, .35), var(--shadow-sm);
  transition: transform .5s var(--ease-spring), box-shadow .45s, background .45s, color .45s;
}
.journey__node svg { position: relative; z-index: 2; }
/* halo that expands on hover */
.journey__ring {
  position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(50, 132, 255, .35);
  opacity: 0; transform: scale(.82);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.journey__step:hover .journey__node {
  transform: translateY(-6px) scale(1.06);
  background: var(--accent); color: #fff;
  box-shadow: inset 0 0 0 2px var(--accent), 0 18px 34px -16px rgba(50, 132, 255, .6);
}
.journey__step:hover .journey__ring { opacity: 1; transform: scale(1); }

/* the cold step and the terminal step carry their own identity */
.journey__step--cold .journey__node {
  color: #12807E;
  box-shadow: inset 0 0 0 2px rgba(108, 224, 223, .7), var(--shadow-sm);
  background: rgba(108, 224, 223, .14);
}
.journey__step--cold:hover .journey__node {
  background: var(--teal); color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--teal), 0 18px 34px -16px rgba(108, 224, 223, .75);
}
.journey__step--cold .journey__ring { border-color: rgba(108, 224, 223, .6); }
.journey__step--end .journey__node {
  background: var(--navy); color: var(--teal);
  box-shadow: inset 0 0 0 2px var(--navy), var(--shadow-md);
}
.journey__step--end:hover .journey__node {
  background: var(--navy); color: #fff;
  box-shadow: inset 0 0 0 2px var(--navy), 0 18px 34px -16px rgba(6, 6, 56, .6);
}
.journey__step--end .journey__ring { border-color: rgba(6, 6, 56, .3); }

/* Body stretches to the tallest card in the row (grid stretches
   .journey__step to a uniform height); index/title are pinned to a
   fixed block so every description starts on the same line, the
   description itself grows to fill the remaining space, and the
   chip is pinned to margin-top:auto so all five land on one baseline. */
.journey__body {
  margin-top: 1.4rem; flex: 1;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
.journey__index {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-40);
  margin-bottom: .5rem;
}
.journey__body h3 {
  font-size: 1.04rem; font-weight: 700; letter-spacing: -.015em;
  line-height: 1.3; margin-bottom: .5rem;
  min-height: 2.6em; display: flex; align-items: center; max-width: 21ch;
}
.journey__body p {
  flex: 1 0 auto;
  font-size: .89rem; font-weight: 300; line-height: 1.6;
  color: var(--ink-55); max-width: 30ch; margin-inline: auto;
}
.journey__chip {
  display: inline-block; margin-top: .9rem; flex: none;
  font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink); padding: .34rem .8rem; border-radius: 999px;
  background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(50, 132, 255, .22);
}
.journey__chip--cold {
  background: rgba(108, 224, 223, .18);
  box-shadow: inset 0 0 0 1px rgba(108, 224, 223, .55);
}

/* ---- tablet: two rows, rail retired ---- */
@media (max-width: 1080px) {
  .journey__track { grid-template-columns: repeat(3, 1fr); row-gap: 3rem; }
  .journey__track::before, .journey__track::after { display: none; }
}

/* ---- mobile: vertical timeline ---- */
@media (max-width: 720px) {
  .journey__track { --node: 60px; grid-template-columns: 1fr; row-gap: 0; }
  .journey__track::before, .journey__track::after {
    display: block; top: 0; bottom: 0; height: auto; width: 2px;
    left: calc(var(--node) / 2 - 1px); right: auto;
  }
  .journey__track::after {
    background: linear-gradient(180deg, var(--accent), var(--accent) 62%, var(--teal));
    transform: scaleY(0); transform-origin: top;
    transition: transform 1.9s .15s var(--ease-inout);
  }
  .journey__track.is-inview::after { transform: scaleY(1); }
  .journey__step {
    flex-direction: row; align-items: flex-start; text-align: left;
    gap: 1.15rem; padding-bottom: 2.25rem;
  }
  .journey__step:last-child { padding-bottom: 0; }
  .journey__body { margin-top: .3rem; align-items: flex-start; }
  .journey__body h3 { min-height: 0; max-width: none; justify-content: flex-start; }
  .journey__body p { flex: none; margin-inline: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .journey__track::after { transform: none !important; }
  .journey__step { opacity: 1; transform: none; }
}

/* ============================================================
   ILLUSTRATION FIGURES (brand-native SVG art)
   ============================================================ */
.art-figure { margin: 0; position: relative; }
.art-figure img { width: 100%; height: auto; display: block; }
.art-figure--flow {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.art-figure--flow img { min-width: 720px; }
.art-figure figcaption {
  margin-top: 1rem; font-size: .84rem; color: var(--ink-55); text-align: center;
}

/* illustration sitting inside a dark media frame */
.media-frame .art-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   VIDEO FRAME
   ============================================================ */
.video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy-deep); aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   MOTION PRIMITIVES
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal="blur"]  { filter: blur(10px); transform: translateY(20px); }
[data-reveal].is-inview { opacity: 1; transform: none; filter: none; }

/* staggered children */
[data-stagger] > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-stagger].is-inview > * { opacity: 1; transform: none; }

/* word-by-word headline reveal (JS-split) */
.word-reveal .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-reveal .word > i {
  display: inline-block; font-style: inherit;
  transform: translateY(105%);
  transition: transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.word-reveal.is-inview .word > i { transform: translateY(0); }

/* parallax hook */
[data-parallax] { will-change: transform; }

/* cursor spotlight (fine pointers only) */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 5; pointer-events: none;
  width: 460px; height: 460px; margin: -230px 0 0 -230px; border-radius: 50%;
  background: radial-gradient(circle, rgba(50,132,255,.16), transparent 62%);
  opacity: 0; transition: opacity .5s;
  will-change: transform;
}
.cursor-glow.is-on { opacity: 1; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 86% -22%, rgba(108,224,223,.2), transparent 62%),
    radial-gradient(700px 500px at -2% 118%, rgba(50,132,255,.3), transparent 58%),
    linear-gradient(158deg, var(--navy-deep), var(--navy) 68%, var(--navy-lift));
  color: #fff;
  padding: clamp(9rem, 16vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  padding-top: 8rem;
}
.page-hero .container { position: relative; z-index: 3; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lede { color: rgba(255,255,255,.72); margin-top: 1.5rem; }
.page-hero .crumbs {
  display: flex; gap: .6rem; align-items: center;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.48); margin-bottom: 1.7rem;
}
.page-hero .crumbs a { transition: color .3s; }
.page-hero .crumbs a:hover { color: var(--teal); }
.page-hero .crumbs svg { opacity: .5; }
.page-hero__art { position: absolute; inset: 0; pointer-events: none; opacity: .55; z-index: 1; }

/* ---- Split page hero: copy left, glass panel right ---- */
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}
.page-hero__grid h1 { max-width: 15ch; font-size: clamp(2.1rem, 3.6vw, 3.2rem); }
.page-hero__grid .lede { max-width: 46ch; font-size: clamp(1rem, 1.2vw, 1.08rem); }
@media (max-width: 1000px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero__grid h1, .page-hero__grid .lede { max-width: none; }
}

.hero-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(158deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 46px 90px -46px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  padding: clamp(1.1rem, 2vw, 1.5rem);
}
.hero-panel__visual {
  position: relative; border-radius: var(--radius);
  background: linear-gradient(165deg, var(--navy-deep), #0C0C52);
  overflow: hidden;
}
.hero-panel__visual svg { display: block; width: 100%; height: auto; }
.hero-panel__visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-panel__temp {
  position: absolute; left: 1rem; bottom: 1rem;
  display: flex; flex-direction: column; gap: .1rem;
  padding: .5rem .9rem; border-radius: 999px;
  background: rgba(6,6,56,.72); border: 1px solid rgba(108,224,223,.5);
  backdrop-filter: blur(6px);
}
.hero-panel__temp strong { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; color: var(--teal); line-height: 1.1; }
.hero-panel__temp span { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero-panel__list { list-style: none; margin: 1.1rem .2rem .25rem; display: grid; gap: .6rem; }
.hero-panel__list li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .86rem; font-weight: 300; line-height: 1.45; color: rgba(255,255,255,.78);
}
.hero-panel__list svg { flex: none; margin-top: .18rem; stroke: var(--teal); }

/* ---- Numbered steps (works on dark) ---- */
.steps { list-style: none; margin-top: 1.1rem; counter-reset: step; display: grid; gap: 1.15rem; }
.steps li { counter-increment: step; position: relative; padding-left: 3rem; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.1rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .74rem; font-weight: 700; letter-spacing: .02em;
  color: var(--teal); background: rgba(108,224,223,.12);
  box-shadow: inset 0 0 0 1px rgba(108,224,223,.4);
}
.steps li::after {
  content: ""; position: absolute; left: .97rem; top: 2.1rem; bottom: -1.15rem;
  width: 1px; background: linear-gradient(rgba(108,224,223,.4), rgba(108,224,223,0));
}
.steps li:last-child::after { display: none; }
.steps h4 { font-weight: 600; font-size: .98rem; color: var(--ink); }
.steps p { font-size: .88rem; font-weight: 300; line-height: 1.6; color: var(--ink-55); margin-top: .18rem; }
.section--dark .steps h4 { color: #fff; }
.section--dark .steps p { color: rgba(255,255,255,.62); }

/* ---- Small note card ---- */
.note-card {
  display: flex; gap: .85rem; align-items: flex-start; margin-top: 2rem;
  padding: 1rem 1.15rem; border-radius: var(--radius-sm);
  background: var(--accent-soft); border: 1px solid rgba(50,132,255,.2);
}
.note-card__icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(50,132,255,.14); color: var(--accent);
}
.note-card p { font-size: .84rem; font-weight: 300; line-height: 1.6; color: var(--ink-55); }
.note-card strong { font-weight: 600; color: var(--ink); }
.section--dark .note-card { background: rgba(108,224,223,.07); border-color: rgba(108,224,223,.22); }
.section--dark .note-card__icon { background: rgba(108,224,223,.14); color: var(--teal); }
.section--dark .note-card p { color: rgba(255,255,255,.66); }
.section--dark .note-card strong { color: #fff; }

.volunteer-help { margin-top: 1.2rem; font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.55); }
.volunteer-help a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* ============================================================
   MISC ANIMATIONS
   ============================================================ */
.float-slow   { animation: floatSlow 7s var(--ease-inout) infinite; }
.float-slower { animation: floatSlow 10s var(--ease-inout) infinite reverse; }
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.spin-slow { animation: spinSlow 40s linear infinite; transform-origin: center; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.dash-anim { stroke-dasharray: 6 8; animation: dashMove 3s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -28; } }

/* careers perks */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 900px) { .perk-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .perk-grid { grid-template-columns: 1fr; } }

/* generic icon bubble */
.icon-bubble {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 1.1rem;
  transition: background .35s, color .35s, transform .45s var(--ease-spring);
}
.icon-bubble:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

/* ============================================================
   INSIGHTS — filter bar, load-more, newsletter
   ============================================================ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .6rem; align-items: center;
  padding-bottom: 2.6rem; border-bottom: 1px solid var(--line); margin-bottom: 3rem;
}
.filter-bar__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-40); margin-right: .6rem;
}
.filter-btn {
  appearance: none; border: 1px solid var(--line-strong); background: transparent;
  color: var(--ink-70); font-family: var(--font-body); font-size: .84rem; font-weight: 600;
  padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer;
  transition: color .3s, border-color .3s, background .3s, transform .45s var(--ease-spring);
}
.filter-btn:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.filter-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.filter-count { color: var(--ink-40); font-size: .84rem; margin-left: auto; }

.post-card.is-hidden { display: none; }
.post-grid__empty { display: none; padding: 3rem 0; color: var(--ink-55); text-align: center; }
.post-grid__empty.is-visible { display: block; }

.newsletter {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  background: linear-gradient(140deg, var(--navy-deep), var(--navy-lift));
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.6rem); overflow: hidden;
  position: relative;
}
.newsletter h3 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.68); font-weight: 300; margin-top: .9rem; max-width: 44ch; }
.newsletter__form { display: flex; gap: .7rem; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1; min-width: 220px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: .95rem 1.4rem; color: #fff; font-family: var(--font-body); font-size: .95rem;
  transition: border-color .3s, background .3s;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter__form input:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,.11); }
.newsletter__note { color: rgba(255,255,255,.45); font-size: .78rem; margin-top: 1rem; }
.newsletter__done { color: var(--teal); font-size: .92rem; font-weight: 600; display: none; }
.newsletter.is-done .newsletter__form { display: none; }
.newsletter.is-done .newsletter__done { display: block; }
@media (max-width: 820px) { .newsletter { grid-template-columns: 1fr; } }

/* ============================================================
   ARTICLE (blog details)
   ============================================================ */
.article-hero { max-width: 820px; }
.article-hero .post-card__tag {
  position: static; display: inline-block; margin-bottom: 1.4rem;
  background: rgba(108,224,223,.14); color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(108,224,223,.35);
}
.article-cover {
  position: relative; margin-top: -4.5rem; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 21 / 9; background: var(--navy);
}
.article-cover svg, .article-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-body h3 { font-size: 1.18rem; margin-top: 2rem; }
.article-body ul { padding-left: 1.15rem; color: var(--ink-70); }
.article-body ul li { margin-top: .55rem; }
.article-body ul li::marker { color: var(--accent); }
.article-body figure figcaption { font-size: .82rem; color: var(--ink-40); margin-top: .7rem; }
.article-body .callout {
  background: var(--accent-soft); border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem; color: var(--ink-70); font-size: .95rem;
  border-left: 3px solid var(--accent);
}

.article-share { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.article-share span {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-40); margin-right: .3rem;
}
.article-share a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--ink);
  transition: background .3s, color .3s, border-color .3s, transform .45s var(--ease-spring);
}
.article-share a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.article-share a svg { stroke: currentColor; fill: none; }

.author-box {
  display: flex; gap: 1.3rem; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; background: var(--surface); margin-top: 3.2rem;
}
.author-box .avatar {
  width: 62px; height: 62px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--navy-lift), var(--accent));
  display: grid; place-items: center; color: #fff; font-weight: 700; letter-spacing: .04em;
}
.author-box h4 { font-size: 1rem; }
.author-box p { font-size: .88rem; color: var(--ink-55); margin-top: .3rem; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 3rem; }
.post-nav a {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem;
  transition: border-color .35s, transform .5s var(--ease-out), box-shadow .5s;
}
.post-nav a:hover { border-color: rgba(50,132,255,.3); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-nav small { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); }
.post-nav strong { display: block; margin-top: .5rem; font-weight: 600; line-height: 1.4; color: var(--ink); }
.post-nav a:last-child { text-align: right; }
@media (max-width: 620px) { .post-nav { grid-template-columns: 1fr; } .post-nav a:last-child { text-align: left; } }

/* ============================================================
   CAREERS — job cards
   ============================================================ */
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 980px) { .job-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .job-grid { grid-template-columns: 1fr; } }
.job-card.is-hidden { display: none; }
.job-card { display: flex; flex-direction: column; }
.job-card__top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.job-card__dept { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.job-card__type { font-size: .74rem; font-weight: 600; padding: .3rem .75rem; border-radius: 999px; background: var(--accent-soft); color: var(--ink); white-space: nowrap; }
.job-card h3 { margin-block: 1.1rem .6rem; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-55); }
.job-card__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.job-card__meta svg { stroke: var(--ink-40); flex: none; }
.job-card .link-arrow { margin-top: 1.2rem; }
.job-grid__empty { display: none; padding: 3rem 0; color: var(--ink-55); text-align: center; }
.job-grid__empty.is-visible { display: block; }

/* ============================================================
   CONTACT — info band + combined map/form panel
   ============================================================ */
.contact-band { display: flex; gap: clamp(1.5rem, 4vw, 3rem); }
.contact-band__item {
  flex: 1; display: flex; gap: 1.1rem; align-items: flex-start;
  padding-left: clamp(0rem, 2vw, 1.6rem);
}
.contact-band__item + .contact-band__item { border-left: 1px solid rgba(255,255,255,.14); }
.contact-band__icon {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: var(--teal);
  transition: background .4s, transform .5s var(--ease-spring);
}
.contact-band__item:hover .contact-band__icon { background: var(--teal); color: var(--navy); transform: rotate(-6deg) scale(1.06); }
.contact-band__label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.contact-band__value { font-size: 1.05rem; font-weight: 600; color: #fff; margin-top: .4rem; line-height: 1.55; }
.contact-band__value a { transition: color .3s; }
.contact-band__value a:hover { color: var(--teal); }
.contact-band__meta { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: .55rem; }
@media (max-width: 860px) {
  .contact-band { flex-direction: column; gap: 1.8rem; }
  .contact-band__item { padding-left: 0; }
  .contact-band__item + .contact-band__item { border-left: none; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.8rem; }
}

/* single unified card: map fused to the form */
.contact-panel {
  display: grid; grid-template-columns: .95fr 1.15fr;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.contact-panel__map { position: relative; min-height: 480px; background: var(--paper-2); }
.contact-panel__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.02); }
.contact-panel__map .map-embed__badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-radius: var(--radius-sm); padding: .85rem 1.15rem;
  box-shadow: 0 24px 48px -24px rgba(6,6,56,.5); max-width: 240px;
}
.contact-panel__map .map-embed__badge strong { display: block; font-size: .92rem; font-weight: 700; color: var(--navy); }
.contact-panel__map .map-embed__badge span { font-size: .78rem; color: var(--ink-55); }
.contact-panel__form { padding: clamp(2rem, 4vw, 3rem); }
@media (max-width: 900px) {
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel__map { min-height: 320px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal], [data-stagger] > * { opacity: 1; transform: none; filter: none; }
  .line-reveal .line > span, .word-reveal .word > i { transform: none; }
  .eyebrow::before { transform: scaleX(1); }
  .marquee__track { animation: none; }
  .cursor-glow { display: none; }
}
