:root {
  color-scheme: dark;
  --forest-950: #06120b;
  --forest-900: #07170f;
  --forest-850: #0a1c12;
  --forest-800: #102719;
  --moss: #78994b;
  --lime: #a9ca56;
  --leaf: #8fb84f;
  --gold: #c8b45f;
  --cream: #fff8e9;
  --mist: #dce8d1;
  --muted: #a8b79d;
  --line: rgba(169, 202, 86, 0.28);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --text-primary: var(--cream);
  --text-secondary: rgba(224, 236, 207, 0.82);
  --text-muted: rgba(168, 183, 157, 0.94);
  --accent: #b7d85d;
  --accent-bright: #d8f28a;
  --surface-card: rgba(7, 21, 12, 0.72);
  --surface-card-hover: rgba(11, 31, 18, 0.86);
  --border-subtle: rgba(169, 202, 86, 0.2);
  --border-active: rgba(215, 242, 126, 0.44);
  --glow-soft: 0 0 38px rgba(169, 202, 86, 0.08);
  --radius-card: 12px;
  --radius-panel: 14px;
  --radius-control: 999px;
  --motion-fast: 180ms ease;
  --motion-smooth: 240ms ease;
  --button-height: 56px;
  --button-pad-x: 24px;
  --button-gap: 12px;
  --focus-ring: 0 0 0 3px rgba(215, 242, 126, 0.18);
  --card-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
  --card-hover-shadow:
    0 24px 72px rgba(0, 0, 0, 0.24),
    0 0 38px rgba(169, 202, 86, 0.08);
  --card-background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.026)),
    linear-gradient(180deg, rgba(12, 35, 20, 0.78), rgba(7, 21, 12, 0.68));
  --card-background-hover:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.034)),
    linear-gradient(180deg, rgba(15, 43, 24, 0.84), rgba(8, 24, 14, 0.74));
  --ecosystem-page-background:
    linear-gradient(180deg, rgba(3, 11, 7, 0.34) 0%, rgba(3, 11, 7, 0.48) 100%),
    radial-gradient(circle at 78% 8%, rgba(169, 202, 86, 0.045), transparent 28%),
    radial-gradient(circle at 8% 40%, rgba(120, 153, 75, 0.045), transparent 30%),
    linear-gradient(180deg, rgba(6, 18, 11, 0.76) 0%, rgba(6, 18, 11, 0.88) 46%, var(--forest-950) 100%),
    repeating-linear-gradient(
      116deg,
      rgba(169, 202, 86, 0.018) 0,
      rgba(169, 202, 86, 0.018) 1px,
      transparent 1px,
      transparent 124px
    ),
    linear-gradient(140deg, #051008 0%, var(--forest-950) 54%, #07160d 100%);
  --ecosystem-hero-background:
    linear-gradient(180deg, rgba(3, 11, 7, 0.2) 0%, rgba(3, 11, 7, 0.44) 100%),
    radial-gradient(circle at 78% 38%, rgba(169, 202, 86, 0.09), transparent 29%),
    radial-gradient(circle at 22% 78%, rgba(200, 180, 95, 0.045), transparent 28%),
    linear-gradient(140deg, #06120b 0%, #071a12 52%, #08190f 100%),
    repeating-linear-gradient(
      24deg,
      rgba(255, 248, 233, 0.018) 0,
      rgba(255, 248, 233, 0.018) 1px,
      transparent 1px,
      transparent 152px
    );
  --ecosystem-section-glow:
    radial-gradient(circle at 84% 4%, rgba(169, 202, 86, 0.03), transparent 24%),
    radial-gradient(circle at 12% 102%, rgba(200, 180, 95, 0.018), transparent 26%),
    linear-gradient(180deg, rgba(3, 11, 7, 0.12), rgba(3, 11, 7, 0));
  --media-treatment:
    0 30px 100px rgba(0, 0, 0, 0.3),
    0 0 64px rgba(169, 202, 86, 0.06),
    inset 0 1px 0 rgba(255, 248, 233, 0.04);
  --h1-size: clamp(3.65rem, 5.15vw, 6.2rem);
  --h2-size: clamp(2.7rem, 3.65vw, 4.2rem);
  --h3-size: clamp(1.34rem, 1.72vw, 1.66rem);
  --body-size: clamp(1rem, 0.95vw, 1.08rem);
  --lead-size: clamp(1.08rem, 1.35vw, 1.28rem);
  --eyebrow-size: clamp(0.8rem, 0.74vw, 0.9rem);
  --card-pad: clamp(24px, 2.2vw, 32px);
  --page-max: 1680px;
  --page-inline: clamp(44px, 5vw, 120px);
  --page-gutter: calc(var(--page-inline) / 2);
  --section-pad-y: clamp(72px, 6.6vw, 96px);
  --section-pad-y-compact: clamp(54px, 5.4vw, 74px);
  --section-bridge-half: clamp(34px, 3.6vw, 52px);
  --section-bridge-gap: clamp(54px, 5.8vw, 82px);
  --section-heading-gap: clamp(32px, 3.6vw, 48px);
  --section-headline-max: 1120px;
  --section-body-max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(3, 11, 7, 0.46), rgba(3, 11, 7, 0.62)),
    linear-gradient(140deg, #051008 0%, var(--forest-950) 54%, #07160d 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.014) 0,
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px,
      transparent 118px
    );
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-shell {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 18, 11, 0) 0%, rgba(6, 18, 11, 0.92) 54%, var(--forest-950) 100%),
    repeating-linear-gradient(
      116deg,
      rgba(169, 202, 86, 0.035) 0,
      rgba(169, 202, 86, 0.035) 1px,
      transparent 1px,
      transparent 124px
    );
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: 28px var(--page-gutter) 58px;
  isolation: isolate;
  background: #071a12;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  --hero-header-image: image-set(
    url("../mentora-hero-header-right-2400.avif") type("image/avif"),
    url("../mentora-hero-header-right-2400.webp") type("image/webp"),
    url("../mentora-hero-header-right.png") type("image/png")
  );
  --hero-image-position: center center;
  --hero-image-size: cover;
  background:
    radial-gradient(circle at 74% 46%, rgba(169, 202, 86, 0.08), transparent 32%),
    linear-gradient(140deg, #071a12 0%, #071a12 45%, #0a2014 100%);
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../mentora-hero-header-right.png") var(--hero-image-position) / var(--hero-image-size) no-repeat;
  background: var(--hero-header-image) var(--hero-image-position) / var(--hero-image-size) no-repeat;
  -webkit-mask-image: radial-gradient(
    ellipse 62% 82% at 72% 51%,
    #000 0 38%,
    rgba(0, 0, 0, 0.88) 48%,
    rgba(0, 0, 0, 0.38) 67%,
    transparent 86%
  );
  mask-image: radial-gradient(
    ellipse 62% 82% at 72% 51%,
    #000 0 38%,
    rgba(0, 0, 0, 0.88) 48%,
    rgba(0, 0, 0, 0.38) 67%,
    transparent 86%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(187, 210, 89, 0.1), transparent 27%),
    linear-gradient(90deg, rgba(7, 26, 18, 0.95) 0%, rgba(7, 26, 18, 0.84) 28%, rgba(7, 26, 18, 0.34) 54%, rgba(7, 26, 18, 0) 78%),
    linear-gradient(180deg, rgba(7, 26, 18, 0.1) 0%, rgba(7, 26, 18, 0) 34%, rgba(7, 26, 18, 0.36) 100%),
    repeating-linear-gradient(
      24deg,
      rgba(255, 248, 233, 0.028) 0,
      rgba(255, 248, 233, 0.028) 1px,
      transparent 1px,
      transparent 150px
    );
}

.programs-page {
  background:
    linear-gradient(180deg, rgba(6, 18, 11, 0) 0%, rgba(6, 18, 11, 0.76) 48%, var(--forest-950) 100%),
    repeating-linear-gradient(
      116deg,
      rgba(169, 202, 86, 0.034) 0,
      rgba(169, 202, 86, 0.034) 1px,
      transparent 1px,
      transparent 124px
    );
}

.programs-hero {
  position: relative;
  min-height: 92svh;
  padding: 28px var(--page-gutter) clamp(58px, 6vw, 82px);
  isolation: isolate;
  background: #071a12;
}

.programs-hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(169, 202, 86, 0.14), transparent 27%),
    radial-gradient(circle at 28% 78%, rgba(200, 180, 95, 0.08), transparent 25%),
    linear-gradient(140deg, #071a12 0%, #071a12 44%, #0d2416 100%),
    repeating-linear-gradient(
      24deg,
      rgba(255, 248, 233, 0.026) 0,
      rgba(255, 248, 233, 0.026) 1px,
      transparent 1px,
      transparent 152px
    );
}

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

.programs-hero-background::before {
  width: min(56vw, 760px);
  height: min(56vw, 760px);
  right: -10vw;
  top: 16%;
  border: 1px solid rgba(169, 202, 86, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 90px rgba(169, 202, 86, 0.05),
    0 0 120px rgba(169, 202, 86, 0.05);
}

.programs-hero-background::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.96) 0%, rgba(7, 26, 18, 0.66) 48%, rgba(7, 26, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 26, 18, 0.06) 0%, rgba(7, 26, 18, 0.28) 100%);
}

.experience-page {
  background:
    linear-gradient(180deg, rgba(6, 18, 11, 0) 0%, rgba(6, 18, 11, 0.74) 46%, var(--forest-950) 100%),
    repeating-linear-gradient(
      116deg,
      rgba(169, 202, 86, 0.034) 0,
      rgba(169, 202, 86, 0.034) 1px,
      transparent 1px,
      transparent 124px
    );
}

.experience-page-hero {
  position: relative;
  min-height: 92svh;
  padding: 28px var(--page-gutter) clamp(58px, 6vw, 82px);
  isolation: isolate;
  background: #071a12;
}

.experience-page-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(169, 202, 86, 0.14), transparent 27%),
    radial-gradient(circle at 24% 72%, rgba(200, 180, 95, 0.07), transparent 26%),
    linear-gradient(140deg, #071a12 0%, #071a12 44%, #0d2416 100%),
    repeating-linear-gradient(
      24deg,
      rgba(255, 248, 233, 0.026) 0,
      rgba(255, 248, 233, 0.026) 1px,
      transparent 1px,
      transparent 152px
    );
}

.experience-page-background::before,
.experience-page-background::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.experience-page-background::before {
  width: min(58vw, 820px);
  height: min(58vw, 820px);
  right: -10vw;
  top: 13%;
  border: 1px solid rgba(169, 202, 86, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 110px rgba(169, 202, 86, 0.055),
    0 0 130px rgba(169, 202, 86, 0.06);
}

.experience-page-background::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.96) 0%, rgba(7, 26, 18, 0.7) 48%, rgba(7, 26, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 26, 18, 0.04) 0%, rgba(7, 26, 18, 0.32) 100%);
}

.experience-page-background > span {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(215, 242, 126, 0.78);
  box-shadow: 0 0 28px rgba(169, 202, 86, 0.36);
  animation: experienceNodeDrift 18s ease-in-out infinite alternate;
}

.experience-page-background > span:nth-child(1) {
  right: 22%;
  top: 24%;
}

.experience-page-background > span:nth-child(2) {
  right: 42%;
  top: 55%;
  animation-delay: -4s;
}

.experience-page-background > span:nth-child(3) {
  right: 14%;
  bottom: 24%;
  animation-delay: -7s;
}

.experience-page-background > span:nth-child(4) {
  left: 18%;
  bottom: 18%;
  opacity: 0.52;
  animation-delay: -10s;
}

.experience-page-hero-grid {
  width: min(var(--page-max), 100%);
  min-height: calc(92svh - 150px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(330px, 0.62fr);
  align-items: center;
  gap: clamp(42px, 6vw, 118px);
}

.experience-page-copy {
  max-width: 930px;
}

.experience-page-label,
.cinematic-video-heading span {
  display: block;
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 800;
}

.experience-page-copy h1 {
  max-width: min(100%, 920px);
  margin: 16px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 5.3vw, 6.25rem);
  line-height: 1.03;
  font-weight: 500;
  text-wrap: balance;
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(255, 248, 233, 0.08);
}

