/* ================= Voltron =================
   Colors sampled directly from the wordmark:
   green  #74C35B   (Day Zero)
   teal   #67AB94
   steel  #61A0AF
   blue   #558AE7   (global scale)
   Base: white, native home of the logo.
=============================================*/

:root {
  --green: #74C35B;
  --teal: #67AB94;
  --steel: #61A0AF;
  --blue: #558AE7;
  --grad: linear-gradient(93deg, #74C35B 0%, #67AB94 34%, #61A0AF 62%, #558AE7 100%);
  --ink: #12242F;
  --muted: #5C7080;
  --paper: #FFFFFF;
  --tint: #F5F8F9;
  --line: #E4EAEE;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Albert Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(116, 195, 91, 0.3); }

h1, h2, h3 { font-family: var(--font-display); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================= nav ================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1rem clamp(1.2rem, 5vw, 4.5rem);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-logo img { height: 24px; display: block; }

.nav-links { display: flex; gap: 1.9rem; margin-left: auto; }

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }

.nav-burger { display: none; }

/* ================= buttons ================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 22px rgba(97, 160, 175, 0.35);
}

.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(97, 160, 175, 0.45); }

.btn-line { border: 1.5px solid var(--line); color: var(--ink); }

.btn-line:hover { border-color: var(--steel); transform: translateY(-2px); }

.btn-ink { background: var(--ink); color: #fff; }

.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(18, 36, 47, 0.28); }

.btn-white { background: #fff; color: var(--ink); }

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); }

.nav-cta { padding: 0.58rem 1.35rem; font-size: 0.88rem; }

/* ================= hero ================= */
.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vh, 5rem) 1.5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(560px 420px at 12% 8%, rgba(116, 195, 91, 0.13), transparent 70%),
    radial-gradient(640px 480px at 92% 30%, rgba(85, 138, 231, 0.13), transparent 70%),
    radial-gradient(420px 380px at 70% 90%, rgba(103, 171, 148, 0.10), transparent 70%),
    linear-gradient(var(--paper), var(--paper));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 36, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 36, 47, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
}

