:root {
  --ink: #09070d;
  --charcoal: #111116;
  --panel: #171319;
  --paper: #f7f1e7;
  --white: #ffffff;
  --cream: #f7ead5;
  --gold: #f2bc63;
  --amber: #e99136;
  --pink: #f047a4;
  --violet: #9b65ff;
  --plum: #5b214d;
  --line: rgba(247, 234, 213, 0.16);
  --dark-line: rgba(9, 7, 13, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --mx: 50%;
  --my: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sora", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.intro-active {
  overflow: hidden;
}

a {
  color: inherit;
}

.intro-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(240, 71, 164, 0.2), transparent 24rem),
    radial-gradient(circle at 58% 46%, rgba(155, 101, 255, 0.18), transparent 28rem),
    linear-gradient(145deg, #030306 0%, #090611 54%, #130717 100%);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 420ms ease 1080ms, visibility 0ms linear 1500ms;
  visibility: visible;
  isolation: isolate;
}

.intro-loader::before,
.intro-loader::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.intro-loader::before {
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, transparent 0 110px, rgba(247, 234, 213, 0.08) 111px 112px),
    repeating-linear-gradient(0deg, transparent 0 110px, rgba(247, 234, 213, 0.06) 111px 112px);
  mask-image: radial-gradient(circle at 50% 50%, black 0 42%, transparent 72%);
}

.intro-loader::after {
  z-index: 1;
  width: min(72vw, 760px);
  aspect-ratio: 1.8 / 1;
  border: 1px solid rgba(247, 234, 213, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 48%, rgba(242, 188, 99, 0.2), transparent 34%),
    radial-gradient(circle at 58% 52%, rgba(240, 71, 164, 0.24), transparent 42%);
  filter: blur(10px);
  transform: rotate(-8deg);
}

.intro-logo-flight {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(360px, 48vw, 820px);
  height: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  filter:
    drop-shadow(0 0 16px rgba(255, 211, 111, 0.34))
    drop-shadow(0 0 34px rgba(240, 71, 164, 0.42))
    drop-shadow(0 34px 64px rgba(0, 0, 0, 0.42));
  animation: introLogoArrive 620ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms forwards;
  transition:
    transform 1080ms cubic-bezier(0.18, 0.9, 0.2, 1),
    filter 1080ms ease,
    opacity 320ms ease 1080ms;
  will-change: transform, opacity, filter;
}

.intro-loader.is-exiting {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.intro-loader.is-exiting .intro-logo-flight {
  opacity: 0.98;
  transform:
    translate(calc(-50% + var(--intro-x, 0px)), calc(-50% + var(--intro-y, 0px)))
    scale(var(--intro-scale, 1));
  filter:
    drop-shadow(0 0 12px rgba(255, 211, 111, 0.24))
    drop-shadow(0 0 24px rgba(240, 71, 164, 0.28))
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.32));
}

.intro-loader.is-hidden {
  display: none;
}

body.intro-active:not(.intro-handoff) .logo-stage {
  opacity: 0;
}

body.intro-active .logo-mark {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1);
}

body.intro-handoff .logo-stage {
  opacity: 1;
  transition: opacity 260ms ease;
}

@keyframes introLogoArrive {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  color: var(--cream);
  background: rgba(9, 7, 13, 0.68);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-cta,
.button,
.join-card a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 44px;
  border-radius: 6px;
  overflow: visible;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 7px rgba(242, 188, 99, 0.24))
    drop-shadow(0 0 10px rgba(240, 71, 164, 0.2));
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.header-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}

.mobile-menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 72px) 78px;
  color: var(--cream);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(240, 71, 164, 0.18), transparent 24rem),
    radial-gradient(circle at 84% 22%, rgba(155, 101, 255, 0.22), transparent 26rem),
    linear-gradient(112deg, #030306 0%, #0a0711 48%, #130717 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
}

.hero::before {
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(242, 188, 99, 0.22) 58.2%, transparent 58.6%),
    repeating-linear-gradient(90deg, transparent 0 98px, rgba(255, 255, 255, 0.08) 100px 101px),
    repeating-linear-gradient(0deg, transparent 0 98px, rgba(255, 255, 255, 0.06) 100px 101px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 24%, black 82%, transparent 100%);
}

.hero::after {
  opacity: 0.62;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(247, 234, 213, 0.08) 58.3%, transparent 58.6%),
    linear-gradient(118deg, transparent 0 62%, rgba(240, 71, 164, 0.16) 62.3%, transparent 62.7%),
    linear-gradient(121deg, transparent 0 67%, rgba(242, 188, 99, 0.14) 67.3%, transparent 67.8%);
}

.hero-grid {
  position: absolute;
  right: -10vw;
  bottom: -15vh;
  width: 70vw;
  height: 45vh;
  transform: perspective(700px) rotateX(62deg) rotateZ(-6deg);
  background:
    linear-gradient(90deg, rgba(242, 188, 99, 0.45) 1px, transparent 1px),
    linear-gradient(0deg, rgba(240, 71, 164, 0.34) 1px, transparent 1px);
  background-size: 74px 74px;
  filter: blur(0.1px);
  opacity: 0.34;
}

.hero-content,
.logo-stage,
.hero-footer {
  position: relative;
  z-index: 3;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(520px, 1fr);
  align-items: center;
  column-gap: clamp(72px, 7vw, 150px);
  width: min(100%, 1760px);
  max-width: none;
  margin: 0 auto;
}

.hero-text {
  position: relative;
  z-index: 5;
  max-width: 720px;
  padding-top: clamp(8px, 2vh, 26px);
}

.eyebrow,
.section-kicker,
.stage-label {
  margin: 0 0 20px;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.hero-text .eyebrow {
  margin-bottom: clamp(42px, 6vh, 76px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.8vh, 10px);
  margin: 0 0 clamp(28px, 4vh, 42px);
  font-family: "Plus Jakarta Sans", "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(5.2rem, 5.4vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: none;
}

.hero-line {
  position: relative;
  z-index: 5;
  display: block;
  width: fit-content;
  white-space: nowrap;
  word-spacing: 0.04em;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.hero-line-build {
  color: var(--gold);
}

.hero-line-lead {
  color: var(--pink);
  margin-left: 0;
}

.hero-line-transform {
  color: var(--cream);
  font-size: 0.88em;
  margin-top: 0;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(247, 234, 213, 0.84);
  font-size: clamp(1.12rem, 1.38vw, 1.34rem);
  line-height: 1.46;
  position: relative;
  z-index: 5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 950;
}

.button-primary {
  background: linear-gradient(110deg, var(--gold), var(--pink));
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(240, 71, 164, 0.24);
}

.button-secondary {
  border: 1px solid rgba(247, 234, 213, 0.5);
  color: var(--cream);
}

.logo-stage {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  left: auto;
  top: clamp(4px, 1.4vh, 18px);
  min-width: 0;
  display: grid;
  place-items: center;
  width: clamp(420px, 32vw, 600px);
  min-height: auto;
  transform-style: preserve-3d;
}

.logo-stage::before,
.logo-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.logo-stage::before {
  inset: 11% 2% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 46%, rgba(240, 71, 164, 0.38), transparent 44%),
    radial-gradient(circle at 68% 48%, rgba(155, 101, 255, 0.34), transparent 38%),
    radial-gradient(circle at 34% 52%, rgba(242, 188, 99, 0.28), transparent 36%);
  filter: blur(34px);
  opacity: 0.82;
  transform: translateZ(-28px);
}

.logo-stage::after {
  inset: 3% -7% 8%;
  border-radius: 50%;
  border: 1px solid rgba(247, 234, 213, 0.13);
  opacity: 0.5;
  transform: rotate(-8deg);
}

.logo-plaque {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: auto;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.logo-plaque::before {
  display: none;
}

.logo-mark {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-8px);
  transform-origin: center;
  animation: logoFloat 7s ease-in-out infinite;
  isolation: isolate;
}

.hero-logo-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 14px rgba(255, 211, 111, 0.3))
    drop-shadow(0 0 28px rgba(240, 71, 164, 0.32))
    drop-shadow(0 28px 50px rgba(0, 0, 0, 0.34));
}