.experience-page-subheadline {
  max-width: 820px;
  margin: 28px 0 0;
  color: #ecf4df;
  font-size: clamp(1.12rem, 1.6vw, 1.36rem);
  line-height: 1.62;
}

.experience-page-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.experience-page-orbit {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.experience-page-orbit .logo-image.compact {
  width: clamp(96px, 11vw, 132px);
  height: auto;
}

.orbit-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(169, 202, 86, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(169, 202, 86, 0.045),
    0 0 110px rgba(169, 202, 86, 0.05);
  animation: experienceOrbitBreathe 16s ease-in-out infinite alternate;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(200, 180, 95, 0.12);
  border-radius: 50%;
}

.orbit-ring::after {
  inset: 34%;
  border-color: rgba(169, 202, 86, 0.13);
}

.orbit-ring span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(169, 202, 86, 0.34);
}

.orbit-ring span:nth-child(1) {
  right: 18%;
  top: 18%;
}

.orbit-ring span:nth-child(2) {
  left: 18%;
  top: 38%;
}

.orbit-ring span:nth-child(3) {
  right: 28%;
  bottom: 22%;
}

.orbit-ring span:nth-child(4) {
  left: 36%;
  bottom: 12%;
}

@keyframes experienceNodeDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-10px, 12px, 0);
  }
}

@keyframes experienceOrbitBreathe {
  from {
    transform: scale(0.985);
    opacity: 0.72;
  }

  to {
    transform: scale(1.015);
    opacity: 0.94;
  }
}

.programs-hero-grid {
  width: min(var(--page-max), 100%);
  min-height: calc(92svh - 150px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(330px, 0.58fr);
  align-items: center;
  gap: clamp(42px, 6vw, 118px);
}

.programs-hero-copy {
  max-width: 920px;
}

.programs-label {
  display: block;
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 800;
}

.programs-hero-copy h1 {
  max-width: min(100%, 900px);
  margin: 16px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 5.2vw, 6.2rem);
  line-height: 1.03;
  font-weight: 500;
  text-wrap: balance;
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(255, 248, 233, 0.08);
}

.programs-subheadline {
  max-width: 780px;
  margin: 28px 0 0;
  color: #ecf4df;
  font-size: clamp(1.12rem, 1.6vw, 1.36rem);
  line-height: 1.62;
}

.programs-supporting {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.programs-hero-actions {
  margin-top: 36px;
}

.programs-hero-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: clamp(28px, 3.4vw, 44px);
  background:
    radial-gradient(circle at 58% 30%, rgba(169, 202, 86, 0.16), transparent 33%),
    linear-gradient(145deg, rgba(20, 48, 28, 0.76), rgba(4, 14, 8, 0.95)),
    rgba(7, 21, 12, 0.72);
  border-color: rgba(169, 202, 86, 0.22);
}

.programs-hero-panel .logo-image.compact {
  width: 108px;
  height: 78px;
}

.programs-hero-panel p {
  margin: 22px 0 0;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programs-hero-panel strong {
  max-width: 360px;
  margin-top: 16px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.48rem, 2.4vw, 2.05rem);
  font-weight: 500;
  line-height: 1.18;
}

.programs-orbit {
  position: absolute;
  inset: clamp(24px, 3vw, 38px);
  opacity: 0.78;
  pointer-events: none;
}

.programs-orbit::before,
.programs-orbit::after {
  content: "";
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(169, 202, 86, 0.14);
  border-radius: 50%;
}

.programs-orbit::after {
  inset: 20%;
  border-color: rgba(200, 180, 95, 0.12);
}

.programs-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(169, 202, 86, 0.34);
}

.programs-orbit span:nth-child(1) {
  right: 18%;
  top: 18%;
}

.programs-orbit span:nth-child(2) {
  left: 18%;
  top: 38%;
}

.programs-orbit span:nth-child(3) {
  right: 28%;
  bottom: 22%;
}

.programs-orbit span:nth-child(4) {
  left: 36%;
  bottom: 12%;
}

.topbar {
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.brand-lockup,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.brand-lockup {
  gap: 18px;
}

.brand-lockup span {
  min-width: 0;
}

.brand-lockup strong {
  display: block;
  color: #fffdf6;
  font-family: var(--font-display);
  font-size: 2.02rem;
  font-weight: 500;
  line-height: 0.96;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.3),
    0 0 22px rgba(169, 202, 86, 0.18);
  white-space: nowrap;
}

.footer-brand strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
}

.brand-lockup small,
.footer-brand span {
  display: block;
  margin-top: 4px;
  color: var(--lime);
  font-size: 0.82rem;
}

.brand-lockup small {
  margin-top: 8px;
  color: rgba(190, 222, 103, 0.88);
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.08;
  white-space: nowrap;
}

.logo-image {
  width: min(84%, 390px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 18px rgba(169, 202, 86, 0.22))
    drop-shadow(0 22px 48px rgba(0, 0, 0, 0.36));
}

.logo-image.compact {
  width: 86px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.22))
    drop-shadow(0 0 18px rgba(169, 202, 86, 0.34));
}

.brand-lockup .logo-image.compact {
  width: 102px;
  height: 74px;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 15px rgba(169, 202, 86, 0.28));
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links {
  align-items: center;
  justify-content: flex-end;
}

.nav-links a,
.footer-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--mist);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #d8f28a;
  border-color: rgba(169, 202, 86, 0.42);
  background: rgba(169, 202, 86, 0.1);
  box-shadow: 0 0 20px rgba(169, 202, 86, 0.12);
  outline: none;
}

.nav-links a[aria-current="page"] {
  color: #d8f28a;
  border-color: rgba(169, 202, 86, 0.4);
  background: rgba(169, 202, 86, 0.08);
}

.mobile-menu-toggle,
.mobile-nav-overlay {
  display: none;
}

.mobile-menu-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(169, 202, 86, 0.24);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(4, 16, 10, 0.46);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle.is-open {
  border-color: rgba(169, 202, 86, 0.48);
  background: rgba(169, 202, 86, 0.1);
  box-shadow: 0 0 24px rgba(169, 202, 86, 0.12);
  outline: none;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  align-items: stretch;
  justify-content: stretch;
  padding: 18px;
  background:
    radial-gradient(circle at 70% 15%, rgba(169, 202, 86, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(4, 15, 9, 0.82), rgba(4, 15, 9, 0.94));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-panel {
  width: 100%;
  min-height: calc(100svh - 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(169, 202, 86, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 22%, rgba(169, 202, 86, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(12, 35, 20, 0.88), rgba(5, 17, 10, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  padding: clamp(28px, 8vw, 48px);
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms ease;
}

.mobile-nav-overlay.is-open .mobile-nav-panel {
  transform: translateY(0) scale(1);
}

.mobile-nav-kicker {
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mobile-nav-links a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(169, 202, 86, 0.14);
  color: rgba(255, 248, 233, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 8vw, 2.35rem);
  line-height: 1.1;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    padding-left 180ms ease;
}

.mobile-nav-links a::after {
  content: "→";
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.68;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible,
.mobile-nav-links a[aria-current="page"] {
  padding-left: 8px;
  color: #d8f28a;
  border-color: rgba(169, 202, 86, 0.36);
  outline: none;
}

.mobile-nav-close {
  width: fit-content;
  margin-top: 34px;
  border: 0;
  color: rgba(224, 236, 207, 0.74);
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  color: var(--lime);
  outline: none;
}

.hero-grid {
  width: min(var(--page-max), 100%);
  min-height: calc(100svh - 150px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 110px);
}

@media (min-width: 1041px) {
  .hero-grid {
    align-items: center;
  }

  .hero-copy {
    grid-column: 1;
    max-width: 720px;
    justify-self: start;
    min-height: auto;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.tagline,
.section-heading span,
.space-role {
  margin: 0;
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 800;
}

.section-heading span {
  display: block;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 16px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(3.85rem, 4.65vw, 5.8rem);
  line-height: 1.03;
  font-weight: 500;
  text-wrap: balance;
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(255, 248, 233, 0.08);
}

.hero-statement {
  max-width: 670px;
  margin: 24px 0 0;
  color: #ecf4df;
  font-size: 1.22rem;
  line-height: 1.66;
  text-shadow: 0 0 24px rgba(3, 9, 6, 0.74);
}

.hero-statement span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid rgba(169, 202, 86, 0.36);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button {
  color: #09140d;
  background: linear-gradient(135deg, #fff8e9, #bfdc68 55%, var(--lime));
  box-shadow: 0 18px 50px rgba(169, 202, 86, 0.2);
}

.secondary-button {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
}

.hero-actions .secondary-button {
  color: rgba(255, 248, 233, 0.86);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(169, 202, 86, 0.24);
  box-shadow: none;
}

.mobile-ecosystem-visual {
  display: none;
}

.scroll-top-button {
  display: none;
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 24;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(169, 202, 86, 0.38);
  border-radius: 50%;
  color: #09140d;
  background: linear-gradient(135deg, #fff8e9, #bfdc68 55%, var(--lime));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.26),
    0 16px 42px rgba(169, 202, 86, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.28),
    0 20px 54px rgba(169, 202, 86, 0.3);
  transform: translateY(-2px) scale(1);
  outline: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  box-shadow: 0 22px 62px rgba(169, 202, 86, 0.28);
}

.inline-form {
  max-width: 560px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.inline-form input {
  min-height: 52px;
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  padding: 0 18px;
  outline: none;
}

.inline-form input:focus {
  border-color: rgba(169, 202, 86, 0.62);
}

.inline-form button {
  min-height: 52px;
  border: 1px solid rgba(169, 202, 86, 0.36);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.inline-form button:hover,
.inline-form button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(169, 202, 86, 0.58);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.inline-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hero-signup-form {
  max-width: 500px;
}

.hero-signup-form input {
  background: rgba(255, 255, 255, 0.052);
}

.hero-signup-form button {
  color: rgba(255, 248, 233, 0.86);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(169, 202, 86, 0.26);
  box-shadow: none;
}

.hero-signup-form button:hover,
.hero-signup-form button:focus-visible {
  color: #d8f28a;
  background: rgba(169, 202, 86, 0.09);
}

.inline-status {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--lime);
  line-height: 1.5;
}

.section-band {
  width: min(var(--page-max), calc(100% - var(--page-inline)));
  margin: 0 auto;
  padding: var(--section-pad-y) 0;
  scroll-margin-top: 0;
}

.hash-anchor {
  display: block;
  width: 100%;
  height: 0;
  scroll-margin-top: 0;
}

.section-band + .section-band {
  padding-top: var(--section-pad-y-compact);
}

.section-band + .hash-anchor + .section-band {
  padding-top: var(--section-pad-y-compact);
}

.hero-section + .section-band {
  padding-top: var(--section-pad-y-compact);
}

.section-heading {
  width: 100%;
  max-width: none;
  margin-bottom: var(--section-heading-gap);
}

.section-heading h2 {
  max-width: min(100%, var(--section-headline-max));
  margin: 12px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3.7vw, 4.2rem);
  line-height: 1.07;
  font-weight: 500;
  text-wrap: balance;
}

.section-heading p {
  max-width: min(100%, var(--section-body-max));
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-heading p + p {
  margin-top: 12px;
}

.section-band.experience-section {
  position: relative;
  padding-bottom: var(--section-bridge-half);
}

.experience-section::before {
  content: none;
}

.experience-section .section-heading {
  margin-bottom: 0;
}

.experience-section .section-heading h2 {
  max-width: min(100%, var(--section-headline-max));
}

.experience-section .section-heading p {
  max-width: min(100%, var(--section-body-max));
}

.experience-preview-section {
  padding-top: var(--section-pad-y-compact);
}

.experience-preview-section .section-heading {
  margin-bottom: clamp(26px, 3vw, 36px);
}

.experience-preview-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 38vw, 560px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.72fr);
  align-items: stretch;
  color: inherit;
  background:
    radial-gradient(circle at 20% 10%, rgba(169, 202, 86, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(16, 43, 25, 0.76), rgba(4, 14, 8, 0.94)),
    rgba(7, 21, 12, 0.84);
  border-color: rgba(169, 202, 86, 0.24);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 248, 233, 0.045);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.experience-preview-card:hover,
.experience-preview-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(215, 242, 126, 0.46);
  background:
    radial-gradient(circle at 20% 10%, rgba(169, 202, 86, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(21, 53, 31, 0.82), rgba(4, 14, 8, 0.94)),
    rgba(7, 21, 12, 0.84);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.32),
    0 0 56px rgba(169, 202, 86, 0.08),
    inset 0 1px 0 rgba(255, 248, 233, 0.06);
  outline: none;
}

.experience-preview-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #06120a;
}

.experience-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 42%, transparent 0 32%, rgba(4, 14, 8, 0.18) 64%, rgba(4, 14, 8, 0.44) 100%),
    linear-gradient(90deg, rgba(4, 14, 8, 0) 0%, rgba(4, 14, 8, 0.1) 56%, rgba(4, 14, 8, 0.82) 100%);
}

.experience-preview-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 36vw, 560px);
  object-fit: cover;
  filter: brightness(0.82) saturate(0.96) contrast(1.06);
  transform: scale(1.015);
  transition:
    filter 220ms ease,
    transform 420ms ease;
}

.experience-preview-card:hover .experience-preview-media img,
.experience-preview-card:focus-visible .experience-preview-media img {
  filter: brightness(0.9) saturate(1.02) contrast(1.08);
  transform: scale(1.035);
}

.experience-preview-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(68px, 6vw, 92px);
  height: clamp(68px, 6vw, 92px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 242, 126, 0.44);
  border-radius: 50%;
  color: #09140d;
  background: linear-gradient(135deg, #fff8e9, #bfdc68 55%, var(--lime));
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(169, 202, 86, 0.26);
  transform: translate(-50%, -50%);
}

.experience-preview-play svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
  fill: currentColor;
}

.experience-preview-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 0% 18%, rgba(169, 202, 86, 0.1), transparent 34%),
    rgba(4, 14, 8, 0.38);
}

.experience-preview-copy > span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-preview-copy h3 {
  margin: 18px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.experience-preview-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.experience-preview-copy strong {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 850;
  transition:
    color 180ms ease,
    gap 180ms ease;
}

.experience-preview-copy strong svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-preview-card:hover .experience-preview-copy strong,
.experience-preview-card:focus-visible .experience-preview-copy strong {
  gap: 14px;
  color: #d8f28a;
}

.testimonials-section .section-heading {
  margin-bottom: clamp(32px, 3.4vw, 46px);
}

.spaces-section .section-heading {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.section-band.experience-section + .section-band.spaces-section {
  padding-top: var(--section-bridge-half);
}

.spaces-section .section-heading h2,
.spaces-section .section-heading p {
  max-width: none;
}

.spaces-section .section-heading h2 {
  font-size: clamp(2.35rem, 3.8vw, 4.2rem);
  text-wrap: balance;
}

.campus-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(320px, 28vw, 430px);
  align-items: start;
  gap: clamp(28px, 4.2vw, 72px);
  margin-bottom: var(--section-bridge-gap);
}

.campus-intro-copy {
  min-width: 0;
}

.campus-intro-copy .section-heading {
  width: 100%;
  max-width: min(100%, 1080px);
}

.campus-intro-copy .section-heading h2 {
  max-width: min(100%, 980px);
  font-size: clamp(2.35rem, 3.24vw, 3.92rem);
  overflow-wrap: normal;
}

.campus-intro-copy .section-heading p {
  max-width: min(100%, 900px);
}

.spaces-section .campus-teaser {
  display: grid;
  gap: 16px;
  margin: 0;
}

.campus-intro-layout .campus-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  max-width: min(100%, 1060px);
}

.campus-cinematic-preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  justify-self: stretch;
  align-self: start;
  display: block;
  color: inherit;
  text-decoration: none;
  border-color: rgba(169, 202, 86, 0.26);
  background:
    radial-gradient(circle at 68% 28%, rgba(169, 202, 86, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(15, 42, 25, 0.76), rgba(4, 14, 8, 0.94)),
    rgba(7, 21, 12, 0.84);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.28),
    0 0 46px rgba(169, 202, 86, 0.055),
    inset 0 1px 0 rgba(255, 248, 233, 0.04);
  transition:
    transform var(--motion-smooth),
    border-color var(--motion-smooth),
    box-shadow var(--motion-smooth),
    background var(--motion-smooth);
}

.campus-cinematic-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 233, 0.035), transparent 26%),
    radial-gradient(circle at 50% 28%, rgba(215, 242, 126, 0.08), transparent 40%);
  opacity: 0.66;
  transition: opacity var(--motion-smooth);
}