.hero-grid {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy { text-align: left; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero .eyebrow { margin-bottom: 1.6rem; }

.hero-h {
  font-weight: 800;
  font-size: clamp(2.6rem, 5.6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-sub {
  max-width: 540px;
  margin-top: 1.7rem;
  font-size: 1.16rem;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.hero-trust {
  margin-top: 2.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-trust span { color: var(--ink); font-weight: 700; }

/* ---- signature graphic: the assembled V ---- */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }

.vmark { width: min(100%, 400px); height: auto; }

.v-orbit {
  transform-origin: 210px 200px;
  animation: orbit-spin 60s linear infinite;
}

.v-seg { opacity: 0; animation: seg-in 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }

.v-seg1 { transform: translate(-46px, -34px); animation-delay: 0.25s; }
.v-seg2 { transform: translate(-40px, 34px);  animation-delay: 0.45s; }
.v-seg3 { transform: translate(40px, 34px);   animation-delay: 0.65s; }
.v-seg4 { transform: translate(46px, -34px);  animation-delay: 0.85s; }

.v-pulse {
  opacity: 0;
  transform-origin: 210px 330px;
  animation: pulse-out 2.6s ease-out 1.5s infinite;
}

.v-node { opacity: 0; animation: node-in 0.6s ease forwards, node-drift 6s ease-in-out 1.6s infinite alternate; }
.vn1 { animation-delay: 1.1s, 1.6s; }
.vn2 { animation-delay: 1.2s, 2.1s; }
.vn3 { animation-delay: 1.3s, 1.8s; }
.vn4 { animation-delay: 1.4s, 2.4s; }
.vn5 { animation-delay: 1.5s, 2.0s; }

@keyframes seg-in { to { opacity: 1; transform: translate(0, 0); } }
@keyframes pulse-out {
  0% { opacity: 0.7; transform: scale(0.4); }
  70% { opacity: 0; transform: scale(1.8); }
  100% { opacity: 0; transform: scale(1.8); }
}
@keyframes node-in { to { opacity: 0.9; } }
@keyframes node-drift { to { transform: translateY(-10px); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.visual-caption { width: min(100%, 340px); }

.spectrum-bar {
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.spectrum-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  animation: spectrum-grow 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) 1.3s forwards;
}

@keyframes spectrum-grow { to { width: 100%; } }

.spectrum-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sl-green { color: var(--green); }
.sl-blue { color: var(--blue); }

/* ---- stat strip ---- */
.stats {
  max-width: 1140px;
  width: 100%;
  margin: clamp(2.6rem, 6vh, 4.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.stat {
  padding: 1.6rem 1.2rem 2rem;
  text-align: left;
  border-left: 1px solid var(--line);
}

.stat:first-child { border-left: none; padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

.stat-label {
  margin-top: 0.3rem;
  font-size: 0.86rem;
  color: var(--muted);
}

/* ================= sections ================= */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem;
}

.section > * { max-width: 1140px; margin-left: auto; margin-right: auto; }

.section-tint { background: var(--tint); }

.section-head { margin-bottom: 3.2rem; }

.section-head h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-top: 0.9rem;
}

.lede { max-width: 620px; margin-top: 1.2rem; font-size: 1.08rem; color: var(--muted); }

/* ================= journey ================= */
.journey {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  counter-reset: none;
  position: relative;
}

.stage {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--stage-color);
  border-radius: 16px;
  padding: 1.7rem 1.4rem 1.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stage:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(18, 36, 47, 0.09);
}

.stage-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--stage-color);
  letter-spacing: 0.1em;
}

.stage h3 {
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0.5rem 0 0.7rem;
}

.stage p:last-child { font-size: 0.95rem; color: var(--muted); }

/* ================= equation band ================= */
.band {
  background: var(--ink);
  text-align: center;
  padding: clamp(3.6rem, 8vw, 5.5rem) 1.5rem;
}

.band-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}

.band-eq {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.band-eq .eq-green { color: var(--green); }
.band-eq .eq-teal { color: #7BC4AE; }
.band-eq .eq-blue { color: #7FA9F0; }

.band-plus { color: #4E6474; font-weight: 500; padding: 0 0.35em; }

.band-sub {
  max-width: 560px;
  margin: 1.3rem auto 0;
  color: #9FB2C0;
  font-size: 1.02rem;
}

/* ================= why ================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.why-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.6rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad);
}

.why-item:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(18, 36, 47, 0.08); }

.why-item h3 { font-weight: 700; font-size: 1.12rem; margin-bottom: 0.5rem; }

.why-item p { color: var(--muted); font-size: 0.96rem; }

/* ================= portfolio cards ================= */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.pcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.7rem 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pcard:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(18, 36, 47, 0.08); }

.pcard-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pc);
  margin-bottom: 0.8rem;
}

.pcard p:last-child { color: var(--muted); font-size: 0.96rem; }

/* ================= people ================= */
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.person {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.person:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(18, 36, 47, 0.08); }

.person-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(130deg, var(--pm1), var(--pm2));
  margin-bottom: 1.3rem;
}

.person h3 { font-weight: 700; font-size: 1.3rem; }

.person-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0.4rem 0 1rem;
}

.person-bio { color: var(--muted); font-size: 0.97rem; }

/* ================= programs ================= */
.prog {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.prog:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(18, 36, 47, 0.08); }

.prog-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}

.prog-len {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pc);
}

.prog p:not(.prog-name):not(.prog-len) { color: var(--muted); font-size: 0.96rem; }

.prog-link {
  margin-top: auto;
  padding-top: 0.9rem;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  color: var(--pc);
}

.prog-link:hover { text-decoration: underline; }

/* ---- hero coaching link ---- */
.link-arrow {
  align-self: center;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  color: var(--steel);
  transition: color 0.2s ease;
}

.link-arrow:hover, .link-arrow:focus-visible { color: var(--blue); }

/* ---- coach note (about Shalini) ---- */
.coach-note {
  max-width: 780px;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-image: var(--grad) 1;
  border-radius: 0 16px 16px 0;
  background: var(--paper);
  padding: 1.9rem 2rem;
  margin-bottom: 3rem;
}

