/* ============================================================
   CareShift — awareness site
   Type: Source Serif 4 (headlines) + Inter (body/UI)
   Color: navy #002058 · teal #1BA4AF · white · neutral grays
   ============================================================ */

:root {
  --navy: #002058;
  --navy-700: #0a2f6e;
  --navy-800: #001a48;
  --navy-deep: #000d24;      /* page base — deepest tonal navy */
  --navy-raise: #062a63;    /* lighter navy — raised dark surface */
  --teal: #1ba4af;
  --teal-ink: #0e6e76;      /* AA-safe teal for text on white */
  --teal-soft: #e7f4f5;

  --ink: #16202e;
  --body: #485160;
  --muted: #727b8a;
  --line: #e7ebf0;
  --line-soft: #eef1f5;

  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --navy-soft: #eef2f8;

  --serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-panel: clamp(28px, 3vw, 40px);

  --shadow-sm: 0 1px 2px rgba(0, 32, 88, 0.04), 0 4px 16px rgba(0, 32, 88, 0.05);
  --shadow-md: 0 2px 6px rgba(0, 32, 88, 0.06), 0 18px 48px rgba(0, 32, 88, 0.10);
  --shadow-panel: 0 30px 70px -36px rgba(0, 8, 28, 0.6);

  --maxw: 1180px;
  --maxw-wide: 1640px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--navy-deep);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--serif); color: var(--navy); font-weight: 600; margin: 0; letter-spacing: -0.01em; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
/* ---------- stacked premium panels ---------- */
.section {
  position: relative; z-index: 1;
  padding-block: clamp(60px, 6.5vw, 104px);
  margin-inline: clamp(8px, 1.5vw, 20px);
  background: var(--bg);
  border-radius: var(--r-panel);
  box-shadow: var(--shadow-panel);
}
main > .section { margin-top: clamp(10px, 1.4vw, 18px); }
/* the lead soft panel rises over the hero for a layered curl */
main > .group { margin-top: clamp(-46px, -3.2vw, -28px); z-index: 3; }
.section--soft { background: var(--bg-soft); }

/* grouped panel: consecutive same-colour sections share ONE rounded surface */
.group {
  position: relative; z-index: 1;
  margin-inline: clamp(8px, 1.5vw, 20px);
  border-radius: var(--r-panel);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}
.group--soft { background: var(--bg); }
.group > .section {
  margin: 0; border-radius: 0; box-shadow: none; background: transparent;
  padding-block: clamp(44px, 5vw, 80px);
}
.group > .section:first-child { padding-top: clamp(56px, 6vw, 96px); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin: 0 0 20px;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--body); max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 6px 20px rgba(0,32,88,.22); }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(0,32,88,.22); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(0,32,88,.04); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.btn--teal { background: var(--teal-ink); color: #fff; }
.btn--teal:hover { background: #0b5860; transform: translateY(-2px); }

/* hero button pair — solid white primary + frosted navy secondary */
.btn--hero-primary, .btn--hero-frost {
  min-height: 52px; padding: 15px 28px; font-size: 1.02rem; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn--hero-primary {
  background: #fff; color: var(--navy); border-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 10, 35, .18);
}
.btn--hero-primary:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(0, 10, 35, .26); }
.btn__arrow { transition: transform .15s ease; }
.btn--hero-primary:hover .btn__arrow { transform: translateX(3px); }

.btn--hero-frost {
  position: relative; color: #fff;
  background: rgba(0, 32, 88, .42);
  border: 1px solid rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 10, 35, .18);
  overflow: hidden;
}
.btn--hero-frost:hover {
  transform: translateY(-2px); background: rgba(0, 32, 88, .55);
  border-color: rgba(255, 255, 255, .34);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 32, 88, .55), 0 0 0 6px rgba(27, 164, 175, .9);
}
@media (prefers-reduced-motion: reduce) {
  .btn--hero-primary:hover, .btn--hero-frost:hover { transform: none; }
  .btn--hero-primary:hover .btn__arrow { transform: none; }
}
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,32,88,.03); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand b { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--navy); letter-spacing: -0.01em; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.98rem;
  position: relative; padding-block: 6px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--teal); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; }