.campus-cinematic-preview:hover,
.campus-cinematic-preview:focus-visible {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(215, 242, 126, 0.46);
  background:
    radial-gradient(circle at 68% 28%, rgba(169, 202, 86, 0.17), transparent 34%),
    linear-gradient(145deg, rgba(18, 49, 29, 0.82), rgba(4, 14, 8, 0.94)),
    rgba(7, 21, 12, 0.84);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.32),
    0 0 62px rgba(169, 202, 86, 0.095),
    inset 0 1px 0 rgba(255, 248, 233, 0.055);
  outline: none;
}

.campus-cinematic-preview:hover::before,
.campus-cinematic-preview:focus-visible::before {
  opacity: 0.9;
}

.campus-cinematic-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #06120a;
}

.campus-cinematic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 54% 42%, transparent 0 28%, rgba(4, 14, 8, 0.14) 64%, rgba(4, 14, 8, 0.58) 100%),
    linear-gradient(180deg, rgba(4, 14, 8, 0.04), rgba(4, 14, 8, 0.62));
}

.campus-cinematic-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.98) contrast(1.06);
  transform: scale(1.01);
  transition:
    filter var(--motion-smooth),
    transform 420ms ease;
}

.campus-cinematic-preview:hover .campus-cinematic-media img,
.campus-cinematic-preview:focus-visible .campus-cinematic-media img {
  filter: brightness(0.93) saturate(1.04) contrast(1.08);
  transform: scale(1.045);
}

.campus-cinematic-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(54px, 4.4vw, 68px);
  height: clamp(54px, 4.4vw, 68px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 242, 126, 0.46);
  border-radius: 50%;
  color: #09140d;
  background: linear-gradient(135deg, #fff8e9, #cde86f 54%, var(--accent));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(169, 202, 86, 0.22);
  transform: translate(-50%, -50%);
}

.campus-cinematic-play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  fill: currentColor;
}

.campus-cinematic-copy {
  position: relative;
  z-index: 3;
  padding: 18px 20px 20px;
}

.campus-cinematic-copy h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 1.65vw, 1.62rem);
  font-weight: 500;
  line-height: 1.12;
}

.campus-cinematic-copy p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.campus-cinematic-copy strong {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255, 248, 233, 0.9);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  transition:
    color var(--motion-fast),
    gap var(--motion-fast);
}

.campus-cinematic-copy strong svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.campus-cinematic-preview:hover .campus-cinematic-copy strong,
.campus-cinematic-preview:focus-visible .campus-cinematic-copy strong {
  gap: 11px;
  color: var(--accent-bright);
}

.campus-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.campus-feature {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(169, 202, 86, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.052), rgba(255, 248, 233, 0.016)),
    rgba(255, 255, 255, 0.026);
}

.campus-feature-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 202, 86, 0.24);
  border-radius: 8px;
  color: var(--lime);
  background: rgba(169, 202, 86, 0.07);
}

.campus-feature-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.campus-feature-title {
  min-width: 0;
  color: rgba(224, 236, 207, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.campus-journey {
  display: grid;
  gap: clamp(18px, 2.2vw, 26px);
  margin: 0 0 clamp(30px, 4vw, 50px);
}

.journey-heading {
  width: 100%;
  max-width: none;
}

.journey-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.journey-heading h3 {
  max-width: min(100%, var(--section-headline-max));
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.journey-heading p {
  max-width: min(100%, var(--section-body-max));
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.journey-card {
  min-height: 232px;
  width: 100%;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(12, 34, 20, 0.8), rgba(5, 16, 9, 0.92)),
    rgba(7, 21, 12, 0.76);
  border-color: rgba(169, 202, 86, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.journey-card:hover,
.journey-card:focus-visible,
.journey-card.active,
.journey-card.selected {
  transform: translateY(-3px);
  outline: none;
  border-color: rgba(215, 242, 126, 0.5);
  background:
    linear-gradient(145deg, rgba(24, 55, 31, 0.9), rgba(7, 22, 12, 0.96)),
    rgba(7, 21, 12, 0.84);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.24),
    0 0 34px rgba(205, 238, 104, 0.1),
    inset 0 1px 0 rgba(255, 248, 233, 0.07);
}

.journey-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 202, 86, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.1), rgba(255, 248, 233, 0.025)),
    rgba(6, 18, 11, 0.22);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.journey-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-card:hover .journey-icon,
.journey-card:focus-visible .journey-icon,
.journey-card.active .journey-icon,
.journey-card.selected .journey-icon {
  border-color: rgba(215, 242, 126, 0.52);
  background: rgba(169, 202, 86, 0.16);
  box-shadow: inset 0 0 18px rgba(169, 202, 86, 0.08);
}

.journey-title {
  margin-top: 18px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.12;
}

.journey-subtitle {
  margin-top: 8px;
  color: rgba(190, 222, 103, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.journey-description {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.journey-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.journey-summary span {
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-summary strong {
  color: var(--mist);
  font-weight: 750;
}

.journey-summary button {
  margin-left: 2px;
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  color: rgba(224, 236, 207, 0.68);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.journey-summary button:hover,
.journey-summary button:focus-visible {
  color: var(--cream);
  border-color: rgba(169, 202, 86, 0.42);
  outline: none;
}

@media (min-width: 980px) {
  .spaces-section {
    width: min(var(--page-max), calc(100% - var(--page-inline)));
  }

  .spaces-section .section-heading h2 {
    white-space: nowrap;
  }
}

.business-value-section .section-heading {
  margin-bottom: var(--section-heading-gap);
}

.business-value-section .section-heading h2 {
  max-width: min(100%, var(--section-headline-max));
}

.business-value-section .section-heading p {
  max-width: min(100%, var(--section-body-max));
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.102), rgba(255, 255, 255, 0.035)),
    rgba(7, 21, 12, 0.58);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.pillar-grid,
.business-value-grid,
.speaker-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.business-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.pillar-grid {
  align-items: stretch;
  gap: 20px;
}

.pillar-card,
.business-value-card,
.speaker-card,
.testimonial-card {
  min-height: 260px;
  padding: 28px;
}

.business-value-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    linear-gradient(180deg, rgba(12, 35, 20, 0.78), rgba(7, 21, 12, 0.68));
  border-color: rgba(169, 202, 86, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.business-value-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 202, 86, 0.24), transparent);
  opacity: 0.5;
}

.business-value-card:hover,
.business-value-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(169, 202, 86, 0.42);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.108), rgba(255, 255, 255, 0.034)),
    linear-gradient(180deg, rgba(15, 43, 24, 0.84), rgba(8, 24, 14, 0.74));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.23),
    0 0 36px rgba(169, 202, 86, 0.075);
}

.business-value-card .icon-badge {
  width: 48px;
  height: 48px;
  border-color: rgba(169, 202, 86, 0.3);
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.1), rgba(255, 248, 233, 0.025)),
    rgba(6, 18, 11, 0.24);
}

.business-value-card .icon-badge svg {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.business-value-note {
  max-width: 840px;
  margin: 24px 0 0;
  color: rgba(224, 236, 207, 0.76);
  font-size: 1rem;
  line-height: 1.66;
}

.cinematic-video-section {
  padding-top: var(--section-pad-y);
}

.cinematic-video-heading {
  margin-bottom: clamp(26px, 3vw, 36px);
}

.cinematic-video-heading span {
  margin-bottom: 12px;
}

.cinematic-video-heading h2 {
  max-width: min(100%, 900px);
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3.7vw, 4.2rem);
  line-height: 1.07;
  font-weight: 500;
  text-wrap: balance;
}