.coach-hi {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.coach-note p:last-child { color: var(--muted); font-size: 1rem; }

.coach-note strong { color: var(--ink); }

/* ---- method label ---- */
.method-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.3rem;
}

/* ---- personas ---- */
.personas { margin-top: 3.2rem; max-width: 780px; }

.personas h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}

.personas-lede { margin-top: 0.7rem; color: var(--muted); }

.personas-list {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.personas-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
}

.personas-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- becoming closing ---- */
.become-close {
  margin-top: 4rem;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 3.4rem;
}

.become-lines {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.become-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.35;
  margin: 1.6rem auto 2.2rem;
  max-width: 680px;
}

.become-mail { margin-top: 1.1rem; font-size: 0.92rem; color: var(--muted); }

.become-mail a { color: var(--steel); font-weight: 600; text-decoration: none; }

.become-mail a:hover { text-decoration: underline; }

/* ================= global hubs ================= */
.hubs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.6rem;
}

.hub {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.7rem;
}

.hub-city { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }

.hub-addr { margin-top: 0.7rem; color: var(--muted); font-size: 0.96rem; }

.hub-connector { min-width: clamp(60px, 12vw, 160px); }

.hub-line {
  height: 4px;
  border-radius: 999px;
  background: var(--grad);
}

/* ================= CTA ================= */
.cta {
  background: var(--grad);
  text-align: center;
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  color: #fff;
}

.cta h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  letter-spacing: -0.02em;
}

.cta p { max-width: 480px; margin: 1rem auto 2rem; font-size: 1.1rem; color: rgba(255, 255, 255, 0.92); }

/* ================= footer ================= */
.footer {
  text-align: center;
  padding: 3.4rem 1.5rem 3.6rem;
  border-top: 1px solid var(--line);
}

.footer-logo { height: 22px; margin-bottom: 1.2rem; }

.footer-eq {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}

.footer-eq span { color: var(--muted); font-weight: 500; padding: 0 0.2em; }

.footer-legal {
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ================= reveal ================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ================= reduced motion ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .v-seg, .v-node { animation: none; opacity: 1; transform: none; }
  .v-pulse, .v-orbit { animation: none; }
  .spectrum-fill { animation: none; width: 100%; }
  .btn, .stage, .pcard, .person, .prog, .why-item { transition: none; }
}

/* ================= responsive ================= */
@media (max-width: 980px) {
  .journey { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .vmark { width: min(70vw, 340px); }
  .stats { grid-template-columns: 1fr 1fr; border-top: none; }
  .stat { border-top: 1px solid var(--line); }
  .stat:first-child { padding-left: 1.2rem; }
  .stat:nth-child(odd) { border-left: none; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; text-align: center; }
  .stat:first-child { padding-left: 0; }
}

@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr; }
  .people { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hubs { grid-template-columns: 1fr; }
  .hub-connector { display: none; }
}

@media (max-width: 640px) {
  .journey { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { gap: 1rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem 1.5rem; border-top: 1px solid var(--line); color: var(--ink); }
  .nav-cta { margin-left: auto; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
  }
  .nav-burger span { display: block; width: 18px; height: 2px; background: var(--ink); }
}

/* ================= v3 additions: coaching-led multi-page ================= */

/* centered short hero (coaching / about) */
.hero-short { min-height: auto; padding-bottom: clamp(3rem, 7vh, 5rem); }
.hero-center { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--steel);
  margin-top: 1.4rem;
}
.hero-ctas-center { justify-content: center; }

/* section CTA row */
.section-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2.4rem; }

/* wide personas */
.personas-wide { max-width: 720px; }

/* premise */
.premise-copy { max-width: 760px; font-size: 1.12rem; color: var(--muted); }
.premise-copy p + p { margin-top: 1rem; }
.premise-copy strong { color: var(--ink); }

/* three-stage journey variant */
.journey-3 { grid-template-columns: repeat(3, 1fr); }