/* ---------- media placeholder ---------- */
.media-ph {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(135deg, rgba(0,32,88,.045) 0 12px, rgba(0,32,88,0) 12px 24px),
    linear-gradient(160deg, #eaf0f6, #dde7f1);
  border: 1px solid var(--line);
  display: grid; place-items: center; min-height: 220px;
}
.media-ph__tag {
  position: absolute; top: 14px; left: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.7rem; letter-spacing: .04em; color: var(--navy);
  background: rgba(255,255,255,.82); border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}
.media-ph__label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.82rem; color: var(--navy-700); text-align: center;
  padding: 0 24px; max-width: 32ch; opacity: .8;
}
.media-ph__icon { width: 46px; height: 46px; margin: 0 auto 14px; opacity: .55; }
.media-ph.has-img { background-image: var(--img); background-size: cover; background-position: center; border: none; }
.media-ph.has-img > * { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); z-index: 1;
  border-radius: 0 0 var(--r-panel) var(--r-panel); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .media-ph {
  width: 100%; height: 100%; border-radius: 0; border: none; min-height: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 14px, rgba(255,255,255,0) 14px 28px),
    linear-gradient(155deg, #062a63 0%, #002058 55%, #001a48 100%);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.hero__video.is-live { display: block; }
.hero__video.is-live + #heroPlaceholder { display: none; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,20,60,.86) 0%, rgba(0,26,72,.66) 48%, rgba(0,26,72,.28) 100%); }
.hero__pulse { position: absolute; left: 0; right: 0; top: 64%; z-index: 1; width: 100%; height: 90px; opacity: .28; }
.hero__pulse path { fill: none; stroke: var(--teal); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1600; stroke-dashoffset: 1600; animation: ekg 6.5s linear infinite; }
@keyframes ekg { to { stroke-dashoffset: -1600; } }
.hero__vtag {
  position: absolute; bottom: 22px; right: 22px; z-index: 3;
  font-family: ui-monospace, Menlo, monospace; font-size: .7rem; letter-spacing:.03em;
  color: #cfe0f2; background: rgba(0,20,55,.55); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 12px; border-radius: 999px; display:flex; align-items:center; gap:8px;
}
.hero__vtag i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .25; } }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(96px, 16vh, 168px);
  padding-inline: var(--gutter); max-width: var(--maxw-wide); margin-inline: auto; }
.hero__content { max-width: 820px; }
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.12;
  letter-spacing: -0.01em; font-weight: 600; text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 600; color: #8fe0e7; }
.hero__sub { color: #d5e2f1; font-size: clamp(1.05rem, 1.8vw, 1.32rem); margin-top: 28px; max-width: 56ch; line-height: 1.6; font-weight: 400; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
@media (prefers-reduced-motion: reduce) {
  .hero__pulse path { animation: none; stroke-dashoffset: 0; opacity:.35; }
  .hero__vtag i { animation: none; }
}

/* ---------- values / manifesto (dark navy band) ---------- */
.values { background: var(--navy); color: #c2d2ec; position: relative; overflow: hidden; }
.values::before {
  content: ""; position: absolute; top: -180px; left: -140px; width: 560px; height: 560px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(27, 164, 175, .20), transparent 70%);
}
.values::after {
  content: ""; position: absolute; right: -160px; bottom: -200px; width: 540px; height: 540px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(27, 164, 175, .12), transparent 72%);
}
.values .wrap { position: relative; z-index: 1; }
.values .eyebrow { color: #7fdce4; }
.values__head { max-width: 720px; margin-bottom: clamp(44px, 5.5vw, 72px); }
.values__head h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.12; text-wrap: balance; }