.logo-mark::before {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 8% 6% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 211, 111, 0.34), transparent 30%),
    radial-gradient(circle at 56% 44%, rgba(240, 71, 164, 0.35), transparent 36%),
    radial-gradient(circle at 70% 52%, rgba(155, 101, 255, 0.36), transparent 34%);
  filter: blur(22px);
  opacity: 0.72;
  animation: logoAuraBreathe 4.8s ease-in-out infinite;
}

.loop-flow-overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 18px rgba(240, 71, 164, 0.72))
    drop-shadow(0 0 26px rgba(255, 211, 111, 0.48));
  mask-image: url("assets/blackher-logo-transparent.png");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("assets/blackher-logo-transparent.png");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}

.loop-flow-group {
  filter: url("#flowGlow");
}

.loop-motion-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.loop-motion-glow {
  stroke: url("#flowGoldPink");
  stroke-width: 18;
  stroke-dasharray: 72 928;
  animation: loopTrace 4.8s linear infinite;
  opacity: 0.58;
}

.loop-motion-pulse {
  stroke: url("#flowWhite");
  stroke-width: 9;
  stroke-dasharray: 42 958;
  animation: loopTrace 5.8s linear infinite;
  opacity: 0.96;
}

.pulse-two {
  stroke: url("#flowGoldPink");
  stroke-width: 7;
  stroke-dasharray: 34 966;
  animation-duration: 6.8s;
  animation-delay: -1.8s;
}

.pulse-three {
  stroke: rgba(255, 247, 203, 0.92);
  stroke-width: 4.5;
  stroke-dasharray: 26 974;
  animation-duration: 4.9s;
  animation-delay: -3.2s;
}

.crown-flow {
  stroke: url("#crownFlow");
  stroke-width: 8;
  stroke-dasharray: 46 554;
  animation: crownTrace 4.9s ease-in-out infinite;
  opacity: 0;
}

.crown-flow-two {
  animation-delay: -1.4s;
}

.crown-flow-three {
  animation-delay: -2.6s;
}

.crown-arc-flow {
  stroke-width: 6;
  animation-delay: -3.4s;
}

.loop-orb {
  fill: #fff7cb;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 15px rgba(240, 71, 164, 0.9));
}

.loop-orb-two {
  fill: #ffd36f;
  opacity: 0.8;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(247, 234, 213, 0.12);
  border-radius: 50%;
  pointer-events: none;
  animation: orbitPulse 8s ease-in-out infinite;
}

.orbit-one {
  width: 140px;
  height: 140px;
  left: -2%;
  bottom: 20%;
}

.orbit-two {
  width: 86px;
  height: 86px;
  right: 12%;
  top: 4%;
  border-color: rgba(155, 101, 255, 0.14);
  animation-delay: -2.2s;
}

.orbit-three {
  width: 96px;
  height: 96px;
  right: -1%;
  bottom: 14%;
  border-color: rgba(240, 71, 164, 0.22);
  animation-delay: -4.1s;
}

.hero-footer {
  position: absolute;
  left: clamp(20px, 6vw, 72px);
  right: clamp(20px, 6vw, 72px);
  bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: rgba(247, 234, 213, 0.68);
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 6vw, 72px);
}

.section-transition {
  --bridge-from: var(--ink);
  --bridge-to: var(--ink);
  position: relative;
  z-index: 6;
  height: clamp(12px, 1.4vw, 20px);
  margin: 0;
  overflow: hidden;
  background: var(--bridge-from);
  pointer-events: none;
}

.section-transition::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 100%;
  clip-path: polygon(0 68%, 100% 12%, 100% 100%, 0 100%);
  background: var(--bridge-to);
  content: "";
}

.transition-hero-problem {
  --bridge-from: #130717;
  --bridge-to: #050408;
}

.transition-problem-journey {
  --bridge-from: #1b0a1a;
  --bridge-to: #0b090f;
}

.transition-journey-framework {
  --bridge-from: #25101e;
  --bridge-to: #09070d;
}

.transition-framework-proof {
  --bridge-from: #09070d;
  --bridge-to: #150815;
}

.transition-proof-leadership {
  --bridge-from: #35122c;
  --bridge-to: #07050b;
}

.transition-leadership-join {
  --bridge-from: #261126;
  --bridge-to: #f7f1e7;
  height: clamp(26px, 3vw, 40px);
}

.transition-join-faq {
  --bridge-from: #f7f1e7;
  --bridge-to: #0e0711;
  height: clamp(26px, 3vw, 40px);
}

.transition-join-faq::after {
  clip-path: polygon(0 12%, 100% 68%, 100% 100%, 0 100%);
}

.transition-faq-footer {
  --bridge-from: #250f23;
  --bridge-to: #09070d;
}

.section-kicker {
  color: var(--plum);
}

.section .section-kicker {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  margin: 0 0 20px;
}

.framework-section > .section-kicker {
  color: #f2bc63;
  text-align: left;
  letter-spacing: 0.18em;
}

.split,
.journey-grid,
.framework-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-heading-wide {
  max-width: 100%;
  margin-bottom: 48px;
  text-align: center;
}

.framework-eyebrow {
  margin: 0 0 14px;
  color: rgba(247, 234, 213, 0.74);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.framework-section .section-heading-wide {
  max-width: 940px;
  margin-right: auto;
  margin-bottom: clamp(48px, 6vw, 72px);
  margin-left: auto;
}

.framework-section .section-heading-wide h2 {
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 1;
}

.section-heading-wide h2 {
  max-width: none;
}

.framework-section .section-heading-wide h2 span {
  color: #f047a4;
}

.framework-section .section-heading-wide p {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  color: rgba(247, 234, 213, 0.76);
  line-height: 1.6;
}

h2 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(9, 7, 13, 0.74);
}

.problem-section {
  --problem-stage: 0;
  position: relative;
  z-index: 4;
  isolation: isolate;
  height: 620vh;
  min-height: 620vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 74% 28%, rgba(155, 101, 255, 0.26), transparent 26rem),
    radial-gradient(circle at 18% 38%, rgba(240, 71, 164, 0.16), transparent 26rem),
    linear-gradient(145deg, #050408 0%, #0b0810 44%, #1b0a1a 100%);
}

.problem-section::before,
.problem-section::after {
  display: none;
}

.problem-sticky {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(620px, 1.32fr);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 3vw, 46px) clamp(38px, 5vw, 92px);
  height: 100svh;
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 28%, rgba(155, 101, 255, 0.26), transparent 26rem),
    radial-gradient(circle at 18% 38%, rgba(240, 71, 164, 0.16), transparent 26rem),
    linear-gradient(145deg, #050408 0%, #0b0810 44%, #1b0a1a 100%);
  padding: clamp(76px, 7.4vh, 92px) clamp(20px, 5.2vw, 72px) clamp(34px, 4vh, 50px);
  overflow: hidden;
  transform: translateZ(0);
}

.problem-sticky::before,
.problem-sticky::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
}