/* coach section */
.coach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
}
.person-mark-lg { width: 88px; height: 88px; font-size: 1.4rem; }
.coach-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; margin-top: 0.2rem; }
.coach-side { border: 1px solid var(--line); border-radius: 18px; padding: 1.9rem 1.7rem; }
.cred-list { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.55rem; }
.cred-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.cred-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.cred-link { margin-top: 1.2rem; }
.cred-link a { color: var(--steel); font-weight: 600; text-decoration: none; }
.cred-link a:hover { text-decoration: underline; }
.coach-bio { font-size: 1.05rem; color: var(--muted); }
.coach-bio p + p { margin-top: 1rem; }
.coach-bio strong { color: var(--ink); }
.coach-bio .btn { margin-top: 1.8rem; }

/* program dropdowns */
.prog-drop {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pc);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.prog-drop summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.3rem 1.5rem;
  transition: background 0.2s ease;
}
.prog-drop summary::-webkit-details-marker { display: none; }
.prog-drop summary:hover { background: var(--tint); }
.drop-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.drop-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc);
}
.drop-chev { margin-left: auto; color: var(--muted); transition: transform 0.25s ease; }
.prog-drop[open] .drop-chev { transform: rotate(180deg); }
.drop-body { padding: 0.4rem 1.6rem 1.8rem; }
.drop-body > p { color: var(--muted); margin-bottom: 0.8rem; }
.drop-phase {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.3rem 0 0.6rem;
}
.drop-body ul { list-style: none; display: grid; gap: 0.55rem; }
.drop-body li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.drop-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pc);
}
.drop-body li strong { color: var(--ink); }
.drop-note { margin-top: 1rem; font-size: 0.95rem; color: var(--muted); }
.drop-note strong { color: var(--ink); }
.drop-body .btn { margin-top: 1.4rem; }

/* format table */
.fmt-table { margin-top: 2rem; overflow-x: auto; }
.fmt-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.fmt-table th, .fmt-table td {
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.fmt-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--tint);
}
.fmt-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.fmt-table td { color: var(--muted); }
.fmt-table tr:last-child td { border-bottom: none; }

/* bio blocks (about page) */
.bio-block {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
}
.bio-block:first-child { border-top: none; padding-top: 0; }
.bio-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-top: 0.4rem; }
.bio-main { font-size: 1.02rem; color: var(--muted); }
.bio-main p + p { margin-top: 1rem; }
.bio-main .btn { margin-top: 1.7rem; }

/* CTA extras */
.cta-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.btn-white-line { border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff; }
.btn-white-line:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.cta p strong { color: #fff; }
.cta-foot { margin-top: 1.6rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); }
.cta-foot a { color: #fff; font-weight: 600; }

/* footer columns */
.footer-cols {
  max-width: 860px;
  margin: 1.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  text-align: left;
}
.footer-cols p { font-size: 0.9rem; color: var(--muted); }
.footer-h {
  font-family: var(--font-mono);
  font-size: 0.7rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel) !important;
  margin-bottom: 0.4rem;
}
.footer-cols a { color: var(--ink); font-weight: 600; text-decoration: none; }
.footer-cols a:hover { text-decoration: underline; }
.footer .footer-legal { margin-top: 2.2rem; }

/* responsive for v3 */
@media (max-width: 900px) {
  .coach-grid { grid-template-columns: 1fr; }
  .bio-block { grid-template-columns: 1fr; }
  .journey-3 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; text-align: center; }
}
.bio-side { border: 1px solid var(--line); border-radius: 18px; padding: 1.9rem 1.7rem; }

/* ================= v4: photo + form CTA polish ================= */
.hero-grid-coach { grid-template-columns: 1.25fr 0.75fr; }

.hero-photo { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }

.hero-photo img {
  width: min(100%, 340px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(18, 36, 47, 0.16);
  border: 4px solid #fff;
  outline: 1.5px solid var(--line);
}

.hero-photo-cap {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.coach-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 1.1rem;
}

@media (max-width: 900px) {
  .hero-grid-coach { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo img { width: min(60vw, 280px); }
}

/* ================= v5: videos ================= */
.video-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.video-card { margin: 0; }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--tint);
  box-shadow: 0 10px 26px rgba(18, 36, 47, 0.07);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card figcaption {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.video-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #E62B1E;
  border-radius: 5px;
  padding: 0.14rem 0.45rem;
  margin-right: 0.5rem;
  vertical-align: 1px;
}

.video-series-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 2.6rem 0 1.1rem;
}