.manifesto {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 6vw, 96px);
}
.principle {
  display: flex; flex-direction: column;
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.principle__head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.principle__num {
  position: relative; font-family: var(--sans); font-weight: 700; color: var(--teal);
  font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.principle__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(27, 164, 175, .14); border: 1px solid rgba(27, 164, 175, .34); color: var(--teal);
}
.principle__icon svg { width: 22px; height: 22px; }
.principle__title {
  font-family: var(--sans); color: #fff; font-weight: 600;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem); line-height: 1.18; letter-spacing: -0.015em;
  margin: 0 0 12px; text-wrap: balance;
}
.principle__text { color: #aebfdc; font-size: 1.04rem; line-height: 1.55; margin: 0; max-width: 36ch; }

/* ---------- reality (bento mosaic) ---------- */
.reality__head { max-width: 720px; margin-bottom: 48px; }
.reality__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.08; text-wrap: balance; }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
  grid-template-areas:
    "photo emph emph"
    "photo q1   q2"
    "q3    q4   q5";
  align-items: stretch;
}
.btile {
  margin: 0;
  border-radius: var(--r-lg); padding: clamp(22px, 1.8vw, 30px);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  min-width: 0;
}
.btile--photo { grid-area: photo; padding: 0; overflow: hidden; min-height: 360px; }
.btile--photo .media-ph { width: 100%; height: 100%; aspect-ratio: auto; border: none; border-radius: 0; }
.reality__img.has-img { box-shadow: none; }
.a-q1 { grid-area: q1; } .a-q2 { grid-area: q2; } .a-q3 { grid-area: q3; }
.a-q4 { grid-area: q4; } .a-q5 { grid-area: q5; }
.btile--emph { grid-area: emph; }