.problem-sticky::before {
  z-index: 0;
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(247, 234, 213, 0.07) 119px 120px),
    repeating-linear-gradient(0deg, transparent 0 118px, rgba(247, 234, 213, 0.05) 119px 120px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 88%, transparent 100%);
}

.problem-sticky::after {
  z-index: 0;
  background:
    linear-gradient(118deg, transparent 0 55%, rgba(242, 188, 99, 0.12) 55.2%, transparent 55.6%),
    linear-gradient(121deg, transparent 0 63%, rgba(240, 71, 164, 0.13) 63.2%, transparent 63.7%);
  opacity: 0.62;
}

.problem-header {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  max-width: min(1540px, 100%);
}

.problem-copy {
  position: relative;
  z-index: 5;
  align-self: start;
  max-width: 620px;
  padding-top: clamp(2px, 1vh, 16px);
}

.problem-interactive {
  display: contents;
}

.problem-section .section-kicker,
.problem-section .stage-label {
  color: var(--gold);
}

.problem-header h2 {
  max-width: 1500px;
  margin-bottom: clamp(10px, 1.4vh, 16px);
  color: var(--cream);
  font-family: "Plus Jakarta Sans", "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.55rem, 4.45vw, 5.55rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.problem-title-line {
  display: block;
}

.problem-title-line-design {
  text-align: center;
}

.problem-lede {
  max-width: 1080px;
  margin-bottom: 0;
  color: rgba(247, 234, 213, 0.76);
  font-size: clamp(1rem, 1.12vw, 1.17rem);
  line-height: 1.46;
}

.problem-stage-card {
  max-width: 620px;
  min-height: clamp(190px, 24vh, 252px);
  border: 1px solid rgba(247, 234, 213, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 188, 99, 0.2), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(240, 71, 164, 0.12);
  backdrop-filter: blur(18px);
}

.problem-stage-card h3 {
  max-width: 540px;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: clamp(1.65rem, 2.4vw, 2.78rem);
  line-height: 1.02;
}

.problem-stage-card p:last-child {
  margin-bottom: 0;
  color: rgba(247, 234, 213, 0.8);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
}

.problem-barriers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 16px;
}

.problem-barriers span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(247, 234, 213, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(247, 234, 213, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.problem-barriers span.is-active {
  border-color: rgba(240, 71, 164, 0.72);
  background: rgba(240, 71, 164, 0.18);
  color: var(--cream);
  transform: translateY(-2px);
}

.problem-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  min-height: min(62svh, 680px);
  perspective: 1320px;
  overflow: visible;
  transform: translateZ(0);
}

.problem-visual::before {
  position: absolute;
  content: "";
  width: 94%;
  height: 92%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 46%, rgba(240, 71, 164, 0.34), transparent 38%),
    radial-gradient(circle at 68% 50%, rgba(155, 101, 255, 0.3), transparent 42%),
    radial-gradient(circle at 42% 76%, rgba(242, 188, 99, 0.2), transparent 32%);
  filter: blur(22px);
  opacity: 0.86;
}

.problem-orbit {
  position: absolute;
  border: 1px solid rgba(247, 234, 213, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.problem-orbit-one {
  width: min(74vw, 900px);
  aspect-ratio: 1.92 / 1;
  transform: rotate(-7deg);
}

.problem-orbit-two {
  width: min(60vw, 720px);
  aspect-ratio: 1.55 / 1;
  border-color: rgba(240, 71, 164, 0.16);
  transform: translateY(11%) rotate(8deg);
}

.narrowing-model {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(6px, 0.9vh, 10px);
  --person-tilt: -42deg;
  width: min(100%, 860px);
  transform: rotateX(42deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.narrowing-tier {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(58px, 7.8vh, 84px);
  opacity: 0.58;
  transform: translateZ(0) scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

.narrowing-tier.is-passed {
  opacity: 0.34;
}

.narrowing-tier.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateZ(46px) scale(1.026);
}

.narrowing-tier.is-future {
  opacity: 0.42;
}

.tier-surface {
  position: relative;
  width: var(--tier-width);
  min-height: inherit;
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid color-mix(in srgb, var(--tier-color), transparent 8%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.02)),
    linear-gradient(120deg, color-mix(in srgb, var(--tier-color), transparent 72%), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    inset 0 -14px 24px rgba(0, 0, 0, 0.22),
    0 0 24px color-mix(in srgb, var(--tier-color), transparent 70%);
  clip-path: polygon(9% 0, 91% 0, 100% 100%, 0 100%);
}

.tier-surface::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 234, 213, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(247, 234, 213, 0.13) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.32;
}

.tier-surface::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--tier-color), var(--cream) 24%), transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--tier-color), transparent 36%);
  opacity: 0.72;
}

.narrowing-tier.is-active .tier-surface {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 46px color-mix(in srgb, var(--tier-color), transparent 46%),
    0 30px 66px rgba(0, 0, 0, 0.3);
}

.tier-dots {
  position: absolute;
  inset: 10px 10%;
}

.talent-person {
  position: absolute;
  left: var(--dot-x);
  top: var(--dot-y);
  width: var(--person-width);
  height: var(--person-height);
  color: color-mix(in srgb, var(--tier-color), var(--cream) 28%);
  opacity: 0.5;
  transform: translate3d(-50%, -62%, 10px) rotateX(var(--person-tilt)) scale(0.84);
  transform-origin: center bottom;
  transition: opacity 300ms ease, transform 300ms ease, filter 300ms ease;
}

.talent-person::before,
.talent-person::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.talent-person::before {
  top: 0;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.talent-person::after {
  top: 40%;
  width: 100%;
  height: 60%;
  background:
    linear-gradient(currentColor, currentColor) center top / 34% 60% no-repeat,
    linear-gradient(currentColor, currentColor) 30% 100% / 18% 48% no-repeat,
    linear-gradient(currentColor, currentColor) 70% 100% / 18% 48% no-repeat,
    linear-gradient(currentColor, currentColor) left 18% / 24% 12% no-repeat,
    linear-gradient(currentColor, currentColor) right 18% / 24% 12% no-repeat;
  border-radius: 999px 999px 4px 4px;
}

.narrowing-tier.is-active .talent-person {
  opacity: 0.95;
  transform: translate3d(-50%, -66%, 18px) rotateX(var(--person-tilt)) scale(1.08);
}

.narrowing-tier.is-active .talent-person::before {
  box-shadow:
    0 0 7px color-mix(in srgb, var(--tier-color), white 30%),
    0 0 14px color-mix(in srgb, var(--tier-color), transparent 36%);
}

.narrowing-tier.is-passed .talent-person {
  opacity: 0.22;
  transform: translate3d(-50%, -58%, 4px) rotateX(var(--person-tilt)) scale(0.72);
}

.narrowing-tier.is-future .talent-person {
  opacity: 0.32;
}

.floating-tier-label {
  position: absolute;
  z-index: 8;
  left: 0;
  top: 0;
  display: grid;
  min-width: 174px;
  border: 1px solid rgba(242, 188, 99, 0.56);
  border-radius: 8px;
  padding: 9px 12px 10px;
  background: rgba(9, 7, 13, 0.78);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--floating-x, 50%), var(--floating-y, 50%), 0) rotateX(68deg) scale(0.92);
  transform-origin: center bottom;
  transform-style: preserve-3d;
  backface-visibility: visible;
  box-shadow:
    0 0 0 1px rgba(247, 234, 213, 0.08),
    0 20px 54px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(240, 71, 164, 0.34);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  will-change: transform, opacity;
}

.floating-tier-label.is-visible {
  opacity: 1;
}

.floating-tier-label span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.02em;
}

