/* ==========================================================================
   KIMA LBE — Site component layer
   Consumes the shared KIMA design system (assets/css/design-system.css).
   Every value here is drawn from that token set so kimalbe.com and
   kima-academy.com read as one continuous brand.
   ========================================================================== */

/* ---------- Reset & base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-strong);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: var(--kima-blue); text-decoration: none; }
a:hover { color: #A8760B; }
::selection { background: var(--gold); color: var(--deep-blue); }
section[id] { scroll-margin-top: 96px; }
input::placeholder, textarea::placeholder { color: #6B7B9E; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }

@keyframes fadein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes kimaMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
/* Arcs carry pathLength="1", so the dash maths is independent of geometry. */
@keyframes drawArc { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Layout ------------------------------------------------------- */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 900px; }
.sec { padding: 96px 0; position: relative; }
.sec--tight { padding: 64px 0; }
.sec--wash { background: var(--grey-100); }
.sec--ice { background: var(--gradient-sky); }
.sec--dark { background: var(--deep-blue); color: var(--white); }
.sec--dark .h2, .sec--dark .h3, .sec--dark .h4, .sec--dark .display { color: var(--white); }
.sec--dark .lead, .sec--dark .body { color: #B9C6DE; }
.sec--dark .eyebrow { color: var(--gold); }
.sec--dark a { color: var(--sky-blue); }

.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split--wide-right { grid-template-columns: 1fr 1.15fr; }

/* ---------- Type --------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 11.5px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--kima-blue);
  display: block;
  margin-bottom: 18px;
}
.display {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--deep-blue);
}
.h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--deep-blue);
}
.h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--deep-blue);
}
.h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.16rem;
  line-height: 1.3;
  color: var(--deep-blue);
}
.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #4C5D82;
  font-weight: 400;
}
.body { font-size: 1rem; line-height: 1.68; color: #4C5D82; }
.small { font-size: .875rem; line-height: 1.6; color: var(--grey-500); }
.gold { color: var(--gold); }
.blue { color: var(--kima-blue); }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 40px; }
.mb-m { margin-bottom: 24px; } .mb-l { margin-bottom: 46px; }
.measure { max-width: 62ch; }

.sec__head { max-width: 760px; margin-bottom: 56px; }
.sec__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Gold rule under headings — the Academy's accent gesture */
.rule { width: 62px; height: 4px; border-radius: 999px; background: var(--gradient-gold); margin: 22px 0 0; }
.sec__head--center .rule { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: var(--fw-bold);
  padding: 13px 24px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: var(--transition-base); text-decoration: none;
}
.btn svg { flex: none; transition: transform var(--dur-base) var(--ease-standard); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: linear-gradient(135deg, var(--kima-blue), var(--kima-blue-700));
  color: var(--white);
  box-shadow: 0 10px 26px -10px rgba(30,102,255,.9), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-600)); color: var(--deep-blue); }