.cinematic-video-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(10px, 1.2vw, 16px);
  background:
    radial-gradient(circle at 50% 0%, rgba(169, 202, 86, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(16, 43, 25, 0.82), rgba(4, 14, 8, 0.96)),
    rgba(7, 21, 12, 0.84);
  border-color: rgba(169, 202, 86, 0.24);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.3),
    0 0 64px rgba(169, 202, 86, 0.06),
    inset 0 1px 0 rgba(255, 248, 233, 0.04);
}

.cinematic-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(169, 202, 86, 0.12), transparent 24%, transparent 76%, rgba(200, 180, 95, 0.06)),
    linear-gradient(180deg, rgba(255, 248, 233, 0.045), transparent 18%);
  opacity: 0.62;
}

.cinematic-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #020905;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.experience-key-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 3vw, 38px);
}

.experience-key-ideas span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(169, 202, 86, 0.22);
  border-radius: 999px;
  color: rgba(224, 236, 207, 0.82);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 760;
}

.experience-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.experience-pillar-card {
  min-height: 260px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.026)),
    linear-gradient(180deg, rgba(12, 35, 20, 0.78), rgba(7, 21, 12, 0.68));
  border-color: rgba(169, 202, 86, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.experience-pillar-card:hover,
.experience-pillar-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(169, 202, 86, 0.42);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.034)),
    linear-gradient(180deg, rgba(15, 43, 24, 0.84), rgba(8, 24, 14, 0.74));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.23),
    0 0 36px rgba(169, 202, 86, 0.075);
}

.experience-pillar-card h3 {
  margin: 24px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 1.7vw, 1.62rem);
  font-weight: 500;
  line-height: 1.14;
}

.experience-pillar-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.experience-page-cta-section {
  padding-top: var(--section-pad-y);
}

.experience-page-cta-heading {
  width: 100%;
  max-width: none;
  margin-bottom: var(--section-heading-gap);
}

.experience-page-cta-heading h2 {
  max-width: min(100%, var(--section-headline-max));
  margin-top: 0;
}

.experience-page-cta-heading p {
  max-width: min(100%, var(--section-body-max));
}

.experience-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.program-feature-grid,
.program-card-grid,
.program-year-timeline,
.program-step-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
}

.program-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-feature-card,
.program-card,
.program-quarter-card,
.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.026)),
    linear-gradient(180deg, rgba(12, 35, 20, 0.78), rgba(7, 21, 12, 0.68));
  border-color: rgba(169, 202, 86, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.program-feature-card:hover,
.program-card:hover,
.program-quarter-card:hover,
.comparison-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 202, 86, 0.42);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.034)),
    linear-gradient(180deg, rgba(15, 43, 24, 0.84), rgba(8, 24, 14, 0.74));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.23),
    0 0 36px rgba(169, 202, 86, 0.075);
}

.program-feature-card {
  min-height: 250px;
}

.program-feature-card .icon-badge,
.program-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 202, 86, 0.3);
  border-radius: 8px;
  color: var(--lime);
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.1), rgba(255, 248, 233, 0.025)),
    rgba(6, 18, 11, 0.24);
}

.program-feature-card .icon-badge svg,
.program-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-feature-card h3,
.program-card h3,
.program-quarter-card h3,
.program-step h3,
.comparison-card h3 {
  margin: 22px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 1.7vw, 1.62rem);
  font-weight: 500;
  line-height: 1.14;
}

.program-feature-card p,
.program-card p,
.program-quarter-card p,
.program-step p,
.comparison-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.program-feature-card p,
.program-card p,
.program-quarter-card p,
.program-step p {
  margin: 14px 0 0;
}

.program-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.program-card {
  grid-column: span 2;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.program-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.program-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.program-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.program-card-topline > span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(169, 202, 86, 0.24);
  border-radius: 999px;
  color: #d8f28a;
  background: rgba(169, 202, 86, 0.08);
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.program-audience {
  margin-top: 22px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.program-card h3 {
  margin-top: 12px;
  font-size: clamp(1.62rem, 2vw, 2rem);
}

.program-focus {
  margin-top: 22px;
}

.program-focus strong {
  display: block;
  color: rgba(224, 236, 207, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-focus ul,
.program-quarter-card ul,
.comparison-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.program-focus li,
.program-quarter-card li {
  border: 1px solid rgba(169, 202, 86, 0.2);
  border-radius: 999px;
  color: rgba(224, 236, 207, 0.78);
  background: rgba(255, 255, 255, 0.035);
  padding: 7px 10px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.program-card-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--cream);
  font-weight: 850;
  transition:
    color 180ms ease,
    gap 180ms ease;
}

.program-card-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-card-link:hover,
.program-card-link:focus-visible {
  gap: 14px;
  color: #d8f28a;
  outline: none;
}

.program-year-timeline {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-year-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 202, 86, 0.34), transparent);
}

.program-quarter-card {
  min-height: 390px;
  padding-top: 30px;
}

.quarter-marker {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 202, 86, 0.34);
  border-radius: 50%;
  color: #d8f28a;
  background:
    radial-gradient(circle, rgba(169, 202, 86, 0.16), rgba(169, 202, 86, 0.04) 64%),
    rgba(6, 18, 11, 0.34);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.quarter-months {
  margin-top: 20px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.program-quarter-card h3 {
  margin-top: 10px;
}

.program-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: program-step;
}

.program-step {
  position: relative;
  min-height: 230px;
  padding: 0 22px 0 0;
}

.program-step::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 54px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 202, 86, 0.3), transparent);
}

.program-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 202, 86, 0.3);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(169, 202, 86, 0.08);
  font-weight: 850;
}

.program-step h3 {
  margin-top: 22px;
}

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

.comparison-card {
  min-height: 310px;
}

.comparison-card.featured {
  border-color: rgba(215, 242, 126, 0.42);
  background:
    radial-gradient(circle at 18% 8%, rgba(169, 202, 86, 0.13), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(18, 48, 28, 0.86), rgba(7, 21, 12, 0.76));
}

.comparison-card ul {
  display: grid;
  gap: 12px;
}

.comparison-card li {
  position: relative;
  padding-left: 18px;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(169, 202, 86, 0.22);
}

.programs-cta-section {
  padding-top: var(--section-pad-y);
}

.programs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.programs-cta-actions .final-cta-form {
  flex: 1 1 520px;
}

.programs-contact-button {
  min-width: 190px;
}

.programs-footer-note {
  margin: 22px 0 0;
  color: rgba(224, 236, 207, 0.72);
  line-height: 1.6;
}

.pillar-card {
  min-height: 318px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(12, 35, 20, 0.8), rgba(7, 21, 12, 0.66));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 202, 86, 0.28), transparent);
  opacity: 0.55;
}

.pillar-card:hover,
.pillar-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(169, 202, 86, 0.42);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.038)),
    linear-gradient(180deg, rgba(15, 43, 24, 0.86), rgba(8, 24, 14, 0.72));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.24),
    0 0 38px rgba(169, 202, 86, 0.075);
}

.icon-badge,
.space-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 202, 86, 0.34);
  border-radius: 8px;
  background: rgba(169, 202, 86, 0.09);
}

.pillar-card .icon-badge {
  width: 50px;
  height: 50px;
  border-color: rgba(169, 202, 86, 0.3);
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.105), rgba(255, 248, 233, 0.028)),
    rgba(6, 18, 11, 0.24);
}

.icon-badge svg,
.space-icon svg,
.event-details svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card .icon-badge svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.pillar-card h3,
.business-value-card h3,
.space-card h3,
.speaker-card h3,
.timeline-item h3,
.event-panel h3 {
  margin: 24px 0 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.12;
  font-weight: 500;
}

.pillar-card h3 {
  margin-top: 30px;
  font-size: 1.6rem;
}

.pillar-card p,
.business-value-card p,
.space-card p,
.speaker-card p,
.timeline-item p,
.testimonial-card p,
.event-panel p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.pillar-card p {
  margin-top: 16px;
  line-height: 1.72;
}

.business-value-card h3 {
  margin-top: 24px;
  font-size: clamp(1.26rem, 1.5vw, 1.48rem);
}

.business-value-card p {
  margin-top: 14px;
  line-height: 1.58;
}

.campus-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1.04fr) minmax(220px, 0.72fr);
  align-items: start;
  gap: clamp(18px, 2.6vw, 34px);
}

.campus-map-panel {
  position: sticky;
  top: 24px;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: min(100%, 500px);
  margin: 0;
  padding: clamp(14px, 1.5vw, 18px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 18% 12%, rgba(169, 202, 86, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(16, 43, 25, 0.78), rgba(4, 14, 8, 0.95)),
    rgba(7, 21, 12, 0.84);
  border-color: rgba(169, 202, 86, 0.26);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 248, 233, 0.04);
}

.map-label,
.map-note,
.room-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-label {
  margin: 4px 2px 14px;
}

.campus-mobile-hint {
  display: none;
  margin: -4px 2px 12px;
  color: rgba(224, 236, 207, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.map-label svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.campus-map-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1054 / 1492;
  margin: 0 auto;
  border: 1px solid rgba(169, 202, 86, 0.18);
  border-radius: 8px;
  background: #06120a;
}

.campus-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
  transform-origin: var(--focus-x, 50%) var(--focus-y, 50%);
  transform: scale(1);
  transition: transform 260ms ease-out;
  will-change: transform;
}

.campus-map.has-selected-room {
  transform: scale(1.06);
}

.campus-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 8px;
  background: #06120a;
  filter: brightness(0.9) saturate(0.92) contrast(1.06);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.campus-map-picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.campus-map-stage::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 16, 8, 0.035), rgba(3, 16, 8, 0.115)),
    radial-gradient(circle at 38% 24%, transparent 0 16%, rgba(3, 16, 8, 0.08) 34%),
    rgba(3, 18, 9, 0.055);
}

.campus-map-stage::after {
  z-index: 3;
  box-shadow: inset 0 0 58px rgba(2, 10, 5, 0.66);
}

.campus-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.campus-svg-dim {
  fill: rgba(2, 12, 6, 0);
  pointer-events: none;
  transition: fill 180ms ease;
}

.campus-map.has-active-room .campus-svg-dim {
  fill: rgba(2, 12, 6, 0.11);
}