.floating-tier-label strong {
  margin-top: 4px;
  color: var(--cream);
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  line-height: 0.95;
}

.problem-progress {
  position: absolute;
  right: 0;
  bottom: clamp(8px, 2vh, 22px);
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  width: min(520px, 74%);
  margin: 0 auto;
}

.problem-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(247, 234, 213, 0.2);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.problem-progress span.is-active {
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--violet));
  box-shadow: 0 0 18px rgba(240, 71, 164, 0.5);
}

.journey-section {
  position: relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(155, 101, 255, 0.28), transparent 30rem),
    linear-gradient(150deg, #0b090f, #181119 68%, #25101e);
  color: var(--cream);
  overflow: hidden;
}

.journey-section::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(122deg, transparent 0 38%, rgba(242, 188, 99, 0.1) 38.2%, transparent 38.6%),
    linear-gradient(118deg, transparent 0 48%, rgba(240, 71, 164, 0.12) 48.2%, transparent 48.6%);
  pointer-events: none;
}

.journey-section .section-kicker,
.journey-section .stage-label {
  color: var(--gold);
}

.journey-section p {
  color: rgba(247, 234, 213, 0.74);
}

.journey-section .section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.journey-section .section-heading h2,
.journey-section .section-heading > p {
  margin-right: auto;
  margin-left: auto;
}

.journey-section .section-heading > p {
  max-width: 860px;
}

.journey-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 470px;
  justify-content: center;
  padding: 24px 0;
}

.journey-visual::before {
  position: absolute;
  content: "";
  width: 62%;
  height: 92%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 71, 164, 0.2), transparent 66%);
  filter: blur(20px);
}

.pyramid-level {
  position: relative;
  width: calc(32% + (var(--level) * 12%));
  min-height: 62px;
  border: 1px solid rgba(247, 234, 213, 0.18);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  font-weight: 950;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.pyramid-level::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-105%);
  transition: transform 450ms ease;
}

.pyramid-level:hover::before,
.pyramid-level.active::before {
  transform: translateX(105%);
}

.pyramid-level.active {
  background: linear-gradient(100deg, var(--gold), var(--pink), var(--violet));
  border-color: transparent;
  color: var(--ink);
  transform: translateX(12px) scale(1.035);
  box-shadow: 0 24px 54px rgba(240, 71, 164, 0.22);
}

.journey-copy {
  min-height: 316px;
  border: 1px solid rgba(247, 234, 213, 0.18);
  border-radius: 9px;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 188, 99, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.framework-section {
  overflow: hidden;
  background: #09070d;
  color: #f7ead5;
  position: relative;
  isolation: isolate;
}

.framework-section::before,
.framework-section::after {
  display: none;
}

.framework-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: min(100%, 920px);
  min-height: 340px;
  border: 1px solid rgba(247, 234, 213, 0.24);
  border-radius: 0;
  padding: 0;
  background: #111016;
  color: var(--white);
  box-shadow: none;
  transition: border-color 200ms ease;
  z-index: 1;
}

.framework-panel::before {
  display: none;
}

.framework-panel::after {
  display: none;
}

.panel-letter-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 210px;
  height: auto;
  min-height: 338px;
  border: 0;
  border-right: 1px solid #09070d;
  border-radius: 0;
  background: var(--path-color, #d99a2b);
  box-shadow: none;
  position: relative;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 350ms ease;
  flex-shrink: 0;
}

.panel-letter-hero::before {
  display: none;
}