@media (max-width: 900px) {
  .video-feature { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ================= v6: influencer layer ================= */

/* seen & heard at */
.media-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--tint);
  text-align: center;
  padding: 1.5rem 1.5rem 1.6rem;
}

.media-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.media-names {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.9vw, 1.1rem);
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* signature quote band */
.quote-band {
  background: var(--ink);
  text-align: center;
  padding: clamp(3.6rem, 8vw, 5.5rem) 1.5rem;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.4;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.6vw, 2.4rem);
  line-height: 1.32;
  color: #EDF3F8;
  max-width: 860px;
  margin: 1rem auto 0;
  letter-spacing: -0.01em;
}

.grad-text-bright {
  background: linear-gradient(93deg, #8BD877 0%, #7CC9B2 40%, #7FABF0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-attr {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8FA6B8;
}

/* book section */
.book-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.book-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(18, 36, 47, 0.18);
  display: block;
  margin: 0 auto;
}

.book-copy h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-top: 0.9rem;
}

.book-subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--steel);
  margin: 0.4rem 0 1.2rem;
}

.book-copy p:not(.eyebrow):not(.book-subtitle) {
  color: var(--muted);
  font-size: 1.03rem;
}

.book-copy p + p { margin-top: 0.9rem; }

.book-copy .hero-ctas { margin-top: 1.8rem; }

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-photo img { max-width: 320px; }
}

/* ================= v7: transparent cutout portraits ================= */
.hero-photo-cutout { position: relative; }

.hero-photo-cutout::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(116, 195, 91, 0.35), rgba(103, 171, 148, 0.30), rgba(85, 138, 231, 0.35));
  z-index: 0;
}

.hero-photo-cutout img {
  position: relative;
  z-index: 1;
  aspect-ratio: auto;
  border-radius: 0 0 24px 24px;
  border: none;
  outline: none;
  box-shadow: none;
  filter: drop-shadow(0 18px 34px rgba(18, 36, 47, 0.22));
}

.coach-photo-cutout {
  aspect-ratio: auto;
  border-radius: 50% 50% 16px 16px;
  background: linear-gradient(135deg, rgba(116, 195, 91, 0.22), rgba(85, 138, 231, 0.22));
  padding-top: 0.6rem;
  filter: drop-shadow(0 10px 22px rgba(18, 36, 47, 0.16));
}

/* ================= v8: chapters hero ================= */
.chapters { width: min(100%, 400px); height: auto; }

.ch-block, .ch-num {
  opacity: 0;
  animation: ch-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.ch-b1 { animation-delay: 0.2s; }
.ch-b2 { animation-delay: 0.45s; }
.ch-b3 { animation-delay: 0.7s; }
.ch-b4 { animation-delay: 0.95s; }

.ch-path {
  stroke-dashoffset: 60;
  animation: ch-dash 2.4s linear infinite;
  opacity: 0;
  animation-name: ch-dash, fade-in;
  animation-duration: 2.4s, 0.6s;
  animation-timing-function: linear, ease;
  animation-iteration-count: infinite, 1;
  animation-delay: 0s, 1.1s;
  animation-fill-mode: none, forwards;
}

.ch-arrow {
  opacity: 0;
  animation: ch-rise 0.6s ease forwards;
  animation-delay: 1.3s;
}

@keyframes ch-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ch-dash { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }

/* the two doors */
.doors {
  max-width: 1140px;
  width: 100%;
  margin: clamp(2.4rem, 6vh, 4rem) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.door {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--pc);
  border-radius: 18px;
  padding: 2rem 1.9rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.door:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(18, 36, 47, 0.10); }

.door-num {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pc);
}