.campus-room-path {
  fill: transparent;
  stroke: transparent;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  pointer-events: all;
  transition:
    fill 180ms ease,
    stroke 180ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

.campus-room-path:hover,
.campus-room-path:focus-visible {
  outline: none;
}

.campus-room-path.active,
.campus-room-path.selected {
  fill: rgba(215, 242, 126, 0.2);
  stroke: rgba(221, 245, 142, 0.5);
  filter: url(#roomGlow);
  mix-blend-mode: screen;
}

.campus-room-path.selected {
  fill: rgba(239, 255, 185, 0.26);
  stroke: rgba(255, 248, 233, 0.6);
}

.map-note {
  margin: 14px 2px 0;
  color: rgba(224, 236, 207, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.space-groups {
  display: grid;
  align-items: start;
  align-content: start;
  gap: 18px;
}

.space-groups-left {
  grid-column: 1;
  grid-row: 1;
}

.space-groups-right {
  grid-column: 3;
  grid-row: 1;
}

.room-group {
  display: grid;
  gap: 10px;
}

.room-group-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(169, 202, 86, 0.34), transparent);
}

.room-group-grid {
  display: grid;
  gap: 12px;
}

.space-card {
  min-height: 142px;
  scroll-margin-block: 84px;
  padding: 17px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  cursor: default;
  background:
    linear-gradient(145deg, rgba(12, 34, 20, 0.84), rgba(5, 16, 9, 0.94)),
    rgba(7, 21, 12, 0.78);
  border-color: rgba(169, 202, 86, 0.22);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 248, 233, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.space-card[data-map-linked="true"] {
  cursor: pointer;
}

.space-card h3 {
  margin-top: 3px;
  font-size: clamp(1.16rem, 1.45vw, 1.3rem);
}

.space-card > div:not(.space-icon) {
  min-width: 0;
  padding-top: 1px;
}

.space-card .space-icon {
  width: 42px;
  height: 42px;
  margin-top: 2px;
  flex: 0 0 42px;
}

.space-card .space-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.space-card p:not(.space-role) {
  margin-top: 8px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.space-card.active,
.space-card.selected,
.space-card:hover,
.space-card:focus-visible {
  transform: translateY(-3px);
  outline: none;
  border-color: rgba(215, 242, 126, 0.52);
  background:
    linear-gradient(145deg, rgba(24, 55, 31, 0.92), rgba(7, 22, 12, 0.96)),
    rgba(7, 21, 12, 0.84);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(205, 238, 104, 0.12),
    inset 0 1px 0 rgba(255, 248, 233, 0.08);
}

.space-card.active .space-icon,
.space-card.selected .space-icon,
.space-card:hover .space-icon,
.space-card:focus-visible .space-icon {
  border-color: rgba(215, 242, 126, 0.52);
  background: rgba(169, 202, 86, 0.16);
  box-shadow: inset 0 0 18px rgba(169, 202, 86, 0.08);
}

.space-card.journey-muted:not(.active):not(.selected) {
  opacity: 0.72;
  filter: saturate(0.86);
}

.clear-room-selection {
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(169, 202, 86, 0.28);
  border-radius: 999px;
  color: var(--mist);
  background: rgba(255, 255, 255, 0.055);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.clear-room-selection:hover,
.clear-room-selection:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(169, 202, 86, 0.46);
  background: rgba(169, 202, 86, 0.09);
  outline: none;
}

.event-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.56fr);
  align-items: center;
  justify-content: stretch;
  gap: clamp(34px, 5vw, 78px);
  --event-control-width: min(100%, 440px);
}

.event-copy {
  min-width: 0;
  max-width: none;
}

.event-copy .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.event-copy .section-heading h2 {
  max-width: min(100%, 760px);
}

.event-copy .section-heading p {
  max-width: min(100%, 860px);
  margin-top: 26px;
}

.event-details {
  display: grid;
  width: var(--event-control-width);
  gap: 14px;
  margin: 38px 0 32px;
}

.event-detail {
  min-height: 74px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  border: 1px solid rgba(169, 202, 86, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.055), rgba(255, 248, 233, 0.018)),
    rgba(255, 255, 255, 0.035);
  color: var(--mist);
}

.event-detail svg {
  width: 24px;
  height: 24px;
  justify-self: center;
  stroke-width: 1.9;
  opacity: 0.86;
}

.event-detail span,
.event-detail strong,
.event-location-link {
  display: block;
}

.event-detail span {
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-detail strong,
.event-location-link {
  color: var(--cream);
  font-size: 1.02rem;
  font-weight: 750;
}

.event-location-link {
  width: fit-content;
  text-decoration: none;
  transition:
    color 220ms ease,
    text-shadow 220ms ease,
    box-shadow 220ms ease;
}

.event-location-link:hover,
.event-location-link:focus-visible {
  color: #d8f28a;
  text-shadow: 0 0 18px rgba(169, 202, 86, 0.16);
}

.event-location-link:focus-visible {
  border-radius: 4px;
  outline: none;
  box-shadow: 0 0 0 3px rgba(169, 202, 86, 0.14);
}

.event-ctas {
  width: var(--event-control-width);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.event-primary-button,
.event-secondary-button {
  width: 100%;
  min-width: 0;
  padding-inline: 18px;
}

.event-primary-button:hover,
.event-primary-button:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 22px 64px rgba(169, 202, 86, 0.24),
    0 0 24px rgba(255, 248, 233, 0.08);
}

.event-secondary-button:hover,
.event-secondary-button:focus-visible {
  transform: translateY(-2px);
  color: #d8f28a;
  border-color: rgba(169, 202, 86, 0.4);
  background: rgba(169, 202, 86, 0.08);
  outline: none;
}

.event-panel {
  position: relative;
  overflow: hidden;
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  max-width: 520px;
  padding: clamp(26px, 3vw, 34px);
  background:
    radial-gradient(circle at 20% 12%, rgba(169, 202, 86, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(14, 36, 21, 0.74), rgba(5, 16, 9, 0.92)),
    rgba(7, 21, 12, 0.72);
  border-color: rgba(169, 202, 86, 0.18);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 248, 233, 0.04);
}

.event-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 190px;
  height: 190px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(215, 242, 126, 0.11), transparent 64%);
  transform: translate(-28%, -28%);
}

.event-panel > * {
  position: relative;
  z-index: 1;
}

.event-panel-logo {
  position: relative;
  width: 92px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
}

.event-panel-logo::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 242, 126, 0.1), transparent 68%);
}

.event-panel .logo-image.compact {
  width: 84px;
  height: 60px;
  filter: drop-shadow(0 0 18px rgba(215, 242, 126, 0.1));
}

.event-panel h3 {
  max-width: 360px;
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.18;
}

.event-signal-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.event-signal-list li {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(169, 202, 86, 0.16);
  color: var(--mist);
  padding: 12px 0;
  line-height: 1.45;
}

.event-signal-list li:last-child {
  border-bottom: 1px solid rgba(169, 202, 86, 0.16);
}

.event-signal-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(169, 202, 86, 0.28);
}

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

.speaker-card {
  min-height: 310px;
}

.avatar-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b170f;
  background: linear-gradient(135deg, var(--cream), #bed96a);
  font-weight: 900;
}

.speaker-card span {
  display: block;
  margin-top: 10px;
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 800;
}

.agenda-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 4.2vw, 58px);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.timeline-item time {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.26rem;
}

.timeline-item h3 {
  margin: 0;
}

.testimonial-card {
  min-height: 230px;
}

.testimonial-card p {
  color: var(--mist);
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.45;
}

.testimonial-card footer {
  margin-top: 20px;
  color: var(--lime);
  font-weight: 800;
}

.philosophy-section {
  position: relative;
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.philosophy-panel {
  position: relative;
  min-height: clamp(430px, 38vw, 540px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: clamp(46px, 6vw, 78px);
  border: 1px solid rgba(169, 202, 86, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.96) 0%, rgba(7, 26, 18, 0.78) 48%, rgba(7, 26, 18, 0.36) 100%),
    radial-gradient(circle at 78% 42%, rgba(169, 202, 86, 0.18), transparent 30%),
    radial-gradient(circle at 30% 82%, rgba(200, 180, 95, 0.07), transparent 28%),
    repeating-linear-gradient(
      24deg,
      rgba(255, 248, 233, 0.024) 0,
      rgba(255, 248, 233, 0.024) 1px,
      transparent 1px,
      transparent 152px
    ),
    linear-gradient(140deg, #071a12 0%, #071a12 45%, #0d2416 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 233, 0.035),
    inset 0 -1px 0 rgba(169, 202, 86, 0.06),
    0 30px 100px rgba(0, 0, 0, 0.28),
    0 0 74px rgba(169, 202, 86, 0.055);
}

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

.philosophy-panel::before {
  z-index: 0;
  background:
    radial-gradient(circle at 78% 46%, rgba(215, 242, 126, 0.2), transparent 28%),
    radial-gradient(circle at 84% 58%, rgba(120, 153, 75, 0.11), transparent 36%),
    radial-gradient(circle at 70% 32%, rgba(215, 242, 126, 0.74) 0 4px, transparent 5px),
    radial-gradient(circle at 87% 50%, rgba(215, 242, 126, 0.46) 0 3px, transparent 4px),
    radial-gradient(circle at 76% 67%, rgba(200, 180, 95, 0.42) 0 3px, transparent 4px);
  filter: blur(11px);
  opacity: 0.78;
}

.philosophy-panel::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.84) 0%, rgba(7, 26, 18, 0.42) 48%, rgba(7, 26, 18, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 26, 18, 0.08) 0%, rgba(7, 26, 18, 0) 34%, rgba(7, 26, 18, 0.34) 100%),
    repeating-linear-gradient(
      116deg,
      rgba(169, 202, 86, 0.03) 0,
      rgba(169, 202, 86, 0.03) 1px,
      transparent 1px,
      transparent 128px
    );
  opacity: 0.92;
}

.philosophy-logo-bg {
  position: absolute;
  right: clamp(24px, 5.8vw, 112px);
  top: 52%;
  z-index: 1;
  width: min(50%, 620px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.15;
  mix-blend-mode: soft-light;
  filter:
    blur(1.8px)
    contrast(1.08)
    saturate(0.72)
    drop-shadow(0 0 42px rgba(169, 202, 86, 0.14));
  pointer-events: none;
  user-select: none;
  animation: philosophyLogoDrift 34s ease-in-out infinite alternate;
}

.philosophy-panel .section-heading {
  position: relative;
  z-index: 2;
  max-width: min(100%, 700px);
  margin-bottom: 0;
}

.philosophy-panel .section-heading h2 {
  max-width: min(100%, 680px);
  line-height: 1.08;
}

.philosophy-panel .section-heading p {
  max-width: min(100%, 640px);
  margin-top: 28px;
  color: rgba(236, 244, 223, 0.84);
  line-height: 1.82;
}

@keyframes philosophyLogoDrift {
  from {
    transform: translateY(-50%) translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translateY(-50%) translate3d(-10px, 6px, 0) scale(1.015);
  }
}

.final-cta-section {
  padding-top: var(--section-pad-y);
}

.final-cta-heading {
  width: 100%;
  max-width: none;
  margin-bottom: var(--section-heading-gap);
}

.final-cta-heading h2 {
  max-width: min(100%, var(--section-headline-max));
  margin-top: 0;
}

.final-cta-heading p {
  max-width: min(100%, var(--section-body-max));
}

.final-cta-form {
  max-width: 690px;
  margin-top: 0;
}

.form-status {
  margin: 0;
  color: var(--lime);
  line-height: 1.5;
}

.footer-section {
  width: min(var(--page-max), calc(100% - var(--page-inline)));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  justify-content: flex-end;
}

.footer-meta {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(224, 236, 207, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.faq-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Global Mentora design system normalization */
.hero-copy h1,
.programs-hero-copy h1,
.experience-page-copy h1 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--h1-size);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.035;
  text-wrap: balance;
}

.section-heading h2,
.cinematic-video-heading h2,
.experience-page-cta-heading h2,
.final-cta-heading h2 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.075;
  text-wrap: balance;
}

.experience-preview-copy h3,
.journey-heading h3,
.programs-hero-panel strong,
.pillar-card h3,
.business-value-card h3,
.experience-pillar-card h3,
.program-feature-card h3,
.program-card h3,
.program-quarter-card h3,
.program-step h3,
.comparison-card h3,
.space-card h3,
.speaker-card h3,
.timeline-item h3,
.event-panel h3 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.14;
}

.pillar-card h3,
.business-value-card h3,
.experience-pillar-card h3,
.program-feature-card h3,
.program-quarter-card h3,
.program-step h3,
.comparison-card h3,
.space-card h3,
.speaker-card h3,
.timeline-item h3 {
  font-size: var(--h3-size);
}

.section-heading span,
.programs-label,
.experience-page-label,
.cinematic-video-heading span,
.journey-heading span,
.map-label,
.room-group-label,
.program-audience,
.program-focus strong,
.quarter-months,
.event-detail span,
.experience-preview-copy > span,
.mobile-nav-kicker {
  color: var(--accent);
  font-size: var(--eyebrow-size);
  font-weight: 830;
  letter-spacing: 0.045em;
  line-height: 1.2;
}

.section-heading p,
.programs-subheadline,
.programs-supporting,
.experience-page-subheadline,
.experience-page-intro,
.journey-heading p,
.experience-preview-copy p,
.pillar-card p,
.business-value-card p,
.experience-pillar-card p,
.program-feature-card p,
.program-card p,
.program-quarter-card p,
.program-step p,
.comparison-card li,
.space-card p,
.speaker-card p,
.timeline-item p,
.event-panel p,
.business-value-note,
.programs-footer-note,
.faq-list p {
  color: var(--text-muted);
  font-size: var(--body-size);
  line-height: 1.68;
}

.section-heading p,
.programs-subheadline,
.experience-page-subheadline {
  max-width: min(100%, var(--section-body-max));
  margin-top: 22px;
}

.programs-supporting,
.experience-page-intro,
.section-heading p + p {
  margin-top: 14px;
}

.section-band,
.footer-section {
  width: min(var(--page-max), calc(100% - var(--page-inline)));
}