.btn--ghost { background: transparent; border-color: rgba(11,29,61,.18); color: var(--deep-blue); }
.btn--ghost:hover { border-color: var(--gold); color: #A8760B; background: rgba(255,200,61,.08); }
.btn--on-dark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: var(--white); backdrop-filter: blur(6px); }
.btn--on-dark:hover { background: var(--white); color: var(--deep-blue); border-color: var(--white); }
.btn--gold { background: var(--gradient-gold); color: var(--deep-blue); box-shadow: 0 10px 26px -12px rgba(255,200,61,.9); }
.btn--gold:hover { background: linear-gradient(135deg, var(--kima-blue), var(--kima-blue-700)); color: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: var(--fw-bold); color: var(--kima-blue);
}
.link-arrow svg { transition: transform var(--dur-base) var(--ease-standard); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Nav ---------------------------------------------------------- */
.nav {
  position: fixed; left: 0; right: 0; top: 0; z-index: 60;
  background: rgba(252,253,255,.86);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(11,29,61,.09);
}
.nav__inner {
  max-width: 1220px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo img { height: 36px; width: auto; }
.nav__links { display: flex; gap: 26px; font-size: 13.5px; font-weight: var(--fw-bold); }
.nav__links a { color: #4C5D82; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #A8760B; }
.nav__links a[aria-current="page"] { color: var(--kima-blue); }
.nav__cta { font-size: 13.5px; padding: 11px 20px; }
.nav__burger {
  display: none; width: 42px; height: 42px; flex: none; border-radius: 10px;
  border: 1px solid rgba(11,29,61,.16); background: var(--white);
  align-items: center; justify-content: center; cursor: pointer; color: var(--deep-blue); padding: 0;
}
.nav__panel {
  display: none; background: var(--white); border-top: 1px solid rgba(11,29,61,.08);
  box-shadow: 0 24px 40px -24px rgba(11,29,61,.3); padding: 8px 24px 22px;
  flex-direction: column;
}
.nav__panel.is-open { display: flex; animation: fadein .3s var(--ease-standard) both; }
.nav__panel a {
  padding: 15px 4px; font-size: 16px; font-weight: 600; color: var(--deep-blue);
  border-bottom: 1px solid rgba(11,29,61,.08);
}
.nav__panel .btn { margin-top: 14px; justify-content: center; }
.ext::after {
  content: ""; width: 12px; height: 12px; margin-left: 5px; flex: none;
  background: currentColor; opacity: .65;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center/contain no-repeat;
  display: inline-block; vertical-align: middle;
}

/* ---------- Hero --------------------------------------------------------- */
.hero {
  /* capped so the crop stays composed on very tall displays */
  position: relative; min-height: min(88vh, 900px); display: flex; align-items: flex-end;
  padding: 190px 0 84px; overflow: hidden; background: var(--deep-blue);
}
.hero--short { min-height: min(64vh, 620px); padding: 176px 0 72px; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 32%;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,29,61,.95) 0%, rgba(11,29,61,.8) 46%, rgba(11,29,61,.3) 100%);
}
.hero__scrim--bottom {
  background: linear-gradient(0deg, rgba(11,29,61,.96) 0%, rgba(11,29,61,.72) 44%, rgba(11,29,61,.34) 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold); }
/* small type sits highest in the frame, where the scrim is thinnest */
.hero .crumb, .hero .eyebrow { text-shadow: 0 1px 14px rgba(11,29,61,.75); }
.hero__title {
  font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: clamp(3rem, 7.2vw, 5.6rem); line-height: .95; letter-spacing: -0.035em;
  color: var(--white); max-width: 17ch;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__lead { color: #C9D6EC; font-size: 1.2rem; line-height: 1.6; max-width: 60ch; margin-top: 26px; }
.hero__cta { margin-top: 38px; }

.hero__stats {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 52px;
}
.stat-chip {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); border-radius: 16px; padding: 16px 22px; min-width: 168px;
}
.stat-chip b {
  display: block; font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: 2.1rem; line-height: 1; color: var(--white); letter-spacing: -0.02em;
}
.stat-chip span { display: block; font-size: 12.5px; line-height: 1.45; color: #A9BBD9; margin-top: 7px; }

/* ---------- Cards -------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 34px 30px;
  transition: var(--transition-base); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(30,102,255,.28); }
.card__num {
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 13px;
  letter-spacing: .1em; color: var(--kima-blue); display: block; margin-bottom: 16px;
}
.card__body { margin-top: 12px; font-size: .97rem; line-height: 1.65; color: #4C5D82; }
.card--dark { background: var(--deep-blue-800); border-color: rgba(255,255,255,.12); }
.card--dark .h3, .card--dark .h4 { color: var(--white); }
.card--dark .card__body { color: #B9C6DE; }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }

/* Letter cards (L · B · E) */
.letter-card__glyph {
  display: block; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 84px;
  line-height: .78; letter-spacing: -0.05em;
  background: var(--gradient-horizon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--kima-blue);
}
.letter-card--gold .letter-card__glyph { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; }

/* Photo card */
.pcard {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--border-subtle); transition: var(--transition-base);
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard__media { position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center; }
.pcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,29,61,.55) 0%, rgba(11,29,61,0) 62%);
}
.pcard__tag {
  position: absolute; z-index: 2; left: 18px; bottom: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
}
.pcard__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.pcard__body .btn, .pcard__body .link-arrow { margin-top: auto; padding-top: 18px; }

/* Pillar card */
.pillar {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 34px 30px; color: var(--white); transition: var(--transition-base);
  background-size: cover; background-position: center;
}
.pillar::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,29,61,.95) 8%, rgba(11,29,61,.55) 55%, rgba(11,29,61,.2) 100%);
  transition: var(--transition-base);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar:hover::before { background: linear-gradient(0deg, rgba(11,29,61,.97) 8%, rgba(30,102,255,.5) 70%, rgba(30,102,255,.25) 100%); }