.btile--quote { background: #fff; }
.btile--quote p { margin: 0; font-weight: 600; color: var(--navy); letter-spacing: -0.01em;
  font-size: clamp(1rem, 1.05vw, 1.12rem); line-height: 1.36; text-wrap: pretty; }
.btile cite { font-style: italic; color: var(--muted); font-size: .84rem; }

.btile--navy { background: var(--navy); }
.btile--navy p { margin: 0; font-weight: 600; color: #fff; letter-spacing: -0.01em;
  font-size: clamp(1rem, 1.05vw, 1.12rem); line-height: 1.36; text-wrap: pretty; }
.btile--navy cite { color: #9fb4d4; }

.btile--emph { justify-content: center; gap: 14px; }
.btile__big { margin: 0; font-weight: 600; letter-spacing: -0.01em; line-height: 1.16;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem); color: #fff; }
.btile__big .t-teal { color: var(--teal); }
.btile__sub { margin: 0; color: #c7d6ec; font-size: clamp(.92rem, .98vw, 1.02rem); line-height: 1.45; }

/* legacy span helpers (unused but harmless) */
.c4 { grid-column: span 4; } .c6 { grid-column: span 6; } .c8 { grid-column: span 8; } .c12 { grid-column: span 12; }

/* ---------- a day on the floor (cinematic full-bleed) ---------- */
.day-cine { padding-inline: var(--gutter); }
.day-cine__frame {
  position: relative; display: flex; flex-direction: column; margin: 0;
  width: 100%; min-height: clamp(460px, 62vh, 700px);
  border-radius: var(--r-xl); overflow: hidden; isolation: isolate;
  box-shadow: 0 44px 90px -44px rgba(0, 8, 28, .55);
}
.day-cine__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.day-cine__ph {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none; border-radius: 0; display: block;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 16px, transparent 16px 32px),
    linear-gradient(155deg, #0a2f6e 0%, #00153a 60%, #000d24 100%);
}
.day-cine__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,13,36,.94) 0%, rgba(0,13,36,.6) 36%, rgba(0,20,60,.18) 68%, rgba(0,20,60,.05) 100%),
    linear-gradient(to right, rgba(0,13,36,.5) 0%, rgba(0,13,36,0) 55%);
}
.day-cine__tag {
  display: none;
}
.day-cine__content {
  position: relative; z-index: 2; margin-top: auto; margin-inline: auto;
  width: 100%; max-width: var(--maxw-wide);
  padding: clamp(30px, 4vw, 60px) var(--gutter);
}
.day-cine__content .eyebrow { color: #7fdce4; margin-bottom: 16px; }
.day-cine__title { margin: 0; color: #fff; line-height: 1.12; letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 5.2vw, 4.1rem); text-wrap: balance; }
.day-cine__title .t-heavy { font-weight: 600; }
.day-cine__title .t-light { font-weight: 400; color: rgba(255,255,255,.74); }
.day-cine__lead { margin-top: clamp(16px, 1.8vw, 24px); color: #d5e2f1;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.6; max-width: 62ch; }
@media (prefers-reduced-motion: reduce) { .day-cine__frame { } }

/* ---------- why it matters (animated rings) ---------- */
.matters__head { max-width: 760px; margin: 0 0 clamp(48px, 5.5vw, 80px); }
.matters__head h2 { line-height: 1.04; text-wrap: balance; }
.matters__head .lede { margin-top: 18px; }

.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }

.ring { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.ring > svg { grid-area: 1 / 1; width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.ring__num { grid-area: 1 / 1; font-weight: 800; color: var(--navy); letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums; }
.ring__track { fill: none; stroke: rgba(0, 32, 88, .10); }
.ring__fg { fill: none; stroke: var(--teal); stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.6s cubic-bezier(.22, 1, .36, 1); }
.is-in .ring__fg { stroke-dashoffset: var(--off, 0); }

.ring--lg { width: clamp(220px, 26vw, 320px); }
.ring--lg .ring__num { font-size: clamp(3.2rem, 7vw, 5.4rem); }
.ring--lg .ring__track, .ring--lg .ring__fg { stroke-width: 2.4; }

.bigstat { margin: 0; display: flex; flex-direction: column; align-items: flex-start; gap: clamp(22px, 2.6vw, 34px); }
.bigstat__label { font-size: clamp(1.1rem, 1.5vw, 1.34rem); color: var(--navy); font-weight: 600;
  line-height: 1.4; max-width: 22ch; letter-spacing: -0.01em; }

.ministats { list-style: none; margin: 0; padding: 0 0 0 clamp(32px, 4vw, 70px);
  border-left: 1px dashed rgba(0, 32, 88, .2);
  display: flex; flex-direction: column; gap: clamp(22px, 2.6vw, 34px); }
.ministat { display: flex; align-items: center; gap: 22px; }
.ministat + .ministat { border-top: 1px dashed rgba(0, 32, 88, .2); padding-top: clamp(22px, 2.6vw, 34px); }
.ring--sm { width: clamp(92px, 9vw, 116px); flex: none; }
.ring--sm .ring__num { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.ring--sm .ring__track, .ring--sm .ring__fg { stroke-width: 4; }
.ministat__label { color: var(--body); font-size: 1.04rem; line-height: 1.5; max-width: 34ch; }

.bigstat__label sup, .ministat__label sup { color: var(--teal-ink); font-weight: 700; font-size: .62em; margin-left: 1px; }
.why__sources { margin-top: clamp(44px, 5vw, 72px); display: flex; flex-direction: column; gap: 7px;
  font-size: .8rem; color: var(--muted); line-height: 1.6; max-width: 80ch; }
.why__sources sup { color: var(--teal-ink); font-weight: 700; margin-right: 4px; }

@media (prefers-reduced-motion: reduce) { .ring__fg { transition: none; } }

/* ---------- mission (asymmetric editorial) ---------- */
.mission { position: relative; overflow: hidden; padding-bottom: clamp(176px, 20vw, 320px); }
.mission__grid { position: relative; z-index: 1; }
.mission .eyebrow { color: var(--teal-ink); }

.mission__title { margin: 0; display: flex; flex-direction: column; text-wrap: balance; }
.mission__title .t-light {
  font-weight: 500; color: var(--navy); font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  letter-spacing: -0.01em; line-height: 1.15;
}
.mission__title .t-heavy {
  font-weight: 600; color: var(--navy); font-size: clamp(2.6rem, 5.8vw, 4.5rem);
  letter-spacing: -0.01em; line-height: 1.08; margin: 6px 0;
}
.mission__title .t-accent {
  font-weight: 500; font-style: italic; color: var(--teal-ink);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem); letter-spacing: -0.01em; line-height: 1.15;
}
.mission__para { margin-top: 26px; color: var(--body); font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.62; max-width: 70ch; }

.roles { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid rgba(0,32,88,.14); }
.role { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 6px; border-bottom: 1px solid rgba(0,32,88,.14); }
.role__text { display: flex; flex-direction: column; gap: 3px; transition: transform .28s ease; }
.role__label { font-weight: 700; color: var(--navy); font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  letter-spacing: -0.015em; transition: color .2s ease; }
.role__desc { color: var(--muted); font-size: .96rem; }
.role__arrow { flex: none; width: 30px; height: 30px; color: var(--teal-ink); transition: transform .28s ease; }
.role:hover .role__text { transform: translateX(10px); }
.role:hover .role__label { color: var(--teal-ink); }
.role:hover .role__arrow { transform: translateX(10px); }
@media (prefers-reduced-motion: reduce) {
  .role:hover .role__text, .role:hover .role__arrow { transform: none; }
}

/* FAQ accordion (reuses .roles divider + navy question + teal arrow) */
.faq-eyebrow { margin: 40px 0 0; }
.faq { margin-top: 16px; }
.faq__item { display: block; padding: 0; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: none; border: none; cursor: pointer; text-align: left; font-family: var(--sans);
  padding: 24px 6px; color: var(--navy); transition: color .2s ease;
}
.faq__q .role__label { transition: color .2s ease; }
.faq__q:hover .role__label { color: var(--teal-ink); }
.faq__arrow { transition: transform .3s ease, color .2s ease; }
.faq__q[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }
.faq__q:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
.faq__a { overflow: hidden; height: 0; transition: height .32s cubic-bezier(.4,0,.2,1); }
.faq__a-inner { padding: 0 6px 26px; }
.faq__a-inner .role__desc { font-size: 1.02rem; line-height: 1.6; max-width: 64ch; }
@media (prefers-reduced-motion: reduce) {
  .faq__a { transition: none; }
  .faq__arrow { transition: color .2s ease; }
}

.mission__close { margin-top: 34px; font-size: 1.1rem; color: var(--muted); }
.mission__close a { color: var(--teal-ink); font-weight: 600; text-decoration: none;
  border-bottom: 2px solid rgba(14,110,118,.3); padding-bottom: 1px; transition: border-color .18s ease; }
.mission__close a:hover { border-color: var(--teal-ink); }

.mission__media { position: relative; z-index: 2; margin-top: clamp(-128px, -8.5vw, -56px); }
.mission__photo { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--r-xl);
  box-shadow: 0 34px 80px -30px rgba(0,32,88,.34); border: none; }

/* founder pull-quote */
.founder-quote { margin: clamp(28px, 3vw, 38px) 0; padding: 0 0 0 clamp(20px, 2vw, 28px);
  border-left: 3px solid var(--teal); }
.founder-quote p { margin: 0; font-weight: 700; color: var(--navy); letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.22; text-wrap: balance; }
.founder-quote p em { font-style: italic; color: var(--teal-ink); }
.founder-quote footer { margin-top: 16px; display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: .92rem; font-weight: 500; }
.founder-quote__line { width: 26px; height: 2px; background: var(--teal); border-radius: 2px; flex: none; }

/* founder portrait card */
.founder-card { margin: 0; }
.founder-card__cap { margin-top: 18px; display: flex; flex-direction: column; gap: 3px; }
.founder-card__name { color: var(--navy); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; }
.founder-card__role { color: var(--muted); font-size: .9rem; line-height: 1.4; }

.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--sans); font-weight: 700; font-size: .82rem; color: #fff; flex: none; letter-spacing: .02em; }

/* ---------- voices (featured carousel on deep navy) ---------- */
.voices { background: var(--navy-deep); box-shadow: none; overflow: hidden; }
.voices::before { content: ""; position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: min(760px, 80%); aspect-ratio: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(27,164,175,.20), transparent 62%); }
.voices::after { content: ""; position: absolute; right: 4%; bottom: 6%; width: clamp(280px, 30vw, 440px); aspect-ratio: 1;
  border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(10,47,110,.6), transparent 70%); }