.section-band {
  padding-block: var(--section-pad-y);
}

.section-band + .section-band,
.section-band + .hash-anchor + .section-band,
.hero-section + .section-band {
  padding-top: var(--section-pad-y);
}

.section-heading,
.cinematic-video-heading,
.experience-page-cta-heading,
.final-cta-heading {
  margin-bottom: var(--section-heading-gap);
}

.experience-section .section-heading,
.event-copy .section-heading {
  margin-bottom: 0;
}

.glass-card,
.campus-feature,
.journey-card,
.pillar-card,
.business-value-card,
.experience-preview-card,
.experience-pillar-card,
.program-feature-card,
.program-card,
.program-quarter-card,
.comparison-card,
.space-card,
.speaker-card,
.testimonial-card,
.timeline-item,
.event-detail,
.event-panel,
.campus-map-panel,
.cinematic-video-frame {
  border-color: var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--card-background);
  box-shadow: var(--card-shadow);
}

.glass-card {
  border-color: var(--border-subtle);
  border-radius: var(--radius-card);
}

.journey-card,
.pillar-card,
.business-value-card,
.experience-preview-card,
.experience-pillar-card,
.program-feature-card,
.program-card,
.program-quarter-card,
.comparison-card,
.space-card,
.speaker-card,
.testimonial-card,
.campus-feature {
  transition:
    transform var(--motion-smooth),
    border-color var(--motion-smooth),
    background var(--motion-smooth),
    box-shadow var(--motion-smooth),
    opacity var(--motion-smooth),
    filter var(--motion-smooth);
}

.journey-card:hover,
.journey-card:focus-visible,
.journey-card.active,
.journey-card.selected,
.pillar-card:hover,
.pillar-card:focus-within,
.business-value-card:hover,
.business-value-card:focus-within,
.experience-preview-card:hover,
.experience-preview-card:focus-visible,
.experience-pillar-card:hover,
.experience-pillar-card:focus-within,
.program-feature-card:hover,
.program-card:hover,
.program-quarter-card:hover,
.comparison-card:hover,
.space-card:hover,
.space-card:focus-visible,
.space-card.active,
.space-card.selected,
.speaker-card:hover,
.speaker-card:focus-within,
.testimonial-card:hover,
.campus-feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-active);
  background: var(--card-background-hover);
  box-shadow: var(--card-hover-shadow);
}

.icon-badge,
.space-icon,
.journey-icon,
.campus-feature-icon,
.program-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 202, 86, 0.3);
  border-radius: 10px;
  color: var(--accent);
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.1), rgba(255, 248, 233, 0.025)),
    rgba(6, 18, 11, 0.24);
}

.icon-badge svg,
.space-icon svg,
.journey-icon svg,
.campus-feature-icon svg,
.program-card-icon svg,
.event-details svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

.button,
.inline-form button,
.clear-room-selection {
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-gap);
  border-radius: var(--radius-control);
  padding: 0 var(--button-pad-x);
  border: 1px solid rgba(169, 202, 86, 0.34);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--motion-fast),
    border-color var(--motion-fast),
    background var(--motion-fast),
    color var(--motion-fast),
    box-shadow var(--motion-fast);
}

.primary-button {
  color: #09140d;
  background: linear-gradient(135deg, #fff8e9, #cde86f 54%, var(--accent));
  box-shadow: 0 18px 50px rgba(169, 202, 86, 0.2);
}

.secondary-button,
.hero-actions .secondary-button,
.hero-signup-form button,
.inline-form button,
.clear-room-selection {
  color: rgba(255, 248, 233, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02)),
    rgba(7, 21, 12, 0.44);
  border-color: rgba(169, 202, 86, 0.28);
  box-shadow: none;
}

.button:hover,
.button:focus-visible,
.inline-form button:hover,
.inline-form button:focus-visible,
.clear-room-selection:hover,
.clear-room-selection:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  box-shadow:
    0 22px 62px rgba(169, 202, 86, 0.28),
    0 0 24px rgba(255, 248, 233, 0.06);
}

.secondary-button:hover,
.secondary-button:focus-visible,
.hero-signup-form button:hover,
.hero-signup-form button:focus-visible,
.inline-form button:hover,
.inline-form button:focus-visible,
.clear-room-selection:hover,
.clear-room-selection:focus-visible {
  color: var(--accent-bright);
  border-color: rgba(215, 242, 126, 0.44);
  background:
    linear-gradient(145deg, rgba(169, 202, 86, 0.09), rgba(255, 248, 233, 0.026)),
    rgba(7, 21, 12, 0.56);
}

.inline-form input {
  min-height: var(--button-height);
  border-radius: var(--radius-control);
  color: var(--text-primary);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02)),
    rgba(7, 21, 12, 0.52);
  border-color: rgba(255, 255, 255, 0.14);
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-fast),
    background var(--motion-fast);
}

.inline-form input::placeholder {
  color: rgba(224, 236, 207, 0.58);
}

.inline-form input:focus,
.inline-form input:focus-visible {
  border-color: rgba(215, 242, 126, 0.54);
  box-shadow: var(--focus-ring);
  outline: none;
}

.nav-links a,
.footer-links a {
  border-color: transparent;
  color: rgba(224, 236, 207, 0.82);
  background: transparent;
  font-size: 0.96rem;
  font-weight: 720;
  letter-spacing: 0.005em;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-bright);
  border-color: rgba(169, 202, 86, 0.26);
  background: rgba(169, 202, 86, 0.055);
  box-shadow: 0 0 18px rgba(169, 202, 86, 0.08);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Cinematic ecosystem layout and background unification */
.site-shell,
.programs-page,
.experience-page {
  position: relative;
  isolation: isolate;
  background: var(--ecosystem-page-background);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(215, 242, 126, 0.022), transparent 24%),
    radial-gradient(circle at 22% 58%, rgba(120, 153, 75, 0.03), transparent 31%),
    linear-gradient(180deg, rgba(3, 11, 7, 0.08) 0%, rgba(3, 11, 7, 0.3) 100%);
  opacity: 0.82;
}

.site-shell > *:not(.scroll-top-button) {
  position: relative;
  z-index: 1;
}

.site-shell > .scroll-top-button {
  position: fixed;
  z-index: 24;
}

.hero-section,
.programs-hero,
.experience-page-hero {
  overflow: hidden;
  background: #071a12;
}

.hero-background,
.programs-hero-background,
.experience-page-background {
  background: var(--ecosystem-hero-background);
}

.programs-hero-background::after,
.experience-page-background::after {
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.96) 0%, rgba(7, 26, 18, 0.68) 48%, rgba(7, 26, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 26, 18, 0.04) 0%, rgba(7, 26, 18, 0.32) 100%),
    radial-gradient(circle at 76% 42%, rgba(169, 202, 86, 0.08), transparent 32%);
}

.hero-background::after {
  background:
    radial-gradient(circle at 72% 44%, rgba(187, 210, 89, 0.095), transparent 28%),
    linear-gradient(90deg, rgba(7, 26, 18, 0.95) 0%, rgba(7, 26, 18, 0.84) 28%, rgba(7, 26, 18, 0.34) 54%, rgba(7, 26, 18, 0) 78%),
    linear-gradient(180deg, rgba(7, 26, 18, 0.08) 0%, rgba(7, 26, 18, 0) 34%, rgba(7, 26, 18, 0.38) 100%),
    repeating-linear-gradient(
      24deg,
      rgba(255, 248, 233, 0.026) 0,
      rgba(255, 248, 233, 0.026) 1px,
      transparent 1px,
      transparent 150px
    );
}

.hero-grid,
.programs-hero-grid,
.experience-page-hero-grid,
.section-band,
.footer-section {
  width: min(var(--page-max), calc(100% - var(--page-inline)));
  margin-inline: auto;
}

.hero-grid,
.programs-hero-grid,
.experience-page-hero-grid {
  gap: clamp(38px, 6vw, 112px);
}

.section-band {
  position: relative;
  isolation: isolate;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--page-inline) * -0.36);
  z-index: -1;
  pointer-events: none;
  background: var(--ecosystem-section-glow);
  opacity: 0.42;
}

.section-band:nth-of-type(even)::before {
  opacity: 0.32;
  background:
    radial-gradient(circle at 12% 8%, rgba(169, 202, 86, 0.022), transparent 26%),
    radial-gradient(circle at 86% 92%, rgba(200, 180, 95, 0.016), transparent 28%),
    linear-gradient(180deg, rgba(3, 11, 7, 0.1), rgba(3, 11, 7, 0));
}

.section-band.experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(3, 11, 7, 0.3) 0%, rgba(3, 11, 7, 0.5) 100%),
    radial-gradient(circle at 76% 18%, rgba(169, 202, 86, 0.038), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(200, 180, 95, 0.024), transparent 28%),
    linear-gradient(180deg, rgba(6, 18, 11, 0.98) 0%, rgba(6, 18, 11, 0.96) 24%, rgba(6, 18, 11, 0.94) 100%),
    repeating-linear-gradient(
      24deg,
      rgba(255, 248, 233, 0.014) 0,
      rgba(255, 248, 233, 0.014) 1px,
      transparent 1px,
      transparent 152px
    ),
    linear-gradient(140deg, #051008 0%, #06120b 54%, #07160d 100%);
}

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

.section-heading,
.journey-heading,
.cinematic-video-heading,
.experience-page-cta-heading,
.final-cta-heading {
  max-width: min(100%, var(--section-headline-max));
}

.section-heading h2,
.journey-heading h3,
.cinematic-video-heading h2,
.experience-page-cta-heading h2,
.final-cta-heading h2 {
  max-width: min(100%, var(--section-headline-max));
}

.section-heading p,
.journey-heading p,
.cinematic-video-heading p,
.experience-page-cta-heading p,
.final-cta-heading p {
  max-width: min(100%, var(--section-body-max));
}

.pillar-grid,
.business-value-grid,
.speaker-grid,
.testimonial-grid,
.experience-pillar-grid,
.program-feature-grid,
.program-card-grid,
.program-year-timeline,
.program-step-grid,
.comparison-grid,
.journey-grid,
.campus-feature-grid,
.timeline,
.faq-list {
  gap: clamp(14px, 1.35vw, 22px);
}

.experience-preview-card,
.programs-hero-panel,
.campus-map-panel,
.cinematic-video-frame,
.philosophy-panel,
.event-panel {
  border-radius: var(--radius-panel);
  box-shadow: var(--media-treatment);
}

.experience-preview-media,
.campus-map-stage,
.cinematic-video {
  border-radius: calc(var(--radius-panel) - 4px);
}

.experience-preview-media img,
.campus-map-image,
.cinematic-video {
  filter: brightness(0.9) saturate(0.96) contrast(1.06);
}

.programs-hero-panel,
.event-panel,
.experience-preview-card,
.cinematic-video-frame {
  background:
    radial-gradient(circle at 18% 12%, rgba(169, 202, 86, 0.11), transparent 32%),
    var(--card-background),
    rgba(7, 21, 12, 0.78);
}

.programs-hero-panel::after,
.event-panel::after,
.experience-preview-card::after,
.cinematic-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 233, 0.035), transparent 22%),
    linear-gradient(90deg, rgba(169, 202, 86, 0.08), transparent 28%, transparent 72%, rgba(200, 180, 95, 0.04));
  opacity: 0.58;
}

.programs-hero-panel > *,
.event-panel > *,
.experience-preview-card > *,
.cinematic-video-frame > * {
  position: relative;
  z-index: 1;
}

.experience-key-ideas span,
.program-focus li,
.program-quarter-card li {
  border-color: rgba(169, 202, 86, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(7, 21, 12, 0.32);
}

.footer-section {
  position: relative;
  border-top-color: rgba(169, 202, 86, 0.14);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(169, 202, 86, 0.24), transparent);
}