.pillar > * { position: relative; z-index: 2; }
.pillar__verb {
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 2.6rem;
  letter-spacing: -0.03em; line-height: 1; color: var(--white);
}
.pillar__hub { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.pillar p { color: #CBD8EE; font-size: .96rem; line-height: 1.6; margin-top: 14px; }
.pillar .link-arrow { color: var(--white); margin-top: 22px; }

/* ---------- Stat blocks -------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 28px; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: clamp(2.6rem, 4.4vw, 3.9rem); line-height: 1;
  letter-spacing: -0.03em; color: var(--kima-blue);
}
.sec--dark .stat b { color: var(--gold); }
.stat span { display: block; font-size: .9rem; line-height: 1.5; color: #4C5D82; margin-top: 12px; max-width: 24ch; }
.sec--dark .stat span { color: #A9BBD9; }

/* ---------- The road (LEAD → EXCEL → SCALE) ------------------------------ */
.road { position: relative; }
.road__track {
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px;
  position: relative; z-index: 2;
}
.road__line {
  position: absolute; left: 6%; right: 6%; top: 27px; height: 3px; z-index: 1;
  background: linear-gradient(90deg, var(--cool-grey) 0%, var(--kima-blue) 45%, var(--gold) 100%);
  border-radius: 999px;
}
.road__step {
  background: none; border: 0; padding: 0; text-align: center; cursor: pointer;
  font-family: inherit; color: inherit;
}
.road__dot {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--cool-grey);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 15px;
  color: var(--grey-500); transition: var(--transition-base);
}
.road__step[aria-selected="true"] .road__dot {
  border-color: var(--kima-blue); color: var(--kima-blue);
  box-shadow: 0 0 0 6px rgba(30,102,255,.14); transform: scale(1.08);
}
.road__step:hover .road__dot { border-color: var(--sky-blue); }
.road__verb {
  display: block; font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: 1.05rem; letter-spacing: -0.01em; color: var(--deep-blue);
}
.road__step[aria-selected="true"] .road__verb { color: var(--kima-blue); }
.road__note { display: block; font-size: 12.5px; line-height: 1.45; color: var(--grey-500); margin-top: 7px; }
.road__panel {
  margin-top: 46px; background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 40px 40px 42px; box-shadow: var(--shadow-sm);
}
.road__panel [data-road-body] { animation: fadein .35s var(--ease-standard) both; }

/* Hub badges */
.hub { display: flex; align-items: center; gap: 16px; }
.hub__photo {
  width: 74px; height: 74px; border-radius: 50%; flex: none;
  background-size: cover; background-position: center top;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px rgba(30,102,255,.28);
}
.hub__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.02rem; color: var(--deep-blue); }
.hub__role { font-size: 12.5px; color: var(--grey-500); margin-top: 3px; line-height: 1.4; }
.hub__owns { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--kima-blue); margin-top: 7px; }

/* ---------- Tabs (ecosystem / tracks) ----------------------------------- */
.tabs { display: flex; flex-wrap: wrap; gap: 12px; }
.tab {
  font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  padding: 12px 22px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-subtle); background: var(--white); color: #4C5D82;
  transition: var(--transition-base);
}
.tab:hover { border-color: var(--sky-blue); color: var(--kima-blue); }
.tab[aria-selected="true"] {
  background: var(--deep-blue); border-color: var(--deep-blue); color: var(--white);
}
.tabpanel { animation: fadein .35s var(--ease-standard) both; }
.tabpanel[hidden] { display: none; }

/* ---------- Quotes ------------------------------------------------------- */
.quote {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px 30px 28px;
  display: flex; flex-direction: column; transition: var(--transition-base);
}
.quote:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.quote__mark {
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 44px;
  line-height: .6; color: var(--gold); margin-bottom: 14px;
}
.quote__text { font-size: 1.02rem; line-height: 1.62; color: var(--deep-blue); flex: 1; }
.quote__who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.quote__ph {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background-size: cover; background-position: center top; background-color: var(--kima-blue-100);
}
.quote__ph--initial {
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-horizon); color: var(--white);
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 15px;
  letter-spacing: -0.01em;
}
.quote--dark .quote__ph--initial { background: rgba(255,200,61,.18); color: var(--gold); }
.quote__name { font-weight: 700; font-size: .92rem; color: var(--deep-blue); }
.quote__meta { font-size: 12px; color: var(--grey-500); margin-top: 2px; }
.quote--dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.quote--dark .quote__text { color: #E4ECFA; }
.quote--dark .quote__name { color: var(--white); }
.quote--dark .quote__meta { color: #8FA4C6; }

.pullquote {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(1.5rem, 2.7vw, 2.3rem); line-height: 1.24; letter-spacing: -0.02em;
  color: var(--white);
}

/* ---------- People ------------------------------------------------------- */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 32px 24px; }
.person { text-align: center; }
.person__photo {
  width: 100%; aspect-ratio: 1; border-radius: 50%; margin: 0 auto 16px;
  background-size: cover; background-position: center top; background-color: var(--kima-blue-050);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px rgba(30,102,255,.16);
  transition: var(--transition-base);
}
.person:hover .person__photo { box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--gold); transform: translateY(-4px); }
.person__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: .98rem; color: var(--deep-blue); line-height: 1.25; }
.person__role { font-size: 12px; color: var(--grey-500); margin-top: 5px; line-height: 1.45; }