.voices .wrap { position: relative; z-index: 1; }
.voices .eyebrow { color: #7fdce4; }
.voices__head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 4vw, 54px); }
.voices__head h2 { color: #fff; }

.feature { max-width: 1000px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; }
.feature__quote { margin: 0 auto; color: #fff; font-weight: 600; max-width: 34ch;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem); line-height: 1.3; letter-spacing: -0.02em; text-wrap: balance; }
.feature__person { display: inline-flex; flex-direction: column; align-items: center; gap: 12px; margin-top: clamp(20px, 2vw, 28px); }
.feature__avatar { width: 56px; height: 56px; font-size: 1rem; background: var(--teal); color: #00232c; font-weight: 800; }
.feature__meta { text-align: center; display: flex; flex-direction: column; gap: 3px; }
.feature__name { color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.feature__role { color: #9fb4d4; font-size: .9rem; line-height: 1.35; max-width: 40ch; }
.feature__quote, .feature__person { transition: opacity .45s ease, transform .45s ease; }
.feature.is-switching .feature__quote, .feature.is-switching .feature__person { opacity: 0; transform: translateY(14px); }

.feature__controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: clamp(34px, 4vw, 52px); }
.feature__arrow { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: transform .16s ease, background .16s ease, border-color .16s ease; }
.feature__arrow:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.feature__arrow svg { width: 20px; height: 20px; }
.feature__dots { display: flex; align-items: center; gap: 10px; }
.feature__dot { width: 9px; height: 9px; border-radius: 999px; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.26); transition: width .25s ease, background .25s ease; }
.feature__dot.is-active { width: 28px; background: var(--teal); }
.voices__note { text-align: center; color: #6f86ab; font-size: .82rem; margin-top: clamp(30px, 3.5vw, 44px); }
@media (prefers-reduced-motion: reduce) {
  .feature__quote, .feature__person { transition: none; }
  .feature__arrow:hover { transform: none; }
}

/* ---------- closing CTA (oversized statement + glow) ---------- */
.close { background: var(--navy); position: relative; overflow: hidden;
  padding-block: clamp(96px, 13vw, 184px); }
.close::before { content:""; position:absolute; left:50%; top:38%; transform:translate(-50%,-50%);
  width: min(1100px, 130%); aspect-ratio: 1.4 / 1; border-radius:50%; pointer-events:none;
  background: radial-gradient(ellipse at center, rgba(27,164,175,.30) 0%, rgba(27,164,175,.10) 38%, transparent 66%); }
.close .wrap { position: relative; z-index:1; }
.close__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; text-align: left; }
.close__intro { max-width: 36ch; }
.close .eyebrow { color: #7fdce4; }
.close__title { color:#fff; font-weight: 600; letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.08; text-wrap: balance; }
.close__lede { color:#c7d6ec; font-size: clamp(1.05rem, 1.5vw, 1.24rem); line-height: 1.6;
  max-width: 54ch; margin: clamp(22px, 2.6vw, 32px) 0 0; }

/* white signup card */
.signup-card { background: #fff; border-radius: var(--r-xl); padding: clamp(26px, 2.6vw, 40px);
  box-shadow: 0 40px 90px -40px rgba(0, 8, 28, .7); }
.signup-card__form { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--sans); font-size: .86rem; font-weight: 600; color: var(--navy); letter-spacing: -0.005em; }
.field .req { color: var(--teal-ink); }
.field .opt { color: var(--muted); font-weight: 500; }
.signup-card input, .signup-card select, .signup-card textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); width: 100%;
  padding: 13px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--bg-soft); transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.signup-card input::placeholder, .signup-card textarea::placeholder { color: #9aa6b6; }
.signup-card input:focus, .signup-card select:focus, .signup-card textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(27,164,175,.16);
}
.signup-card input.is-invalid { border-color: #d4564a; box-shadow: 0 0 0 4px rgba(212,86,74,.12); }
.signup-card textarea { resize: vertical; min-height: 96px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 44px; color: var(--ink); }
.select-wrap select:invalid { color: #9aa6b6; }
.select-wrap__chev { position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.signup-card__submit { width: 100%; justify-content: center; margin-top: 4px; }
.btn--teal-solid { background: var(--teal); color: #00232c; font-weight: 700; }
.btn--teal-solid:hover { background: #2bb6c1; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(27,164,175,.32); }
.signup__hint { font-size: .8rem; color: var(--muted); margin: 0; text-align: center; }
.signup__error { color: #c0392b; font-size: .88rem; margin: 0; min-height: 0; display: none; }
.signup__error.is-on { display: block; }
.signup-card__done { display: none; text-align: center; padding: clamp(20px, 3vw, 40px) 0; }
.signup-card__done.is-on { display: block; animation: fadein .5s ease; }
.signup-card__done .check { width: 62px; height: 62px; border-radius: 50%; background: var(--teal); display: grid;
  place-items: center; margin: 0 auto 20px; }
.signup-card__done .check svg { width: 30px; height: 30px; }
.signup-card__done h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 10px; }
.signup-card__done p { color: var(--body); max-width: 36ch; margin: 0 auto; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px);} to {opacity:1; transform:none;} }

/* ---------- footer ---------- */
.foot { background: var(--navy-deep); color: #b9c7e0; padding-block: 72px 44px; }
.foot__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.foot .brand b { color: #fff; }
.foot__logo { width: 40px; height: 40px; }
.foot__tag { margin-top: 14px; max-width: 34ch; font-size: .95rem; color: #93a5c6; }
.foot__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot__col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: #7d92b8; margin: 0 0 16px; font-weight: 700; }
.foot__col a { display: block; color: #c3d0e6; text-decoration: none; font-size: .96rem; margin-bottom: 11px; }
.foot__col a:hover { color: #fff; }
.foot__bar { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #7d92b8; }

/* ---------- type scale: large section headings ---------- */
.reality__head h2, .day h2, .matters__head h2, .values__head h2, .voices__head h2 {
  font-size: clamp(2.1rem, 4.3vw, 3.35rem); line-height: 1.15; font-weight: 600; letter-spacing: -0.01em;
}
.mission h2 { font-weight: 600; letter-spacing: -0.01em; }
.lede { font-weight: 400; }

/* tonal alternation across panels */

/* count-up figures */
.stat__num .num { font-variant-numeric: tabular-nums; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .voices__grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { column-gap: 48px; }
  .reality__head h2 { line-height: 1.12; }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 12px;
    grid-template-areas:
      "photo emph"
      "photo q1"
      "q2    q3"
      "q4    q5";
  }
  .btile--photo { min-height: 300px; }
  .mission__grid { gap: 36px; }
  .why__stats { gap: clamp(32px, 5vw, 60px); }
  .close__grid { grid-template-columns: 1fr; gap: clamp(32px, 5vw, 48px); }
  .close__intro { max-width: none; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.show-menu .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px var(--gutter) 26px; gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .stats { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr; gap: 40px; }
  .ministats { border-left: none; padding-left: 0; }
  .field-row { grid-template-columns: 1fr; }
  .bigstat { align-items: center; text-align: center; }
  .bigstat__label { max-width: 30ch; }
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "emph"
      "q1"
      "q2"
      "q3"
      "q4"
      "q5";
    grid-auto-rows: auto;
  }
  .btile--photo { min-height: 280px; }
  .day-cine__frame { min-height: 440px; }
  .day-cine__content { padding-block: 32px 28px; }
  .signup__row { flex-direction: column; }
  .signup__row .btn { justify-content: center; }
  .hero__scrim { background: linear-gradient(180deg, rgba(0,20,60,.78), rgba(0,26,72,.62)); }
}
@media (max-width: 480px) {
  .nav__cta .btn { padding: 11px 18px; font-size: .92rem; }
}