.door h2 {
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.door p:not(.door-num) { color: var(--muted); font-size: 1rem; }

.door .btn { margin-top: 0.7rem; }

.hero-closer {
  max-width: 1140px;
  width: 100%;
  margin: clamp(2rem, 5vh, 3rem) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--ink);
  padding-bottom: 1rem;
}

@media (max-width: 900px) {
  .doors { grid-template-columns: 1fr; }
}

/* ================= v9: clarity & distinction ================= */
.door-list { list-style: none; display: grid; gap: 0.4rem; margin: 0.2rem 0 0.3rem; }

.door-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}

.door-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pc);
  font-weight: 700;
}

.switch-strip {
  border-top: 1px solid var(--line);
  background: var(--tint);
  text-align: center;
  padding: 1.2rem 1.5rem;
}

.switch-strip p { font-size: 0.98rem; color: var(--muted); }

.switch-strip a { color: var(--ink); font-weight: 700; text-decoration: none; }

.switch-strip a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================= v10: studio narrative ================= */
.footer-eqline {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.footer-eqline span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ================= v11: premium polish ================= */

/* anchor offset under sticky nav */
section[id], div[id] { scroll-margin-top: 84px; }

/* nav: scrolled shadow + current page */
.nav { transition: box-shadow 0.25s ease; }
.nav.nav-scrolled { box-shadow: 0 6px 24px rgba(18, 36, 47, 0.08); }
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 2px solid transparent;
  border-image: var(--grad) 1;
  padding-bottom: 3px;
}

/* career studio strip (home) */
.strip-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.strip-photo { position: relative; display: flex; justify-content: center; }

.strip-photo::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(85%, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(116, 195, 91, 0.30), rgba(85, 138, 231, 0.30));
}

.strip-photo img {
  position: relative;
  width: min(100%, 340px);
  filter: drop-shadow(0 16px 30px rgba(18, 36, 47, 0.2));
}

.strip-copy h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 0.9rem;
}

.strip-lede { margin-top: 1.1rem; color: var(--muted); font-size: 1.05rem; max-width: 560px; }

.strip-copy .hero-ctas { margin-top: 1.7rem; }

@media (max-width: 900px) {
  .strip-grid { grid-template-columns: 1fr; text-align: center; }
  .strip-lede { margin-left: auto; margin-right: auto; }
  .strip-copy .hero-ctas { justify-content: center; }
}

/* dark premium footer */
.footer {
  background: var(--ink);
  border-top: none;
}

.footer::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--grad);
  margin: -3.4rem -1.5rem 3.2rem;
}

.footer-cols p { color: #9FB2C0; }
.footer-cols a { color: #EDF3F8; }
.footer-h { color: #7BC4AE !important; }
.footer-eqline { color: #EDF3F8; }
.footer-legal { color: #7C90A1; }
.footer-logo { filter: brightness(1.15); }

/* ================= v12: venture partner minis ================= */
.partners-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}

.pmini {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
}

.pmini .person-mark { width: 52px; height: 52px; font-size: 0.9rem; margin: 0; flex-shrink: 0; }

.pmini-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }

.pmini-line { margin-top: 0.25rem; font-size: 0.88rem; color: var(--muted); }

.li-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--steel);
}

.li-link:hover { color: var(--blue); }

@media (max-width: 900px) {
  .partners-mini { grid-template-columns: 1fr; }
}
.pmini-body { flex: 1; }

/* ================= v13: partner avatars ================= */
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  outline: 1.5px solid var(--line);
}

.avatar-lg {
  width: 88px;
  height: 88px;
  margin-bottom: 1.3rem;
  display: block;
}

/* ================= v14: final copy pass ================= */
.strip-framework {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.arc-closer {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--ink);
  max-width: 640px;
}

/* ================= v15: equal partners + accelerator ================= */

/* big partner cards (home) */
.partner-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.partner-big {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.partner-big:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(18, 36, 47, 0.09); }

.partner-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.4rem;
  border: 3px solid #fff;
  outline: 2px solid var(--line);
}

.partner-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.partner-photo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, #74C35B, #67AB94);
}

.partner-photo-mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}

.partner-big h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; }