.giant-letter {
  position: relative;
  z-index: 1;
  font-family: "Sora", sans-serif;
  font-size: clamp(7rem, 10vw, 8.6rem);
  font-weight: 800;
  line-height: 0.84;
  color: var(--path-ink, #09070d);
  filter: none;
}

.panel-inner-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: clamp(42px, 5vw, 58px) clamp(42px, 6vw, 66px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.panel-inner-content .panel-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.8rem, 0.9vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-inner-content .panel-kicker span {
  color: var(--path-color, #d99a2b);
}

.panel-inner-content .stage-label {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.panel-inner-content .highlight-letter {
  color: var(--path-color, #d99a2b);
}

.panel-inner-content .stage-subtitle {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--path-color, #d99a2b);
  font-size: clamp(0.86rem, 1.2vw, 1.02rem);
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.panel-inner-content .stage-description {
  color: rgba(255, 255, 255, 0.82);
  max-width: 530px;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

/* Animations for switching tabs */
.panel-letter-hero.transition-out {
  transform: translateX(-14px);
  opacity: 0;
}

.panel-letter-hero.transition-in {
  transform: translateX(14px);
  opacity: 0;
}

.panel-inner-content.transition-out {
  opacity: 0;
  transform: translateY(12px);
}

.panel-inner-content.transition-in {
  opacity: 0;
  transform: translateY(-12px);
}

/* Panel stage variables */
.framework-panel.stage-0 {
  --path-color: #f2bc63;
  --path-ink: #09070d;
}
.framework-panel.stage-1 {
  --path-color: #e99136;
  --path-ink: #09070d;
}
.framework-panel.stage-2 {
  --path-color: #f047a4;
  --path-ink: #09070d;
}
.framework-panel.stage-3 {
  --path-color: #bd397e;
  --path-ink: #fffaf0;
}
.framework-panel.stage-4 {
  --path-color: #9b65ff;
  --path-ink: #fffaf0;
}
.framework-panel.stage-5 {
  --path-color: #5b214d;
  --path-ink: #fffaf0;
}

.journey-copy .stage-label {
  color: #5b214d;
  font-weight: 800;
  font-size: clamp(1.35rem, 1.65vw, 1.72rem);
  margin-bottom: 8px;
}

.journey-section .journey-copy > p:last-child {
  color: #4a424a;
  line-height: 1.65;
}

.framework-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4vw, 48px);
  align-items: center;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.framework-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  position: relative;
  isolation: isolate;
  gap: 0;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(247, 234, 213, 0.24);
  background: #111016;
  box-shadow: none;
}

.framework-tabs::before {
  display: none;
}

.framework-tab {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 18px 8px 15px;
  border: 0;
  border-right: 1px solid rgba(247, 234, 213, 0.16);
  border-radius: 0;
  background: transparent;
  color: rgba(247, 234, 213, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.framework-tab::after {
  display: none;
}

.framework-tab .tab-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #f7ead5;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  font-weight: 800;
  font-family: "Sora", sans-serif;
  transition: color 160ms ease, transform 160ms ease;
  flex-shrink: 0;
}

.framework-tab .tab-label {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 100%;
  font-size: clamp(0.76rem, 0.88vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.framework-tab:hover {
  background: #1b151e;
  color: #f7ead5;
}

.framework-tab:hover .tab-badge {
  transform: none;
  background: transparent;
  color: #ffffff;
}

/* Framework active styling */
.framework-tab.active {
  background: var(--path-color, #d99a2b);
  border-color: rgba(247, 234, 213, 0.16);
  box-shadow: none;
  transform: none;
  color: var(--path-ink, #09070d);
}

.framework-tab.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.framework-tab:focus-visible {
  outline: 3px solid #f7ead5;
  outline-offset: 4px;
}

.framework-tab.active .tab-badge {
  background: transparent;
  color: var(--path-ink, #09070d);
  transform: none;
  filter: none;
}

.framework-tab:last-child {
  border-right: 0;
}

.framework-tab[data-framework="0"] .tab-badge { color: #f2bc63; }
.framework-tab[data-framework="1"] .tab-badge { color: #e99136; }
.framework-tab[data-framework="2"] .tab-badge { color: #f047a4; }
.framework-tab[data-framework="3"] .tab-badge { color: #d55398; }
.framework-tab[data-framework="4"] .tab-badge { color: #9b65ff; }
.framework-tab[data-framework="5"] .tab-badge { color: #c67ab2; }

.framework-tab[data-framework]:not(.active) .tab-badge {
  color: rgba(247, 234, 213, 0.58);
}

.framework-tab[data-framework].active .tab-badge {
  color: var(--path-ink, #09070d);
}

/* Tab stage custom variables */
.framework-tab[data-framework="0"].active {
  --path-color: #f2bc63;
  --path-ink: #09070d;
}
.framework-tab[data-framework="1"].active {
  --path-color: #e99136;
  --path-ink: #09070d;
}
.framework-tab[data-framework="2"].active {
  --path-color: #f047a4;
  --path-ink: #09070d;
}
.framework-tab[data-framework="3"].active {
  --path-color: #bd397e;
  --path-ink: #fffaf0;
}
.framework-tab[data-framework="4"].active {
  --path-color: #9b65ff;
  --path-ink: #fffaf0;
}
.framework-tab[data-framework="5"].active {
  --path-color: #5b214d;
  --path-ink: #fffaf0;
}

.proof-section {
  padding-top: clamp(58px, 7.2vw, 99px);
  padding-bottom: clamp(58px, 7.2vw, 99px);
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 188, 99, 0.22), transparent 22rem),
    linear-gradient(140deg, #150815, #35122c);
  color: var(--cream);
}

.manifesto {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(19px, 3.2vw, 38px) 0;
}

.proof-section .section-kicker {
  color: var(--gold);
  text-align: left;
}

.promise-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promise-quote {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.35;
  color: var(--white);
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 36px auto;
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.promise-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 36px;
}

.proof-section .promise-explanation {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}

.leadership-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(240, 71, 164, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 28%, rgba(155, 101, 255, 0.2), transparent 28rem),
    linear-gradient(145deg, #07050b 0%, #130917 48%, #261126 100%);
  color: var(--cream);
}

.leadership-section::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-linear-gradient(90deg, transparent 0 124px, rgba(247, 234, 213, 0.08) 125px 126px),
    repeating-linear-gradient(0deg, transparent 0 124px, rgba(247, 234, 213, 0.06) 125px 126px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 86%, transparent 100%);
}

.leadership-section::after {
  position: absolute;
  content: "";
  right: -12vw;
  bottom: -30vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(242, 188, 99, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.leadership-section > * {
  position: relative;
  z-index: 1;
}

.leadership-section .section-kicker {
  color: var(--gold);
  text-align: left;
}

.leadership-heading {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.leadership-heading h2 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  color: var(--cream);
  text-align: center;
}

.leadership-heading p {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(247, 234, 213, 0.74);
  text-align: center;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.leader-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(247, 234, 213, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(14, 10, 18, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.leader-card::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(242, 188, 99, 0.13), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(240, 71, 164, 0.2), transparent 16rem);
  opacity: 0.9;
}

.leader-card-alt::before {
  background:
    linear-gradient(115deg, rgba(240, 71, 164, 0.14), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155, 101, 255, 0.22), transparent 16rem);
}

.leader-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--ink);
}

.leader-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(14, 10, 18, 0.88));
}

.leader-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.leader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 48px);
}

.leader-role {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-content h3 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.leader-content p {
  max-width: 520px;
  color: rgba(247, 234, 213, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.58;
}

.join-section {
  background: var(--paper);
  padding-bottom: clamp(72px, 7vw, 96px);
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.join-card {
  --join-accent: var(--pink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(9, 7, 13, 0.04);
  transition:
    transform 220ms cubic-bezier(0.2, 0.78, 0.24, 1),
    border-color 180ms ease,
    box-shadow 220ms ease,
    background-color 180ms ease;
}

.join-card::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--join-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.join-card-parent {
  --join-accent: #f047a4;
}

.join-card-sponsor {
  --join-accent: #a9680c;
}

.join-card-mentor {
  --join-accent: #9b65ff;
}

.join-card-mentee {
  --join-accent: #5b214d;
}

.join-card.featured {
  border-color: rgba(169, 104, 12, 0.38);
  background: #fffaf0;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(169, 104, 12, 0.08);
}

.join-card.featured p {
  color: rgba(9, 7, 13, 0.74);
}

.join-number {
  margin-bottom: 46px;
  color: var(--join-accent);
  font-weight: 950;
  transition: transform 220ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.join-card h3 {
  transition: transform 220ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.join-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--join-accent), transparent 68%);
  font-weight: 950;
  color: var(--join-accent);
}

.join-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
  transition:
    transform 220ms cubic-bezier(0.2, 0.78, 0.24, 1),
    background-color 180ms ease,
    color 180ms ease;
}

.join-card:hover,
.join-card:focus-visible {
  z-index: 2;
  border-color: var(--join-accent);
  box-shadow: 0 24px 54px rgba(9, 7, 13, 0.16);
  transform: translateY(-8px);
}

.join-card:hover::before,
.join-card:focus-visible::before {
  transform: scaleX(1);
}

.join-card:hover .join-number,
.join-card:focus-visible .join-number {
  transform: translateY(-3px);
}

.join-card:hover h3,
.join-card:focus-visible h3 {
  transform: translateX(4px);
}

.join-card:hover .join-arrow,
.join-card:focus-visible .join-arrow {
  background: var(--join-accent);
  color: var(--white);
  transform: translate(3px, -3px);
}

.join-card:focus-visible {
  outline: 3px solid var(--join-accent);
  outline-offset: 5px;
}

.join-card:active {
  transform: translateY(-3px) scale(0.99);
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 188, 99, 0.2), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(240, 71, 164, 0.2), transparent 26rem),
    linear-gradient(145deg, #060408 0%, #120816 54%, #250f23 100%);
  color: var(--cream);
}

.faq-section::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, transparent 0 116px, rgba(247, 234, 213, 0.08) 117px 118px),
    repeating-linear-gradient(0deg, transparent 0 116px, rgba(247, 234, 213, 0.05) 117px 118px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 88%, transparent 100%);
}

.faq-section::after {
  position: absolute;
  right: -16vw;
  bottom: -22vw;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 188, 99, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.faq-shell {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section .section-kicker {
  color: var(--gold);
  text-align: left;
}

.faq-heading h2 {
  color: var(--cream);
  margin-left: auto;
  margin-right: auto;
}

.faq-heading p {
  color: rgba(247, 234, 213, 0.74);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.faq-answer p {
  color: rgba(247, 234, 213, 0.74);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  display: grid;
  grid-template-rows: auto 0fr;
  border: 1px solid rgba(247, 234, 213, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(12, 8, 16, 0.76);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  transition: 
    grid-template-rows 300ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 188, 99, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(16, 12, 22, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.faq-item.is-open {
  grid-template-rows: auto 1fr;
  border-color: rgba(242, 188, 99, 0.52);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 71, 164, 0.12), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(12, 8, 16, 0.86);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(240, 71, 164, 0.12);
}

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  border: 0;
  padding: 18px clamp(18px, 2.4vw, 26px);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  transition: color 220ms ease;
}

.faq-item:hover .faq-question {
  color: var(--gold);
}

.faq-item.is-open .faq-question {
  color: var(--cream);
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -6px;
}

.faq-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 234, 213, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms ease, background-color 220ms ease;
}

.faq-item:hover .faq-icon {
  border-color: rgba(242, 188, 99, 0.42);
  background-color: rgba(255, 255, 255, 0.08);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 300ms ease, opacity 220ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  border-color: var(--gold);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}

.faq-answer {
  grid-row: 2;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 300ms step-end;
}

.faq-item.is-open .faq-answer {
  visibility: visible;
  transition: visibility 300ms step-start;
}

.faq-answer-inner {
  padding: 0 clamp(18px, 2.4vw, 26px) clamp(22px, 2.6vw, 30px);
}

.faq-answer p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  line-height: 1.68;
}

.faq-answer a {
  color: var(--gold);
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

[data-tilt] {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  min-height: 116px;
  padding: 24px clamp(20px, 6vw, 72px);
  background: var(--ink);
  color: var(--cream);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(242, 188, 99, 0.2))
    drop-shadow(0 0 6px rgba(240, 71, 164, 0.15));
}

.footer-socials {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  justify-self: center;
}

.footer-social-item {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 58px;
  color: rgba(255, 247, 233, 0.82);
}

.footer-social-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 247, 233, 0.56);
  border-radius: 50%;
  color: var(--cream);
}

.footer-social-name {
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.footer-social-status {
  display: inline-block;
  margin-left: 2px;
  color: var(--gold);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social-instagram::before {
  width: 14px;
  height: 14px;
  border: 1.35px solid currentColor;
  border-radius: 4px;
  content: "";
}

.footer-social-instagram::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border: 1.35px solid currentColor;
  border-radius: 50%;
  content: "";
}

.footer-social-instagram > span {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}

.footer-social-linkedin {
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.footer-social-podcast::before,
.footer-social-podcast > span {
  position: absolute;
  border: 1.25px solid currentColor;
  border-radius: 50%;
  content: "";
}

.footer-social-podcast::before {
  width: 17px;
  height: 17px;
}

.footer-social-podcast > span {
  width: 9px;
  height: 9px;
}

.footer-social-podcast::after {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.footer-contact {
  justify-self: end;
  color: rgba(255, 247, 233, 0.86);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration-color: rgba(255, 247, 233, 0.38);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-contact:hover,
.footer-contact:focus-visible {
  color: var(--gold);
  text-decoration-color: currentColor;
}


@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.74;
    transform: translate3d(10px, -14px, 0) scale(1.08);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(-8px) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.012);
  }
}

@keyframes logoAuraBreathe {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.03);
  }
}

@keyframes loopTrace {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -1000;
  }
}

@keyframes crownTrace {
  0%,
  12% {
    opacity: 0;
    stroke-dashoffset: 0;
  }

  35% {
    opacity: 1;
  }

  72% {
    opacity: 0.24;
    stroke-dashoffset: -600;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: -600;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.intro-active {
    overflow: auto;
  }
}

@media (max-width: 1320px) {
  .hero-title {
    font-size: clamp(4.7rem, 5.2vw, 5.6rem);
  }

  .hero-content {
    grid-template-columns: minmax(0, 610px) minmax(380px, 1fr);
    column-gap: clamp(44px, 5vw, 84px);
  }

  .logo-stage {
    left: auto;
    top: 10px;
    width: clamp(430px, 38vw, 560px);
  }

  .problem-sticky {
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(24px, 3vw, 38px) clamp(34px, 5vw, 72px);
  }

  .problem-header h2 {
    font-size: clamp(2.35rem, 4.6vw, 4.95rem);
  }

  .narrowing-model {
    width: min(100%, 760px);
  }
}

@media (max-height: 860px) and (min-width: 1041px) {
  .problem-sticky {
    gap: 18px clamp(34px, 4vw, 66px);
    padding-top: 74px;
    padding-bottom: 30px;
  }

  .problem-header h2 {
    font-size: clamp(2.2rem, 3.85vw, 4.25rem);
    margin-bottom: 10px;
  }

  .problem-lede {
    font-size: clamp(0.94rem, 1vw, 1.04rem);
    line-height: 1.42;
  }

  .problem-stage-card {
    min-height: 156px;
    padding: 16px 20px;
  }

  .problem-stage-card h3 {
    font-size: clamp(1.3rem, 1.8vw, 2rem);
  }

  .problem-barriers {
    margin-top: 10px;
  }

  .problem-visual {
    min-height: 56svh;
  }

  .narrowing-tier {
    min-height: clamp(44px, 6.4vh, 62px);
  }
}

@media (min-width: 1041px) {
  .problem-header {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .problem-header h2 {
    max-width: none;
    width: 100%;
    font-size: clamp(2.5rem, 3.08vw, 4.05rem);
    text-align: center;
  }

  .problem-title-line {
    white-space: nowrap;
  }

  .problem-lede {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .problem-header .section-kicker,
  .join-section > .section-kicker {
    text-align: left;
  }

  .join-section .section-heading {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .join-section #join-title {
    max-width: none;
    font-size: clamp(3.2rem, 4.2vw, 4.9rem);
    white-space: nowrap;
  }

  .join-section .section-heading p {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media (max-width: 1040px) {
  .split,
  .journey-grid,
  .framework-shell,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .join-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
    min-height: 380px;
  }

  .leader-photo {
    min-height: 380px;
  }

  .hero {
    padding-bottom: 108px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    row-gap: 26px;
    justify-items: start;
  }

  .hero-text {
    max-width: 760px;
    padding-top: 0;
  }

  .hero-text .eyebrow {
    margin-bottom: 28px;
  }

  .logo-stage {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    left: 0;
    top: 0;
    width: min(88vw, 620px);
    margin: 4px auto 0;
  }

  .hero-content {
    width: 100%;
  }

  .hero-title {
    font-size: 4.75rem;
  }

  .problem-section {
    height: auto;
    min-height: auto;
  }

  .problem-sticky {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 34px;
    min-height: auto;
    padding-top: 104px;
  }

  .problem-header h2 {
    max-width: 920px;
  }

  .problem-copy {
    max-width: 820px;
  }

  .problem-visual {
    min-height: 620px;
  }

  .framework-tabs {
    gap: 0;
  }

  .framework-tab {
    min-height: 118px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .narrowing-model {
    width: min(92vw, 700px);
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-title {
    font-size: 3.55rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .logo-mark {
    width: min(100%, 540px);
  }

  .logo-stage {
    width: min(96vw, 540px);
  }

  .problem-sticky {
    padding: 92px clamp(18px, 5vw, 28px) 72px;
  }

  .problem-header h2 {
    font-size: clamp(2.3rem, 10.8vw, 4.1rem);
  }

  .problem-stage-card {
    min-height: 0;
  }

  .problem-barriers {
    gap: 8px;
  }

  .problem-barriers span {
    min-height: 32px;
    font-size: 0.76rem;
  }

  .problem-visual {
    min-height: 520px;
    overflow: visible;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    min-height: 420px;
  }

  .leader-photo::after {
    background: linear-gradient(0deg, rgba(14, 10, 18, 0.86), transparent 42%);
  }

  .leader-content {
    padding: 26px;
  }

  .join-grid {
    grid-template-columns: 1fr;
  }

  .problem-orbit-one {
    width: 112vw;
  }

  .problem-orbit-two {
    width: 88vw;
  }

  .narrowing-model {
    width: min(98vw, 560px);
    --person-tilt: -36deg;
    transform: rotateX(36deg) rotateZ(-1deg) scale(0.94);
  }

  .narrowing-tier {
    min-height: 62px;
  }

  .problem-progress {
    width: min(430px, 82%);
  }

  .framework-tabs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding-right: 2px;
    padding-left: 2px;
  }

  .framework-tab {
    min-height: 78px;
    gap: 0;
    padding: 8px 4px;
    border-radius: 0;
  }

  .framework-tab .tab-badge {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    font-size: clamp(1.45rem, 6.2vw, 2rem);
  }

  .framework-tab .tab-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .framework-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
    min-height: 0;
    padding: 0;
  }

  .panel-letter-hero {
    width: 100%;
    height: 154px;
    min-height: 154px;
    border-right: 0;
    border-bottom: 1px solid #09070d;
    border-radius: 0;
  }

  .panel-inner-content {
    padding: clamp(34px, 9vw, 48px) clamp(22px, 7vw, 38px);
  }

  .giant-letter {
    font-size: 6rem;
  }

  .pyramid-level {
    width: calc(48% + (var(--level) * 8.5%));
  }

  .faq-question {
    grid-template-columns: minmax(0, 1fr) 32px;
    min-height: 70px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .site-footer,
  .hero-footer {
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    min-height: 0;
    padding-block: 30px;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    justify-self: center;
  }

  .footer-socials {
    grid-row: 2;
  }
}

/* Mobile navigation and touch refinements */
@media (max-width: 760px) {
  .site-header {
    gap: 9px;
  }

  .site-header .brand {
    margin-right: auto;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    position: relative;
    display: grid;
    flex: 0 0 44px;
    place-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(247, 234, 213, 0.72);
    border-radius: 50%;
    padding: 0;
    background: transparent;
    color: var(--cream);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .site-header .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(247, 234, 213, 0.18);
    border-radius: 8px;
    padding: 8px;
    background: #111016;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .site-header .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(247, 234, 213, 0.1);
    padding: 10px 13px;
  }

  .site-header .nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .header-cta {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.69rem;
  }

  .brand-mark {
    width: 44px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.52rem;
  }

  .problem-lede {
    font-size: 1rem;
  }

  .problem-visual {
    min-height: 470px;
  }

  .narrowing-model {
    --person-tilt: -34deg;
    transform: rotateX(34deg) rotateZ(-1deg) scale(0.86);
  }
}

/* Refined scroll-led progression: shorter, calmer, and easier to navigate. */
.problem-section {
  height: 380vh;
  min-height: 380vh;
  background: #0d0a11;
}

.problem-sticky {
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(22px, 2.6vw, 38px) clamp(42px, 5vw, 82px);
  background: #0d0a11;
  padding-top: clamp(78px, 8vh, 96px);
}

.problem-sticky::before {
  inset: clamp(250px, 29vh, 330px) auto 54px 50%;
  width: 1px;
  background: rgba(247, 234, 213, 0.08);
  opacity: 1;
  mask-image: none;
}

.problem-sticky::after {
  display: none;
}

.problem-header h2 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 3.25vw, 4.3rem);
  letter-spacing: -0.045em;
}

.problem-lede {
  max-width: 990px;
  color: rgba(247, 234, 213, 0.68);
}

.problem-copy {
  padding-top: clamp(8px, 1.4vh, 18px);
}

.problem-stage-card {
  position: relative;
  min-height: clamp(205px, 23vh, 244px);
  border-color: rgba(247, 234, 213, 0.2);
  border-radius: 4px;
  background: #17121a;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
}

.problem-stage-card::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: -1px;
  width: 2px;
  background: var(--gold);
  content: "";
}

.problem-stage-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.problem-stage-meta .stage-label {
  margin: 0;
  font-size: clamp(0.95rem, 1.05vw, 1.12rem);
}

.problem-stage-index {
  color: rgba(247, 234, 213, 0.42);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.problem-stage-card h3 {
  max-width: 510px;
  margin-bottom: 14px;
  font-size: clamp(1.62rem, 2.25vw, 2.62rem);
}

.problem-stage-card.is-updating .problem-stage-meta,
.problem-stage-card.is-updating h3,
.problem-stage-card.is-updating > p:last-child {
  animation: problemCopyIn 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.problem-stage-card.is-updating h3 {
  animation-delay: 35ms;
}

.problem-stage-card.is-updating > p:last-child {
  animation-delay: 70ms;
}

@keyframes problemCopyIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.problem-barriers {
  gap: 8px;
  margin-top: 12px;
}

.problem-section .problem-method-note {
  max-width: 590px;
  margin: 12px 0 0;
  border-left: 1px solid rgba(242, 188, 99, 0.44);
  padding-left: 11px;
  color: rgba(247, 234, 213, 0.5);
  font-size: clamp(0.72rem, 0.76vw, 0.8rem);
  line-height: 1.5;
}

.problem-method-note strong {
  color: rgba(242, 188, 99, 0.78);
  font-weight: 850;
}

.problem-barriers span {
  min-height: 32px;
  border-radius: 4px;
  padding: 7px 11px;
  color: rgba(247, 234, 213, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.015em;
}

.problem-barriers span.is-active {
  border-color: rgba(240, 71, 164, 0.52);
  background: rgba(240, 71, 164, 0.11);
  transform: none;
}

.problem-visual {
  min-height: min(60svh, 650px);
}

.problem-visual::before {
  width: 88%;
  height: 82%;
  border: 1px solid rgba(247, 234, 213, 0.08);
  background: transparent;
  filter: none;
  opacity: 1;
  transform: rotate(-6deg);
}

.problem-visual::after {
  position: absolute;
  z-index: 0;
  top: 7%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: rgba(247, 234, 213, 0.08);
  content: "";
}

.problem-orbit {
  border-color: rgba(247, 234, 213, 0.09);
}

.problem-orbit-one {
  width: min(70vw, 820px);
}

.problem-orbit-two {
  width: min(55vw, 660px);
  border-color: rgba(240, 71, 164, 0.12);
}

.narrowing-model {
  --person-tilt: -24deg;
  gap: clamp(6px, 0.72vh, 8px);
  width: min(100%, 790px);
  transform: rotateX(24deg) rotateZ(-0.4deg) translateY(2%);
}

.narrowing-tier {
  --tier-focus: 0;
  width: 100%;
  min-height: clamp(56px, 7vh, 76px);
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  opacity: calc(0.34 + (var(--tier-focus) * 0.66));
  text-align: center;
  transform: translateZ(calc(var(--tier-focus) * 30px)) scale(calc(0.985 + (var(--tier-focus) * 0.02)));
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.narrowing-tier.is-passed,
.narrowing-tier.is-active,
.narrowing-tier.is-future {
  opacity: calc(0.34 + (var(--tier-focus) * 0.66));
  transform: translateZ(calc(var(--tier-focus) * 30px)) scale(calc(0.985 + (var(--tier-focus) * 0.02)));
}

.tier-surface {
  border-color: color-mix(in srgb, var(--tier-color), transparent 30%);
  background: color-mix(in srgb, var(--tier-color) 9%, #110d14 91%);
  box-shadow: inset 0 0 0 1px rgba(247, 234, 213, 0.035);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.narrowing-tier:hover .tier-surface {
  border-color: color-mix(in srgb, var(--tier-color), var(--cream) 24%);
  background: color-mix(in srgb, var(--tier-color) 13%, #110d14 87%);
  transform: translateY(-2px);
}

.narrowing-tier:focus-visible {
  outline: none;
}

.narrowing-tier:focus-visible .tier-surface {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.tier-surface::before {
  display: none;
}

.tier-surface::after {
  right: auto;
  bottom: 10px;
  left: 8%;
  width: 30px;
  height: 2px;
  background: var(--tier-color);
  box-shadow: none;
  opacity: 0.72;
}

.narrowing-tier.is-active .tier-surface {
  background: color-mix(in srgb, var(--tier-color) 16%, #110d14 84%);
  box-shadow:
    inset 0 0 0 1px rgba(247, 234, 213, 0.06),
    0 18px 38px rgba(0, 0, 0, 0.24);
}

.narrowing-tier:focus-visible .tier-surface {
  outline: none;
  box-shadow:
    inset 0 0 0 2px rgba(247, 234, 213, 0.92),
    0 18px 38px rgba(0, 0, 0, 0.24);
}

.talent-person {
  opacity: 0.4;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.talent-person::before {
  top: 0;
  width: 44%;
  border: 0;
  border-radius: 50% 50% 46% 46%;
  background: currentColor;
  box-shadow: none;
}

.talent-person::after {
  top: 26%;
  width: 100%;
  height: 74%;
  border-radius: 0;
  background: currentColor;
  clip-path: polygon(
    42% 0,
    58% 0,
    67% 7%,
    74% 17%,
    80% 48%,
    71% 51%,
    65% 27%,
    64% 60%,
    69% 100%,
    55% 100%,
    50% 68%,
    45% 100%,
    31% 100%,
    36% 60%,
    35% 27%,
    29% 51%,
    20% 48%,
    26% 17%,
    33% 7%
  );
}

.talent-person-tone-1 {
  color: color-mix(in srgb, var(--tier-color), var(--cream) 34%);
}

.talent-person-tone-2 {
  color: color-mix(in srgb, var(--tier-color), var(--pink) 22%);
}

.talent-person-tone-3 {
  color: color-mix(in srgb, var(--tier-color), var(--violet) 24%);
}

.narrowing-tier.is-active .talent-person::before {
  box-shadow: none;
}

.narrowing-tier.is-active .talent-person {
  filter: drop-shadow(0 0 1px currentColor);
}

.floating-tier-label {
  min-width: 148px;
  border-color: rgba(242, 188, 99, 0.42);
  border-radius: 4px;
  background: #120e15;
  transform: translate3d(var(--floating-x, 50%), var(--floating-y, 50%), 0);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  text-shadow: none;
  backdrop-filter: none;
  transition: opacity 180ms ease;
}

.problem-progress {
  bottom: clamp(0px, 1vh, 10px);
  grid-template-columns: auto minmax(280px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(590px, 82%);
}

.problem-progress-copy {
  display: grid;
  gap: 2px;
  min-width: 92px;
}

.problem-progress .problem-progress-stage {
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.problem-progress-copy small {
  color: rgba(247, 234, 213, 0.46);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.problem-progress-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.problem-progress-track button {
  position: relative;
  min-width: 0;
  height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.problem-progress-track button::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(247, 234, 213, 0.18);
  content: "";
  transform: translateY(-50%);
  transition: background 260ms ease, transform 260ms ease;
}

.problem-progress-track button.is-active::before {
  background: var(--gold);
}

.problem-progress-track button.is-current::before {
  background: var(--pink);
  transform: translateY(-50%) scaleY(2);
}

.problem-progress-track button:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

@media (max-width: 1040px) {
  .problem-section {
    height: auto;
    min-height: auto;
  }

  .problem-sticky {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 32px;
    height: auto;
    min-height: auto;
    padding-top: 104px;
    overflow: hidden;
  }

  .problem-sticky::before,
  .problem-sticky::after {
    display: none;
  }

  .problem-copy {
    width: 100%;
    max-width: 820px;
  }

  .problem-header,
  .problem-copy,
  .problem-visual {
    min-width: 0;
  }

  .problem-visual {
    min-height: 610px;
  }

  .problem-progress {
    width: min(560px, 88%);
  }
}

@media (max-width: 760px) {
  .problem-sticky {
    gap: 28px;
    padding: 92px clamp(18px, 5vw, 28px) 54px;
  }

  .problem-header {
    text-align: left;
  }

  .problem-title-line-design {
    text-align: left;
  }

  .problem-stage-card {
    padding: 24px 22px;
  }

  .problem-stage-card::before {
    top: 22px;
    bottom: 22px;
  }

  .problem-visual {
    min-height: 540px;
  }

  .narrowing-model {
    --person-tilt: -20deg;
    width: min(100%, 560px);
    transform: rotateX(20deg) rotateZ(-0.3deg) scale(0.92);
  }

  .narrowing-tier {
    min-height: 58px;
  }

  .floating-tier-label {
    min-width: 118px;
    padding: 8px 10px;
  }

  .problem-progress {
    position: absolute;
    width: 92%;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .problem-progress-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* Mobile problem progression: the context and pyramid move as one pinned unit. */
@media (max-width: 760px) {
  .problem-section {
    height: 430vh;
    min-height: 430vh;
  }

  .problem-sticky {
    position: relative;
    display: block;
    min-height: 100%;
    padding: 92px clamp(18px, 5vw, 28px) 0;
    overflow: visible;
    transform: none;
  }

  .problem-header {
    margin-bottom: 26px;
  }

  .problem-interactive {
    position: sticky;
    z-index: 7;
    top: 72px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 8px;
    height: calc(100svh - 72px);
    padding: 10px 0 12px;
    background: #0d0a11;
  }

  .problem-copy {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .problem-stage-card {
    min-height: 0;
    padding: 14px 17px;
  }

  .problem-stage-card::before {
    top: 14px;
    bottom: 14px;
  }

  .problem-stage-meta {
    margin-bottom: 8px;
  }

  .problem-stage-meta .stage-label {
    font-size: 0.78rem;
  }

  .problem-stage-index {
    font-size: 0.68rem;
  }

  .problem-stage-card h3 {
    margin-bottom: 7px;
    font-size: clamp(1.16rem, 5.4vw, 1.48rem);
    line-height: 1.08;
  }

  .problem-stage-card p:last-child {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .problem-section .problem-method-note {
    margin-top: 7px;
    padding-left: 8px;
    font-size: 0.61rem;
    line-height: 1.32;
  }

  .problem-barriers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 7px;
  }

  .problem-barriers span {
    justify-content: center;
    min-height: 27px;
    padding: 4px 6px;
    font-size: 0.61rem;
  }

  .problem-visual {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .problem-visual::before {
    width: 96%;
    height: 84%;
  }

  .problem-orbit-one {
    width: 110vw;
  }

  .problem-orbit-two {
    width: 88vw;
  }

  .narrowing-model {
    --person-tilt: -16deg;
    width: min(100%, 440px);
    gap: 3px;
    transform: rotateX(16deg) rotateZ(-0.2deg) scale(0.93);
  }

  .narrowing-tier {
    min-height: clamp(34px, 5.25svh, 46px);
  }

  .floating-tier-label {
    display: none;
  }

  .problem-progress {
    bottom: 0;
    width: 94%;
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .problem-progress-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .problem-progress-track button {
    height: 26px;
  }
}

/* Desktop hierarchy balance: stronger section labels with calmer headlines. */
@media (min-width: 1041px) {
  .problem-header > .section-kicker,
  .section > .section-kicker {
    margin-bottom: 22px;
    font-size: clamp(1.08rem, 1.2vw, 1.26rem);
    letter-spacing: 0.085em;
  }

  .framework-eyebrow {
    font-size: clamp(1.18rem, 1.38vw, 1.34rem);
    letter-spacing: 0.12em;
  }

  .problem-header h2 {
    font-size: clamp(2.25rem, 2.9vw, 3.82rem);
  }

  .journey-section .section-heading h2,
  .leadership-heading h2,
  .faq-heading h2 {
    font-size: clamp(1.9rem, 4.45vw, 4.36rem);
  }

  .framework-section .section-heading-wide h2 {
    font-size: clamp(2.5rem, 4.45vw, 4.23rem);
  }

  .join-section #join-title {
    font-size: clamp(2.85rem, 3.74vw, 4.36rem);
  }
}