.founder { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: center; }
.founder__photo {
  width: 260px; height: 260px; border-radius: var(--radius-lg);
  background-size: cover; background-position: center top; box-shadow: var(--shadow-md);
}

/* ---------- Mosaic gallery ---------------------------------------------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 186px; gap: 18px; }
.mosaic > div { border-radius: var(--radius-lg); background-size: cover; background-position: center; overflow: hidden; position: relative; }
.mosaic > div::after {
  content: ""; position: absolute; inset: 0; background: rgba(11,29,61,.12);
  transition: var(--transition-base);
}
.mosaic > div:hover::after { background: rgba(11,29,61,0); }
.mosaic .m-tall { grid-row: span 2; }
.mosaic .m-wide { grid-column: span 2; }

/* ---------- Marquee ----------------------------------------------------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 62px; align-items: center; width: max-content; animation: kimaMarquee 34s linear infinite; }
.marquee img { height: 46px; width: auto; object-fit: contain; opacity: .72; filter: saturate(.25); transition: var(--transition-base); }
.marquee img:hover { opacity: 1; filter: none; }
.marquee:hover .marquee__track { animation-play-state: paused; }

.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
.logo-grid figure {
  margin: 0; background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); height: 104px; display: flex; align-items: center;
  justify-content: center; padding: 14px 20px; transition: var(--transition-base);
}
.logo-grid figure:hover { box-shadow: var(--shadow-sm); border-color: rgba(30,102,255,.3); }
.logo-grid img { max-height: 56px; width: auto; object-fit: contain; }

/* ---------- Timeline ---------------------------------------------------- */
.tl { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.tl__item {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition-base);
}
.tl__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tl__img { height: 138px; background-size: cover; background-position: center; }
.tl__body { padding: 22px 24px 26px; }
.tl__when { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--kima-blue); }
.tl__what { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.1rem; color: var(--deep-blue); margin-top: 9px; }
.tl__desc { font-size: .89rem; line-height: 1.55; color: var(--grey-500); margin-top: 8px; }
.tl__hub { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-top: 14px; }
.tl__hub--academy { background: var(--kima-blue-100); color: var(--kima-blue-700); }
.tl__hub--scale { background: var(--gold-100); color: #8A6410; }

/* ---------- Corridors / globe ------------------------------------------- */
.corridor-art { position: relative; }
.corridor-art svg { width: 100%; height: auto; display: block; }
.corridor-art .arc {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: drawArc 2.2s var(--ease-standard) forwards;
}
@media (prefers-reduced-motion: reduce) { .corridor-art .arc { stroke-dashoffset: 0; } }
.corridor-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.corridor-list li {
  display: flex; align-items: center; gap: 12px; padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md);
  background: rgba(255,255,255,.04); font-size: .94rem; color: #D3DEF2;
}
.corridor-list b { color: var(--gold); font-family: var(--font-display); font-size: 1.05rem; }

/* Named corridor cards */
.corridor-card {
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md);
  background: rgba(255,255,255,.04); padding: 24px 26px 26px;
  transition: var(--transition-base);
}
.corridor-card:hover {
  background: rgba(255,255,255,.08); border-color: var(--gold); transform: translateY(-4px);
}
.corridor-card__n {
  display: block; font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: 12px; letter-spacing: .12em; color: var(--gold);
}
.corridor-card__name {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 1.16rem; line-height: 1.25; color: var(--white); margin-top: 10px;
}
.corridor-card__what { font-size: .92rem; line-height: 1.6; color: #B9C6DE; margin-top: 10px; }

/* ---------- Handoff band (Academy) -------------------------------------- */
.handoff {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  background: var(--deep-blue); color: var(--white);
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
}
.handoff__body { padding: 58px 54px; position: relative; z-index: 2; }
.handoff__media { min-height: 380px; background-size: cover; background-position: center; position: relative; }
.handoff__media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--deep-blue) 0%, rgba(11,29,61,.35) 55%, rgba(11,29,61,.1) 100%);
}
.handoff__logo { height: 46px; width: auto; margin-bottom: 26px; }