.partner-big .person-role { margin: 0.4rem 0 1.1rem; }

.partner-lines { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.2rem; }

.partner-lines li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.partner-lines li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .partner-big-grid { grid-template-columns: 1fr; }
}

/* accelerator graphic */
.accel { width: min(100%, 400px); height: auto; }

.accel-path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: accel-draw 1.4s cubic-bezier(0.3, 0, 0.4, 1) 0.3s forwards;
}

@keyframes accel-draw { to { stroke-dashoffset: 0; } }

.accel-arrow { opacity: 0; animation: fade-in 0.45s ease 1.6s forwards; }

.accel-node { opacity: 0; transform: scale(0.4); transform-origin: center; transform-box: fill-box; animation: node-pop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.4) forwards; }
.an1 { animation-delay: 0.55s; }
.an2 { animation-delay: 0.95s; }
.an3 { animation-delay: 1.35s; }

@keyframes node-pop { to { opacity: 1; transform: scale(1); } }

.speed { opacity: 0; animation: speed-dash 1.6s ease-in-out 1.8s infinite; }
.s2 { animation-delay: 2.1s; }
.s3 { animation-delay: 2.4s; }

@keyframes speed-dash {
  0% { opacity: 0; transform: translateX(-16px); }
  30% { opacity: 0.85; }
  100% { opacity: 0; transform: translateX(26px); }
}

@media (prefers-reduced-motion: reduce) {
  .accel-path { animation: none; stroke-dashoffset: 0; }
  .accel-arrow, .accel-node { animation: none; opacity: 1; transform: none; }
  .speed { animation: none; opacity: 0.6; }
}

/* ================= v16: rocket hero ================= */
.rocket-svg { width: min(100%, 400px); height: auto; }

.rk-trail {
  stroke-dashoffset: 400;
  animation: trail-flow 1.6s ease-out 0.3s forwards, trail-drift 2.8s linear 2s infinite;
}

@keyframes trail-flow { to { stroke-dashoffset: 0; } }
@keyframes trail-drift { to { stroke-dashoffset: -19; } }

.rk-rocket {
  opacity: 0;
  animation: rk-launch 1.5s cubic-bezier(0.3, 0, 0.3, 1) 0.25s forwards, rk-float 4s ease-in-out 1.9s infinite alternate;
}

@keyframes rk-launch {
  from { opacity: 0; transform: translate(-190px, 210px) scale(0.85); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes rk-float { to { transform: translate(6px, -8px); } }

.rk-flame { transform-origin: 0 44px; animation: flame-flicker 0.35s ease-in-out infinite alternate; }
.rk-flame2 { animation-duration: 0.25s; }

@keyframes flame-flicker { to { transform: scaleY(1.35); } }

.rk-puff { opacity: 0; animation: puff-rise 2.6s ease-out infinite; }
.p2 { animation-delay: 0.8s; }
.p3 { animation-delay: 1.5s; }

@keyframes puff-rise {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  25% { opacity: 0.75; }
  100% { opacity: 0; transform: translate(-14px, -34px) scale(1.5); }
}

@media (prefers-reduced-motion: reduce) {
  .rk-trail { animation: none; stroke-dashoffset: 0; }
  .rk-rocket { animation: none; opacity: 1; transform: none; }
  .rk-flame, .rk-flame2 { animation: none; }
  .rk-puff { animation: none; opacity: 0.5; }
}

/* ================= v17: video facades ================= */
.video-facade {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--tint);
  cursor: pointer;
  position: relative;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.25s ease;
}

.video-facade:hover img { transform: scale(1.04); filter: brightness(0.92); }

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 20px rgba(18, 36, 47, 0.28);
  transition: transform 0.22s ease, background 0.22s ease;
}

.video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--ink);
}

.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.1); background: #fff; }

.video-facade:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.video-sub { color: var(--muted); font-weight: 400; }

.video-out {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--steel);
  text-decoration: none;
}

.video-out:hover { color: var(--blue); text-decoration: underline; }

/* logo sizing — explicit dims set in HTML for CLS; CSS controls display size */
.nav-logo img, .footer-logo { width: auto; }