@media (max-width: 1180px) {
  .campus-intro-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(22px, 4vw, 34px);
  }

  .campus-cinematic-preview {
    width: min(100%, 560px);
    justify-self: start;
  }

  .campus-cinematic-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .experience-page-hero-grid,
  .programs-hero-grid,
  .campus-showcase,
  .event-section,
  .agenda-section {
    grid-template-columns: 1fr;
  }

  .hero-background {
    --hero-header-image: image-set(
      url("../mentora-hero-header-right-1600.avif") type("image/avif"),
      url("../mentora-hero-header-right-1600.webp") type("image/webp"),
      url("../mentora-hero-header-right.png") type("image/png")
    );
    --hero-image-position: right -78px center;
    --hero-image-size: auto 80svh;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: clamp(46px, 5vw, 58px);
  }

  .programs-hero {
    min-height: auto;
    padding-bottom: clamp(54px, 6vw, 72px);
  }

  .experience-page-hero {
    min-height: auto;
    padding-bottom: clamp(54px, 6vw, 72px);
  }

  .programs-hero-grid {
    min-height: auto;
    margin-top: clamp(34px, 5vw, 58px);
  }

  .experience-page-hero-grid {
    min-height: auto;
    margin-top: clamp(34px, 5vw, 58px);
    gap: 28px;
  }

  .programs-hero-copy {
    max-width: min(860px, 100%);
  }

  .experience-page-copy {
    max-width: min(860px, 100%);
  }

  .programs-hero-panel {
    min-height: 340px;
    max-width: 620px;
  }

  .experience-page-orbit {
    min-height: 320px;
    max-width: 560px;
  }

  .hero-grid {
    min-height: min(760px, calc(100svh - 128px));
    margin-top: clamp(24px, 4vw, 40px);
    align-items: center;
  }

  .hero-copy {
    max-width: min(720px, 100%);
  }

  .hero-copy h1 {
    max-width: 690px;
    font-size: clamp(3.08rem, 6.5vw, 3.9rem);
  }

  .hero-statement {
    max-width: 560px;
  }

  .hero-actions {
    max-width: 540px;
  }

  .hero-copy .inline-form,
  .hero-copy .inline-status {
    max-width: 500px;
  }

  .pillar-grid,
  .experience-pillar-grid,
  .program-feature-grid,
  .program-year-timeline,
  .program-step-grid,
  .business-value-grid,
  .speaker-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .program-card,
  .program-card:nth-child(4),
  .program-card:nth-child(5) {
    grid-column: auto;
    min-height: 520px;
  }

  .program-year-timeline::before {
    display: none;
  }

  .program-quarter-card,
  .comparison-card {
    min-height: auto;
  }

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

  .pillar-grid {
    gap: 14px;
  }

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

  .experience-preview-media::after {
    background:
      radial-gradient(circle at 58% 42%, transparent 0 32%, rgba(4, 14, 8, 0.18) 64%, rgba(4, 14, 8, 0.42) 100%),
      linear-gradient(180deg, rgba(4, 14, 8, 0) 0%, rgba(4, 14, 8, 0.22) 60%, rgba(4, 14, 8, 0.84) 100%);
  }

  .experience-pillar-card {
    min-height: 240px;
    padding: 26px;
  }

  .pillar-card {
    min-height: 238px;
    padding: 26px;
  }

  .pillar-card .icon-badge {
    width: 46px;
    height: 46px;
  }

  .pillar-card .icon-badge svg {
    width: 23px;
    height: 23px;
  }

  .pillar-card h3 {
    margin-top: 22px;
  }

  .pillar-card p {
    margin-top: 12px;
    line-height: 1.58;
  }

  .business-value-card {
    min-height: 250px;
    padding: 26px;
  }

  .campus-journey {
    max-width: none;
    margin-inline: 0;
  }

  .campus-teaser {
    max-width: none;
    margin-inline: 0;
  }

  .campus-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .journey-card {
    min-height: 210px;
  }

  .campus-map-panel {
    position: relative;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: auto;
  }

  .campus-map-stage {
    max-width: 760px;
  }

  .space-groups {
    display: contents;
    width: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .room-group {
    width: 100%;
    justify-self: stretch;
  }

  .room-group-learn {
    order: 2;
  }

  .room-group-build {
    order: 3;
  }

  .room-group-think {
    order: 4;
  }

  .room-group-workshop {
    order: 5;
  }

  .room-group-connect {
    order: 6;
  }

  .room-group-reflect {
    order: 7;
  }

  .room-group-nature {
    order: 8;
  }

  .room-group-stay {
    order: 9;
  }

  .event-panel {
    width: min(100%, 560px);
    max-width: 560px;
    justify-self: start;
  }

  .philosophy-panel .section-heading {
    max-width: min(100%, 680px);
  }

  .philosophy-logo-bg {
    width: min(58%, 520px);
    right: -90px;
    opacity: 0.14;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-wrap: nowrap;
  }

  .event-ctas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-section {
    min-height: 100svh;
    padding: 18px 22px 42px;
  }

  .programs-hero {
    padding: 18px 22px 48px;
  }

  .experience-page-hero {
    padding: 18px 22px 48px;
  }

  .hero-background {
    --hero-header-image: image-set(
      url("../mentora-hero-header-right-1200.avif") type("image/avif"),
      url("../mentora-hero-header-right-1200.webp") type("image/webp"),
      url("../mentora-hero-header-right.png") type("image/png")
    );
    --hero-image-position: right -88px bottom 18px;
    --hero-image-size: auto 44svh;
  }

  .hero-background::before {
    opacity: 0.46;
    -webkit-mask-image: radial-gradient(
      ellipse 62% 56% at 76% 74%,
      #000 0 28%,
      rgba(0, 0, 0, 0.76) 42%,
      rgba(0, 0, 0, 0.24) 62%,
      transparent 82%
    );
    mask-image: radial-gradient(
      ellipse 62% 56% at 76% 74%,
      #000 0 28%,
      rgba(0, 0, 0, 0.76) 42%,
      rgba(0, 0, 0, 0.24) 62%,
      transparent 82%
    );
  }

  .hero-background::after {
    background:
      radial-gradient(circle at 82% 78%, rgba(187, 210, 89, 0.08), transparent 32%),
      linear-gradient(90deg, rgba(7, 26, 18, 0.96) 0%, rgba(7, 26, 18, 0.9) 58%, rgba(7, 26, 18, 0.48) 100%),
      linear-gradient(180deg, rgba(7, 26, 18, 0.06) 0%, rgba(7, 26, 18, 0.24) 56%, rgba(7, 26, 18, 0.7) 100%),
      repeating-linear-gradient(
        24deg,
        rgba(255, 248, 233, 0.025) 0,
        rgba(255, 248, 233, 0.025) 1px,
        transparent 1px,
        transparent 150px
      );
  }

  .topbar {
    align-items: center;
    gap: 12px;
  }

  .topbar .nav-links {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-nav-overlay {
    display: flex;
  }

  .scroll-top-button {
    display: inline-flex;
  }

  .brand-lockup {
    gap: 12px;
    min-width: 0;
  }

  .brand-lockup .logo-image.compact {
    width: 82px;
    height: 59px;
  }

  .brand-lockup strong {
    font-size: 1.52rem;
  }

  .brand-lockup small {
    display: block;
    margin-top: 5px;
    font-size: 0.74rem;
    letter-spacing: 0.024em;
  }

  .nav-links,
  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.9rem;
  }

  .hero-grid {
    min-height: auto;
    margin-top: clamp(28px, 8svh, 58px);
    gap: 22px;
  }

  .hero-copy {
    max-width: min(100%, 560px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .programs-hero-grid {
    margin-top: 44px;
    gap: 28px;
  }

  .experience-page-hero-grid {
    margin-top: 44px;
    gap: 28px;
  }

  .programs-hero-copy h1 {
    font-size: clamp(2.55rem, 8.7vw, 3.2rem);
    line-height: 1.06;
  }

  .experience-page-copy h1 {
    font-size: clamp(2.55rem, 8.7vw, 3.2rem);
    line-height: 1.06;
  }

  .programs-subheadline {
    margin-top: 22px;
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .experience-page-subheadline {
    margin-top: 22px;
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .programs-supporting {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .experience-page-intro {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .programs-hero-actions {
    width: min(100%, 380px);
  }

  .programs-hero-panel {
    min-height: 300px;
    padding: 24px;
  }

  .experience-page-orbit {
    min-height: 230px;
  }

  .experience-page-orbit .logo-image.compact {
    width: 94px;
  }

  .hero-copy h1 {
    max-width: 15ch;
    margin-top: 0;
    font-size: clamp(2.3rem, 10.2vw, 3.28rem);
    line-height: 1.04;
  }

  .hero-statement {
    max-width: 31ch;
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 28px;
    max-width: 500px;
  }

  .hero-actions,
  .inline-form {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 500px);
  }

  .hero-copy .hero-actions {
    display: contents;
  }

  .button,
  .inline-form button {
    width: 100%;
  }

  .hero-primary-cta {
    order: 3;
    width: min(100%, 340px);
    margin-top: 28px;
  }

  .mobile-ecosystem-visual {
    order: 4;
    width: min(100%, 340px);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: rgba(224, 236, 207, 0.72);
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .mobile-ecosystem-visual .logo-image.compact {
    width: min(46vw, 142px);
    height: auto;
    filter:
      drop-shadow(0 0 10px rgba(255, 255, 255, 0.16))
      drop-shadow(0 0 22px rgba(169, 202, 86, 0.28));
  }

  .hero-secondary-cta {
    order: 5;
    width: min(100%, 340px);
    min-height: 50px;
    margin-top: 14px;
  }

  .hero-signup-form {
    order: 6;
    width: min(100%, 340px);
    margin-top: 14px;
  }

  .inline-status {
    order: 7;
  }

  .section-band,
  .footer-section {
    width: calc(100% - 44px);
  }

  .section-band {
    padding: 54px 0;
  }

  .section-band + .section-band {
    padding-top: 42px;
  }

  .hero-section + .section-band {
    padding-top: 42px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    line-height: 1.08;
    text-wrap: balance;
  }

  .section-heading p {
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .event-section {
    --event-control-width: 100%;
  }

  .spaces-section .section-heading {
    margin-bottom: 32px;
  }

  .experience-section .section-heading {
    margin-bottom: 0;
  }

  .spaces-section .section-heading h2 {
    white-space: normal;
  }

  .campus-journey {
    gap: 16px;
    margin-bottom: 28px;
  }

  .campus-teaser {
    gap: 14px;
    margin-bottom: 0;
  }

  .campus-intro-layout {
    gap: 22px;
    margin-bottom: 34px;
  }

  .campus-cinematic-preview {
    width: 100%;
    justify-self: stretch;
  }

  .campus-cinematic-copy {
    padding: 16px 17px 18px;
  }

  .campus-cinematic-copy h3 {
    font-size: 1.34rem;
  }

  .campus-intro-layout .campus-feature-grid {
    grid-template-columns: 1fr;
  }

  .campus-feature-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .campus-feature {
    min-height: 50px;
  }

  .journey-heading h3 {
    font-size: 2rem;
  }

  .journey-heading p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journey-card {
    min-height: auto;
    padding: 17px;
  }

  .journey-icon {
    width: 42px;
    height: 42px;
  }

  .journey-icon svg {
    width: 21px;
    height: 21px;
  }

  .journey-title {
    margin-top: 14px;
    font-size: 1.34rem;
  }

  .journey-description {
    margin-top: 8px;
    line-height: 1.48;
  }

  .journey-summary {
    gap: 8px;
    font-size: 0.9rem;
  }

  .campus-map-panel {
    padding: 10px;
  }

  .map-label {
    margin-bottom: 10px;
  }

  .campus-mobile-hint {
    display: block;
  }

  .campus-map.has-selected-room {
    transform: scale(1.03);
  }

  .section-heading h2 {
    font-size: 2.42rem;
  }

  .pillar-grid,
  .program-feature-grid,
  .program-card-grid,
  .program-year-timeline,
  .program-step-grid,
  .business-value-grid,
  .speaker-grid,
  .testimonial-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .program-feature-card,
  .program-card,
  .program-card:nth-child(4),
  .program-card:nth-child(5),
  .program-quarter-card,
  .comparison-card {
    min-height: auto;
    grid-column: auto;
    padding: 22px;
  }

  .glass-card {
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .program-feature-card .icon-badge,
  .program-card-icon {
    width: 42px;
    height: 42px;
  }

  .program-feature-card .icon-badge svg,
  .program-card-icon svg {
    width: 21px;
    height: 21px;
  }

  .program-card h3,
  .program-feature-card h3,
  .program-quarter-card h3,
  .comparison-card h3 {
    margin-top: 18px;
  }

  .program-card-topline {
    align-items: center;
  }

  .program-step {
    min-height: auto;
    padding: 0 0 0 62px;
  }

  .program-step::before {
    left: 23px;
    top: 54px;
    bottom: -18px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(169, 202, 86, 0.3), transparent);
  }

  .program-step span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .program-step h3 {
    margin-top: 0;
  }

  .programs-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .programs-contact-button {
    width: 100%;
  }

  .pillar-grid {
    gap: 14px;
  }

  .pillar-card {
    min-height: auto;
    padding: 22px;
  }

  .pillar-card::after {
    inset-inline: 18px;
  }

  .pillar-card .icon-badge {
    width: 42px;
    height: 42px;
  }

  .pillar-card .icon-badge svg {
    width: 21px;
    height: 21px;
  }

  .pillar-card h3 {
    margin-top: 18px;
    font-size: 1.42rem;
  }

  .pillar-card p {
    margin-top: 9px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .business-value-section .section-heading {
    margin-bottom: 28px;
  }

  .experience-preview-card {
    min-height: auto;
  }

  .experience-preview-media img {
    min-height: 260px;
  }

  .experience-preview-copy {
    padding: 24px;
  }

  .experience-preview-copy h3 {
    font-size: 1.88rem;
  }

  .cinematic-video-section {
    padding-top: 54px;
  }

  .cinematic-video-heading {
    margin-bottom: 24px;
  }

  .cinematic-video-heading h2 {
    font-size: 2.28rem;
  }

  .cinematic-video-frame {
    padding: 8px;
  }

  .experience-key-ideas {
    margin-top: 26px;
    gap: 8px;
  }

  .experience-key-ideas span {
    min-height: 36px;
    font-size: 0.86rem;
  }

  .experience-pillar-grid {
    grid-template-columns: 1fr;
  }

  .experience-pillar-card {
    min-height: auto;
    padding: 22px;
  }

  .experience-pillar-card h3 {
    margin-top: 18px;
    font-size: 1.34rem;
  }

  .experience-pillar-card p {
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .experience-page-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .business-value-card {
    min-height: auto;
    padding: 22px;
  }

  .business-value-card::after {
    inset-inline: 18px;
  }

  .business-value-card .icon-badge {
    width: 42px;
    height: 42px;
  }

  .business-value-card .icon-badge svg {
    width: 21px;
    height: 21px;
  }

  .business-value-card h3 {
    margin-top: 18px;
    font-size: 1.34rem;
  }

  .business-value-card p,
  .business-value-note {
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .space-groups {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .space-card {
    min-height: auto;
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .space-card,
  .pillar-card,
  .experience-preview-card,
  .experience-pillar-card,
  .business-value-card,
  .journey-card,
  .program-feature-card,
  .program-card,
  .program-quarter-card,
  .comparison-card,
  .speaker-card,
  .testimonial-card {
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .philosophy-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .philosophy-panel {
    min-height: 420px;
    padding: 30px 24px;
    background:
      linear-gradient(180deg, rgba(7, 26, 18, 0.98) 0%, rgba(7, 26, 18, 0.82) 58%, rgba(7, 26, 18, 0.58) 100%),
      radial-gradient(circle at 86% 48%, rgba(169, 202, 86, 0.15), transparent 44%),
      linear-gradient(140deg, #071a12 0%, #071a12 48%, #0d2416 100%);
  }

  .philosophy-panel::before {
    opacity: 0.5;
    filter: blur(16px);
  }

  .philosophy-panel::after {
    background:
      linear-gradient(180deg, rgba(7, 26, 18, 0.16), transparent 28%, rgba(7, 26, 18, 0.34) 100%),
      linear-gradient(90deg, rgba(7, 26, 18, 0.82), transparent 76%);
  }

  .philosophy-logo-bg {
    width: 96%;
    right: -48%;
    top: 56%;
    opacity: 0.1;
    filter:
      blur(2px)
      contrast(1.12)
      saturate(0.78)
      drop-shadow(0 0 24px rgba(169, 202, 86, 0.1));
  }

  .philosophy-panel .section-heading p {
    margin-top: 22px;
    line-height: 1.76;
  }

  .footer-section {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-meta {
    order: 2;
  }

  .faq-list {
    order: 3;
  }
}

@media (max-width: 460px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 4px);
  }

  .logo-image.compact {
    width: 68px;
    height: 49px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup .logo-image.compact {
    width: 70px;
    height: 50px;
  }

  .brand-lockup strong {
    font-size: 1.28rem;
  }

  .brand-lockup small {
    margin-top: 4px;
    font-size: 0.66rem;
    letter-spacing: 0.012em;
  }

  .hero-copy h1 {
    font-size: clamp(2.04rem, 10vw, 2.36rem);
    max-width: 16ch;
  }

  .programs-hero-copy h1 {
    font-size: clamp(2.12rem, 10vw, 2.55rem);
  }

  .experience-page-copy h1 {
    font-size: clamp(2.12rem, 10vw, 2.55rem);
  }

  .hero-background {
    --hero-image-position: right -86px bottom 34px;
    --hero-image-size: auto 40svh;
  }

  .scroll-top-button {
    width: 52px;
    height: 52px;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .hero-actions,
  .inline-form {
    width: 100%;
  }

  .pillar-card {
    padding: 18px;
  }

  .pillar-card h3 {
    margin-top: 16px;
  }

  .journey-heading h3 {
    font-size: 1.76rem;
  }

  .journey-card {
    padding: 16px;
  }

  .experience-preview-media img {
    min-height: 220px;
  }

  .experience-preview-play {
    width: 60px;
    height: 60px;
  }

  .journey-summary {
    display: grid;
    gap: 5px;
  }

  .journey-summary button {
    justify-self: start;
    margin-left: 0;
  }

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

  .space-card .space-icon {
    width: 44px;
    height: 44px;
  }

  .section-heading h2 {
    font-size: 2.08rem;
  }

  .section-band {
    padding: 46px 0;
  }

  .section-band + .section-band {
    padding-top: 38px;
  }

  .hero-section + .section-band {
    padding-top: 38px;
  }
}

@media (max-width: 1040px) {
  :root {
    --h1-size: clamp(3rem, 7.2vw, 4.25rem);
    --h2-size: clamp(2.36rem, 5.4vw, 3.45rem);
    --h3-size: clamp(1.26rem, 2.6vw, 1.5rem);
    --section-pad-y: clamp(58px, 7vw, 78px);
    --section-heading-gap: clamp(28px, 4vw, 40px);
    --card-pad: clamp(22px, 3vw, 28px);
  }

  .hero-copy h1,
  .programs-hero-copy h1,
  .experience-page-copy h1 {
    font-size: var(--h1-size);
  }

  .section-heading h2,
  .cinematic-video-heading h2,
  .experience-page-cta-heading h2,
  .final-cta-heading h2 {
    font-size: var(--h2-size);
  }

  .section-band,
  .section-band + .section-band,
  .section-band + .hash-anchor + .section-band,
  .hero-section + .section-band {
    padding-top: var(--section-pad-y);
  }

  .section-band {
    padding-bottom: var(--section-pad-y);
  }

  .program-feature-card,
  .program-card,
  .program-quarter-card,
  .comparison-card,
  .pillar-card,
  .business-value-card,
  .experience-pillar-card,
  .speaker-card,
  .testimonial-card {
    padding: var(--card-pad);
  }
}

@media (max-width: 760px) {
  :root {
    --page-inline: 44px;
    --h1-size: clamp(2.28rem, 10vw, 3.22rem);
    --h2-size: clamp(2.05rem, 9vw, 2.62rem);
    --h3-size: 1.34rem;
    --body-size: 0.98rem;
    --lead-size: 1.04rem;
    --eyebrow-size: 0.78rem;
    --section-pad-y: 52px;
    --section-pad-y-compact: 44px;
    --section-heading-gap: 28px;
    --button-height: 52px;
    --button-pad-x: 20px;
    --card-pad: 22px;
  }

  .hero-copy h1,
  .programs-hero-copy h1,
  .experience-page-copy h1 {
    font-size: var(--h1-size);
    line-height: 1.055;
  }

  .hero-statement,
  .programs-subheadline,
  .experience-page-subheadline {
    font-size: var(--lead-size);
    line-height: 1.6;
  }

  .section-heading h2,
  .cinematic-video-heading h2,
  .experience-page-cta-heading h2,
  .final-cta-heading h2 {
    font-size: var(--h2-size);
    line-height: 1.08;
  }

  .section-band,
  .section-band + .section-band,
  .section-band + .hash-anchor + .section-band,
  .hero-section + .section-band {
    padding-top: var(--section-pad-y);
  }

  .section-band {
    padding-bottom: var(--section-pad-y);
  }

  .section-heading,
  .cinematic-video-heading,
  .experience-page-cta-heading,
  .final-cta-heading {
    margin-bottom: var(--section-heading-gap);
  }

  .section-heading p,
  .journey-heading p,
  .business-value-note,
  .programs-footer-note {
    max-width: 100%;
    font-size: var(--body-size);
    line-height: 1.64;
  }

  .button,
  .inline-form button,
  .clear-room-selection {
    min-height: var(--button-height);
    padding-inline: var(--button-pad-x);
  }

  .inline-form input {
    min-height: var(--button-height);
  }

  .glass-card,
  .campus-feature,
  .journey-card,
  .pillar-card,
  .business-value-card,
  .experience-preview-card,
  .experience-pillar-card,
  .program-feature-card,
  .program-card,
  .program-quarter-card,
  .comparison-card,
  .space-card,
  .speaker-card,
  .testimonial-card,
  .timeline-item,
  .event-detail,
  .event-panel,
  .campus-map-panel,
  .cinematic-video-frame {
    border-radius: var(--radius-card);
  }

  .journey-card,
  .pillar-card,
  .business-value-card,
  .experience-pillar-card,
  .program-feature-card,
  .program-card,
  .program-quarter-card,
  .comparison-card,
  .speaker-card,
  .testimonial-card {
    padding: var(--card-pad);
  }

  .space-card {
    padding: 18px;
  }

  .nav-links a,
  .footer-links a {
    font-size: 0.92rem;
  }
}

@media (max-width: 460px) {
  :root {
    --page-inline: 36px;
    --h1-size: clamp(2.08rem, 10.5vw, 2.58rem);
    --h2-size: clamp(1.9rem, 9.6vw, 2.25rem);
    --section-pad-y: 46px;
    --section-heading-gap: 24px;
    --button-height: 50px;
    --card-pad: 18px;
  }

  .section-band,
  .footer-section {
    width: calc(100% - var(--page-inline));
  }

  .hero-copy h1,
  .programs-hero-copy h1,
  .experience-page-copy h1 {
    font-size: var(--h1-size);
  }

  .section-heading h2,
  .cinematic-video-heading h2,
  .experience-page-cta-heading h2,
  .final-cta-heading h2 {
    font-size: var(--h2-size);
  }

  .journey-card,
  .pillar-card,
  .business-value-card,
  .experience-pillar-card,
  .program-feature-card,
  .program-card,
  .program-quarter-card,
  .comparison-card,
  .speaker-card,
  .testimonial-card {
    padding: var(--card-pad);
  }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .button:focus-visible,
  .scroll-top-button:hover,
  .scroll-top-button:focus-visible,
  .inline-form button:hover,
  .inline-form button:focus-visible,
  .experience-preview-card:hover,
  .experience-preview-card:focus-visible,
  .campus-cinematic-preview:hover,
  .campus-cinematic-preview:focus-visible,
  .experience-pillar-card:hover,
  .experience-pillar-card:focus-within,
  .program-feature-card:hover,
  .program-card:hover,
  .program-quarter-card:hover,
  .comparison-card:hover,
  .journey-card:hover,
  .pillar-card:hover,
  .business-value-card:hover,
  .space-card:hover,
  .speaker-card:hover,
  .testimonial-card:hover {
    transform: none;
  }
}

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