/* ---------- Routes (conversion) ----------------------------------------- */
.route {
  display: flex; flex-direction: column; padding: 34px 30px 32px;
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05); transition: var(--transition-base);
}
.route:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); border-color: var(--gold); }
.route__icon {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; background: rgba(255,200,61,.16); color: var(--gold); margin-bottom: 22px;
}
.route h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.22rem; color: var(--white); }
.route p { font-size: .94rem; line-height: 1.6; color: #B9C6DE; margin-top: 12px; flex: 1; }
.route .link-arrow { color: var(--gold); margin-top: 22px; }

/* ---------- Forms ------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--deep-blue); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--deep-blue);
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle); background: var(--white);
  transition: var(--transition-base); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--kima-blue); box-shadow: var(--shadow-focus);
}
.field textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__note { font-size: 12.5px; color: var(--grey-500); line-height: 1.55; }

.contact-card {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 30px 28px;
}
.contact-card a { font-weight: 600; }

/* ---------- Breadcrumb -------------------------------------------------- */
.crumb { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: #93A6C8; margin-bottom: 22px; }
.crumb a { color: #B9C6DE; }
.crumb a:hover { color: var(--gold); }

/* ---------- Footer ----------------------------------------------------- */
.footer { background: var(--white); color: #6B7B9E; padding: 60px 0 30px; border-top: 1px solid rgba(11,29,61,.08); }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 34px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(11,29,61,.08); margin-bottom: 24px;
}
.footer__brand img { height: 38px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 13.5px; max-width: 330px; line-height: 1.65; color: #6B7B9E; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(11,29,61,.16);
  display: inline-flex; align-items: center; justify-content: center; color: #4C5D82;
  transition: var(--transition-base);
}
.footer__social a:hover { border-color: var(--gold); color: #A8760B; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__cols span.t {
  font-size: 11px; letter-spacing: .1em; color: #6B7B9E; text-transform: uppercase;
  display: block; margin-bottom: 14px; font-weight: 700;
}
.footer__cols a { display: block; font-size: 13.5px; color: #4C5D82; margin-bottom: 10px; }
.footer__cols a:hover { color: #A8760B; }
.footer__base {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; color: #93A0B8;
}

/* ---------- Scroll reveal ----------------------------------------------
   Scoped to .js so that if JavaScript never runs, every section is
   simply visible instead of permanently transparent. */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in { animation: fadein .7s var(--ease-standard) forwards; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 1024px) {
  .split, .split--wide-right { grid-template-columns: 1fr; gap: 40px; }
  .g4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px; }
  .handoff { grid-template-columns: 1fr; }
  .handoff__media { min-height: 260px; order: -1; }
  .handoff__media::before { background: linear-gradient(0deg, var(--deep-blue) 0%, rgba(11,29,61,.25) 70%); }
  .tl { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .founder { grid-template-columns: 1fr; gap: 24px; }
  .founder__photo { width: 100%; max-width: 320px; height: 300px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .sec { padding: 68px 0; }
  .wrap { padding: 0 20px; }
  .nav__inner { padding: 12px 20px; }
  .road__track { grid-template-columns: 1fr; gap: 0; }
  .road__line { display: none; }
  .road__step { display: grid; grid-template-columns: 54px 1fr; gap: 16px; text-align: left; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
  .road__dot { margin: 0; }
  .road__panel { padding: 28px 24px 30px; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 148px; }
  .corridor-list { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .letter-card__glyph { font-size: 66px; margin-bottom: 12px; }
  .footer__cols { gap: 34px; }
}
@media (max-width: 640px) {
  .hero { min-height: 78vh; padding: 150px 0 62px; }
  .hero--short { min-height: auto; padding: 132px 0 56px; }
  .hero__scrim { background: linear-gradient(0deg, rgba(11,29,61,.96) 0%, rgba(11,29,61,.72) 55%, rgba(11,29,61,.45) 100%); }
  .hero__lead { font-size: 1.02rem; line-height: 1.55; margin-top: 20px; }
  .hero__cta { margin-top: 28px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__stats { margin-top: 34px; gap: 10px; }
  .stat-chip { min-width: 0; flex: 1 1 44%; padding: 14px 16px; }
  .stat-chip b { font-size: 1.7rem; }
  .people { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 24px 16px; }
  .marquee__track { animation-duration: 18s; gap: 40px; }
  .marquee img { height: 32px; }
  .card, .quote { padding: 26px 22px; }
  .handoff__body { padding: 38px 26px; }
  .footer__top { gap: 26px; }
}
