:root {
  --green: #6db844;
  --green-deep: #0f3a2d;
  --green-ink: #101815;
  --pink: #d6508a;
  --gold: #f0c052;
  --mint: #dff3d2;
  --sky: #e0f2f7;
  --ink: #242322;
  --charcoal: #514d49;
  --muted: #756f68;
  --paper: #f2eadc;
  --paper-soft: #fbf7ee;
  --white: #ffffff;
  --line: #ded5c4;
  --shadow: 0 24px 70px rgba(20, 24, 22, 0.16);
  --container: 1180px;
  --font-sans: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", system-ui, sans-serif;
  --font-display: "Avenir Next", "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
  --font-number: "Avenir Next", "DIN Alternate", "Bahnschrift", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

::selection {
  color: var(--green-ink);
  background: var(--gold);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(20, 24, 22, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 168px;
  height: 58px;
  min-width: 142px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 42px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--pink);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(214, 80, 138, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

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

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

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

.hero-lab {
  position: relative;
  min-height: 90svh;
  overflow: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 45%, rgba(109, 184, 68, 0.28), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(214, 80, 138, 0.22), transparent 28%),
    linear-gradient(135deg, #111815 0%, #1d1a18 58%, #0b281f 100%);
  isolation: isolate;
}

#voice,
#showcase,
#proof,
#growth,
#courses,
#campuses,
#visit {
  scroll-margin-top: 96px;
}

.hero-lab::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
}

.hero-lab::after {
  position: absolute;
  right: -22vw;
  bottom: -28vw;
  z-index: 0;
  width: 64vw;
  height: 64vw;
  border: 2px solid rgba(109, 184, 68, 0.34);
  border-radius: 50%;
  content: "";
}

.opening-lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.opening-lights span {
  position: absolute;
  top: -20%;
  bottom: -12%;
  width: 20vw;
  min-width: 180px;
  background: linear-gradient(180deg, rgba(240, 192, 82, 0.28), rgba(240, 192, 82, 0.03) 62%, transparent);
  filter: blur(2px);
  opacity: 0;
  transform: skewX(-14deg) translateX(-40vw);
  transform-origin: top center;
  animation: openingSweep 4.8s ease-in-out 0.25s infinite;
  mix-blend-mode: screen;
}

.opening-lights span:nth-child(1) {
  left: 8%;
}

.opening-lights span:nth-child(2) {
  left: 42%;
  width: 16vw;
  animation-delay: 0.9s;
}

.opening-lights span:nth-child(3) {
  left: 70%;
  width: 18vw;
  background: linear-gradient(180deg, rgba(214, 80, 138, 0.2), rgba(109, 184, 68, 0.04) 62%, transparent);
  animation-delay: 1.55s;
}

.hero-lab__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: 60px;
  width: min(100% - 48px, var(--container));
  min-height: 90svh;
  margin-inline: auto;
  padding: 90px 0 46px;
}

.hero-copy {
  padding-top: 34px;
}

.hero-copy .eyebrow,
.hero-copy h1 span,
.hero-nail,
.hero-copy > p:not(.eyebrow),
.hero-actions {
  opacity: 0;
  transform: translateY(22px);
  animation: heroLineIn 0.82s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy h1 span:first-child {
  animation-delay: 0.12s;
}

.hero-copy h1 span:nth-child(2) {
  animation-delay: 0.24s;
}

.hero-nail {
  animation-delay: 0.38s;
}

.hero-copy > p:not(.eyebrow) {
  animation-delay: 0.5s;
}

.hero-actions {
  animation-delay: 0.62s;
}

.voice-stage {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.visit-copy .eyebrow {
  color: #ffd7e8;
}

.hero-copy h1,
.section h2,
.visit-copy h2,
.decision-layout h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: 6.45rem;
}

.hero-copy h1 span,
.section h2 .line,
.visit-copy h2 .line,
.decision-layout h2 .line {
  display: block;
}

.hero-copy h1 span + span,
.section h2 .line + .line,
.visit-copy h2 .line + .line,
.decision-layout h2 .line + .line {
  margin-top: 0.08em;
}

.hero-copy h1 span:nth-child(2) {
  color: var(--gold);
}

.line--accent {
  color: var(--green-deep);
}

.showcase-section .line--accent,
.method-section .line--accent,
.visit-section .line--accent {
  color: var(--gold);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.82;
  text-wrap: pretty;
}

.hero-nail {
  display: inline-grid;
  gap: 4px;
  max-width: 680px;
  margin-top: 20px;
  padding: 14px 18px 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.hero-nail strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-nail span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 16px 34px rgba(214, 80, 138, 0.32);
}

.button--line {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.voice-stage {
  --mx: 70%;
  --my: 18%;
  --voice-accent: var(--gold);
  --voice-accent-2: var(--green);
  position: relative;
  min-height: 560px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.voice-stage::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.2), transparent 34%);
  content: "";
  pointer-events: none;
}

.voice-stage > * {
  position: relative;
  z-index: 1;
}

.voice-stage__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.voice-stage__top strong {
  color: var(--gold);
}

.voice-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(300px, 82vw);
  aspect-ratio: 1;
  margin: 30px auto 0;
}

.voice-ring > span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: rotateRing 13s linear infinite;
}

.voice-ring > span:nth-child(2) {
  inset: 28px;
  border-color: rgba(109, 184, 68, 0.48);
  animation-duration: 9s;
  animation-direction: reverse;
}

.voice-ring > span:nth-child(3) {
  inset: 62px;
  border-color: rgba(214, 80, 138, 0.52);
  animation-duration: 7s;
}

.voice-ring > span::after {
  position: absolute;
  top: 24%;
  right: -5px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(109, 184, 68, 0.8);
  content: "";
}

.voice-ring > span:nth-child(3)::after {
  background: var(--pink);
}

.voice-core {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  color: var(--green-ink);
  background: linear-gradient(135deg, var(--voice-accent), #fff3bd);
  border-radius: 50%;
  box-shadow: 0 20px 54px rgba(240, 192, 82, 0.24);
}

.voice-stage[data-voice-mode="story"] {
  --voice-accent: var(--green);
  --voice-accent-2: var(--gold);
}

.voice-stage[data-voice-mode="speech"] {
  --voice-accent: var(--pink);
  --voice-accent-2: var(--gold);
}

.voice-stage[data-voice-mode="cambridge"] {
  --voice-accent: #8fe56a;
  --voice-accent-2: var(--gold);
}

.voice-core strong {
  font-family: var(--font-number);
  font-size: 3.8rem;
  line-height: 0.95;
}

.voice-core small {
  color: rgba(16, 24, 21, 0.7);
  font-weight: 800;
}

.waveform {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  height: 62px;
  margin-top: 18px;
}

.waveform i {
  width: 10px;
  height: 24px;
  background: linear-gradient(180deg, var(--voice-accent-2), var(--pink));
  border-radius: 8px;
  animation: wave 1.5s ease-in-out infinite;
}

.waveform i:nth-child(2n) {
  animation-delay: -0.18s;
}

.waveform i:nth-child(3n) {
  animation-delay: -0.36s;
}

.waveform i:nth-child(4n) {
  animation-delay: -0.54s;
}

.voice-insight {
  min-height: 108px;
  margin-top: 14px;
  padding: 16px 18px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(10, 24, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.voice-insight span {
  display: block;
  color: var(--voice-accent);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.voice-insight strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.32;
}

.voice-insight p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.66;
}

.stage-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(10, 24, 20, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.16);
}

.stage-console__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.stage-console__meta span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.stage-console__meta strong {
  overflow: hidden;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-console__meta small {
  color: var(--gold);
  font-family: var(--font-number);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.sound-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.stage-console .sound-toggle {
  width: auto;
  min-width: 158px;
  min-height: 46px;
  margin-top: 0;
  padding: 10px 14px;
  white-space: nowrap;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(240, 192, 82, 0.5);
}

.sound-toggle__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(240, 192, 82, 0.42);
}

.sound-toggle__icon::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  background: transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--green-ink);
  border-radius: 0;
  content: "";
  transform: translate(-35%, -50%);
}

.sound-toggle__icon::after {
  display: none;
  content: "";
}

.sound-toggle__text {
  line-height: 1.2;
}

.sound-toggle[aria-pressed="true"] {
  color: var(--green-ink);
  background: var(--gold);
  border-color: var(--gold);
}

.sound-toggle[aria-pressed="true"] .sound-toggle__icon {
  background: var(--green-ink);
  animation: audioPulse 1.5s ease-in-out infinite;
}

.sound-toggle[aria-pressed="true"] .sound-toggle__icon::before,
.sound-toggle[aria-pressed="true"] .sound-toggle__icon::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 13px;
  background: var(--gold);
  border: 0;
  border-radius: 3px;
  content: "";
  transform: translate(-5px, -50%);
}

.sound-toggle[aria-pressed="true"] .sound-toggle__icon::after {
  transform: translate(1px, -50%);
}

.audio-status {
  min-height: 22px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.audio-status.is-error {
  color: #ffd1e5;
  font-weight: 750;
}

.theme-audio {
  display: none;
}

.is-audio-playing .waveform i {
  animation-duration: 0.72s;
}

.is-audio-playing .stage-console {
  border-color: rgba(240, 192, 82, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 54px rgba(240, 192, 82, 0.16);
}

.is-audio-playing .stage-console__meta strong {
  color: var(--gold);
}

.is-audio-playing .voice-ring > span {
  border-color: rgba(240, 192, 82, 0.42);
}

.is-audio-playing .voice-core {
  box-shadow:
    0 20px 54px rgba(240, 192, 82, 0.3),
    0 0 0 18px rgba(240, 192, 82, 0.06);
}

.voice-stage.is-visible {
  animation: labWake 1.1s ease 0.12s both;
}

.voice-stage.is-visible .voice-core {
  animation: coreGlow 3.2s ease-in-out infinite;
}

.stage-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.stage-tags button {
  min-width: 0;
  padding: 9px 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.stage-tags button:hover,
.stage-tags button:focus-visible,
.stage-tags button.is-active {
  color: var(--green-ink);
  background: var(--voice-accent);
  border-color: var(--voice-accent);
  transform: translateY(-2px);
}

.brand-marquee {
  overflow: hidden;
  color: var(--green-ink);
  background: var(--gold);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  gap: 30px;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  animation: marquee 28s linear infinite;
}

.brand-marquee__track span {
  white-space: nowrap;
}

.journey-rail {
  color: rgba(16, 24, 21, 0.76);
  background: linear-gradient(180deg, #fffaf0 0%, #fbf3e4 100%);
  border-top: 1px solid rgba(222, 213, 196, 0.55);
  border-bottom: 1px solid rgba(222, 213, 196, 0.72);
}

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

.journey-rail__inner span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(16, 24, 21, 0.72);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.3;
}

.journey-rail__inner span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 1px;
  height: calc(100% - 22px);
  background: rgba(16, 24, 21, 0.13);
}

.journey-rail__inner strong {
  color: var(--gold);
  font-family: var(--font-number);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.showcase-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 80, 138, 0.22), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(109, 184, 68, 0.22), transparent 34%),
    linear-gradient(135deg, #101815, #221f1c);
}

.showcase-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.76;
}

.showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: 58px;
  align-items: start;
}

.showcase-copy {
  padding-top: 86px;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.9;
  text-wrap: pretty;
}

.showcase-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.showcase-points span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 750;
}

.classroom-stage {
  --mx: 50%;
  --my: 22%;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 620px;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 80% 78%, rgba(109, 184, 68, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.26);
}

.classroom-stage::before {
  position: absolute;
  right: -18%;
  bottom: -30%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 192, 82, 0.28);
  border-radius: 50%;
  content: "";
}

.classroom-stage::after {
  position: absolute;
  inset: auto 36px 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
}

.stage-light {
  position: absolute;
  top: -80px;
  width: 220px;
  height: 470px;
  background: linear-gradient(180deg, rgba(240, 192, 82, 0.34), transparent);
  filter: blur(3px);
  opacity: 0.58;
  transform-origin: top center;
}

.stage-light--left {
  left: 17%;
  transform: rotate(20deg);
}

.stage-light--right {
  right: 13%;
  background: linear-gradient(180deg, rgba(214, 80, 138, 0.28), transparent);
  transform: rotate(-22deg);
}

.showcase-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  background: rgba(10, 24, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.showcase-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.showcase-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 20% 18%, rgba(240, 192, 82, 0.16), transparent 28%);
  content: "";
  pointer-events: none;
}

.showcase-photo figcaption {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(10, 24, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.showcase-photo figcaption span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.showcase-photo figcaption strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.showcase-photo--main {
  aspect-ratio: 1.56;
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 192, 82, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 19, 16, 0.68);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(240, 192, 82, 0.14),
    0 26px 82px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(240, 192, 82, 0.07);
}

.showcase-photo--main img {
  position: absolute;
  top: 4.5%;
  left: 4.5%;
  width: 91%;
  height: 91%;
  border-radius: 6px;
  object-fit: contain;
  object-position: 54% center;
}

.showcase-photo--main figcaption {
  right: 30px;
  bottom: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 0.62;
  backdrop-filter: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.showcase-photo--main figcaption span {
  color: rgba(255, 231, 158, 0.92);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.showcase-filmstrip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.showcase-photo--small {
  aspect-ratio: 1.18;
  background: rgba(10, 24, 20, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 16px 38px rgba(0, 0, 0, 0.22);
}

.showcase-photo--classroom img {
  object-position: 55% 45%;
}

.showcase-photo--mentor img {
  object-position: 54% 48%;
}

.showcase-photo--hands img {
  object-position: 58% 48%;
}

.section {
  padding: 98px 0;
}

.proof-section,
.courses-section {
  background: var(--paper-soft);
}

.growth-section {
  background: var(--white);
}

.decision-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(246, 240, 230, 0.68), var(--white) 28%),
    var(--white);
}

.method-section {
  color: var(--white);
  background: var(--green-ink);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 + p,
.showcase-copy h2 + p,
.growth-copy h2 + p,
.decision-layout h2 + .decision-compare,
.visit-copy h2 + p {
  margin-top: 22px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 0.9fr 0.72fr;
  gap: 50px;
  max-width: none;
  align-items: start;
  text-align: left;
}

.section-heading--split > p {
  max-width: 36rem;
  margin: 36px 0 0;
}

.showcase-copy,
.growth-copy,
.visit-copy {
  max-width: 590px;
}

.section h2,
.visit-copy h2,
.decision-layout h2 {
  font-size: 3.35rem;
}

.section-heading p:not(.eyebrow),
.growth-copy > p,
.visit-copy p,
.decision-compare p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.92;
  text-wrap: pretty;
}

.method-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.evidence-wall {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 0.9fr);
  grid-auto-rows: minmax(228px, auto);
  gap: 16px;
}

.evidence-card,
.age-panel,
.faculty-card,
.faculty-training,
.lead-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(20, 24, 22, 0.07);
}

.evidence-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 228px;
  padding: 28px;
  overflow: hidden;
}

.evidence-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 8px;
  background: var(--green);
  border-radius: 8px;
  content: "";
}

.evidence-card--main {
  grid-row: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 80, 138, 0.32), transparent 32%),
    linear-gradient(145deg, #163e31, #101815);
  border-color: rgba(109, 184, 68, 0.26);
}

.evidence-card--main::after,
.evidence-card--dark::after {
  width: 120px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--pink));
}

.evidence-card--dark {
  grid-column: span 2;
  color: var(--white);
  background: #1d1a18;
  border-color: rgba(255, 255, 255, 0.12);
}

.evidence-card span,
.faculty-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.evidence-card--main span,
.evidence-card--main p,
.evidence-card--dark span,
.evidence-card--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.evidence-card strong {
  display: block;
  color: var(--green-deep);
  font-family: var(--font-number);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.evidence-card--main strong {
  color: var(--gold);
  font-size: 7rem;
}

.evidence-card--dark strong {
  color: var(--gold);
}

.evidence-card p,
.age-panel p,
.age-panel li,
.method-grid p,
.faculty-card p {
  color: var(--muted);
  line-height: 1.82;
  text-wrap: pretty;
}

.evidence-card p {
  max-width: 28ch;
  margin: 18px 0 0;
}

.evidence-card--main p,
.evidence-card--dark p {
  max-width: 34ch;
}

.certificate-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 14px;
}

.certificate-strip figure {
  position: relative;
  min-height: 154px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.certificate-strip img {
  display: block;
  width: 100%;
  height: 154px;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  opacity: 0.68;
  box-sizing: border-box;
  filter: saturate(0.82) contrast(0.95);
}

.certificate-strip figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 30, 25, 0.04) 0%, rgba(10, 20, 18, 0.48) 74%, rgba(8, 18, 15, 0.72) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 34%);
  content: "";
  pointer-events: none;
}

.certificate-strip figure::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 22px;
  background: linear-gradient(180deg, rgba(8, 18, 15, 0), rgba(8, 18, 15, 0.82));
  content: "";
  pointer-events: none;
}

.certificate-strip figcaption {
  position: absolute;
  z-index: 2;
  right: 7px;
  left: 7px;
  bottom: 8px;
  padding: 4px 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(8, 19, 16, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.evidence-chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(109, 184, 68, 0.14), transparent 30%),
    linear-gradient(135deg, #fffdf7, #f5eddf);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(20, 24, 22, 0.07);
}

.evidence-chain::before {
  position: absolute;
  top: 52px;
  right: 42px;
  left: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--pink));
  content: "";
}

.evidence-chain article {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 172px;
  padding: 18px 14px 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(222, 213, 196, 0.82);
  border-radius: 8px;
}

.evidence-chain span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--green-ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-number);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(240, 192, 82, 0.12);
}

.evidence-chain strong {
  margin-top: 10px;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.34;
}

.evidence-chain p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.result-console {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, #101815, #1e1b18);
  border: 1px solid rgba(16, 24, 21, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 24, 22, 0.12);
}

.result-console__copy span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-console__copy strong {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1.55;
}

.result-console__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.result-console__track::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--pink));
  content: "";
  opacity: 0.45;
  transform: translateY(-50%);
}

.result-console__track span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 64px;
  padding: 10px 8px;
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.result-console__track span::before {
  position: absolute;
  top: -6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(251, 194, 68, 0.16);
  content: "";
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 60px;
  align-items: center;
}

.age-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 16px;
}

.age-tab {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--charcoal);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  white-space: nowrap;
}

.age-tab.is-active {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.age-panel {
  display: flex;
  flex-direction: column;
  min-height: 306px;
  padding: 28px;
}

.age-panel__kicker {
  margin: 0;
  color: var(--pink);
  font-weight: 800;
}

.age-panel h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.42;
}

.age-panel ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.age-panel li {
  position: relative;
  padding-left: 20px;
}

.age-panel li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.growth-orbit {
  position: relative;
  display: grid;
  min-height: 600px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--green-ink), #1f1c1a);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.orbit-line {
  position: absolute;
  inset: 64px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbit-line::before,
.orbit-line::after {
  position: absolute;
  inset: 54px;
  border: 1px solid rgba(109, 184, 68, 0.28);
  border-radius: 50%;
  content: "";
}

.orbit-line::after {
  inset: 112px;
  border-color: rgba(214, 80, 138, 0.28);
}

.growth-node {
  position: absolute;
  width: 190px;
  padding: 18px;
  color: var(--white);
  appearance: none;
  font: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(14px);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
  z-index: 1;
}

.growth-node::after {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(251, 194, 68, 0);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.growth-node:hover,
.growth-node:focus-visible,
.growth-node.is-active {
  background:
    linear-gradient(145deg, rgba(251, 194, 68, 0.18), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
  border-color: rgba(251, 194, 68, 0.44);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: saturate(1.08);
}

.growth-node.is-active::after {
  border-color: rgba(251, 194, 68, 0.72);
  box-shadow: 0 0 0 8px rgba(251, 194, 68, 0.08);
  animation: growthNodePulse 2.4s ease-in-out infinite;
}

.growth-node:nth-of-type(1) {
  top: 42px;
  left: 42px;
}

.growth-node:nth-of-type(2) {
  top: 82px;
  right: 48px;
}

.growth-node:nth-of-type(3) {
  top: 244px;
  left: calc(50% - 95px);
}

.growth-node:nth-of-type(4) {
  right: 58px;
  bottom: 64px;
}

.growth-node:nth-of-type(5) {
  bottom: 64px;
  left: 58px;
}

.growth-orbit span {
  color: var(--gold);
  font-weight: 800;
}

.growth-orbit strong {
  display: block;
  margin-top: 16px;
  font-size: 1.22rem;
  font-weight: 800;
}

.growth-orbit small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

@keyframes growthNodePulse {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

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

.method-grid article {
  display: flex;
  flex-direction: column;
  min-height: 314px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
}

.evidence-card,
.faculty-card,
.faculty-training,
.method-grid article,
.decision-compare article {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.evidence-card:hover,
.faculty-card:hover,
.faculty-training:hover,
.method-grid article:hover,
.decision-compare article:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 184, 68, 0.48);
  box-shadow: 0 24px 64px rgba(20, 24, 22, 0.14);
}

.method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--green-ink);
  background: var(--gold);
  border-radius: 8px;
  font-family: var(--font-number);
  font-size: 0.82rem;
  font-weight: 800;
}

.method-grid h3 {
  margin: 14px 0 10px;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.35;
}

.method-grid p {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.72;
}

.activity-card__media {
  position: relative;
  aspect-ratio: 1.45;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.activity-card__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(16, 24, 21, 0.24)),
    radial-gradient(circle at 18% 16%, rgba(251, 194, 68, 0.18), transparent 30%);
  content: "";
  pointer-events: none;
}

.activity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.method-grid article:nth-child(1) .activity-card__media img {
  object-position: 54% 50%;
}

.method-grid article:nth-child(2) .activity-card__media img {
  object-position: 50% 40%;
}

.method-grid article:nth-child(3) .activity-card__media img {
  object-position: 45% 52%;
}

.method-grid article:nth-child(4) .activity-card__media img {
  object-position: 42% 42%;
}

.activity-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.faculty-system {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.faculty-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.faculty-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.faculty-card::after,
.faculty-training::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 7px;
  background: var(--green);
  border-radius: 8px;
  content: "";
}

.faculty-card:nth-child(2n)::after {
  background: var(--pink);
}

.faculty-card--main {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 394px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 192, 82, 0.26), transparent 32%),
    linear-gradient(145deg, #153e31, #101815);
  border-color: rgba(109, 184, 68, 0.24);
}

.faculty-card--main::after,
.faculty-training::after {
  width: 118px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--pink));
}

.faculty-card--main span,
.faculty-card--main p {
  color: rgba(255, 255, 255, 0.76);
}

.faculty-card strong {
  display: block;
  color: var(--green-deep);
  font-family: var(--font-number);
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  font-weight: 850;
  line-height: 1;
}

.faculty-card--main strong {
  color: var(--gold);
  font-size: clamp(4.4rem, 8vw, 7.2rem);
}

.faculty-card p {
  max-width: 28ch;
  margin: auto 0 0;
}

.faculty-training {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 394px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 80, 138, 0.22), transparent 30%),
    linear-gradient(145deg, #1d1a18, #153e31);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 56px rgba(20, 24, 22, 0.16);
}

.faculty-training__head span {
  display: block;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.faculty-training__head strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1.2;
}

.training-track {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-left: 18px;
}

.training-track::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.12));
  content: "";
}

.training-track article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.training-track article::before {
  position: absolute;
  top: 20px;
  left: -19px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(251, 194, 68, 0.12);
  content: "";
}

.training-track span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.training-track strong {
  color: var(--gold);
  font-family: var(--font-number);
  font-size: 1.55rem;
  font-weight: 850;
}

.training-total {
  margin: auto 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.faculty-statement {
  position: relative;
  margin: 18px 0 0;
  padding: 20px 24px;
  color: var(--green-ink);
  background:
    linear-gradient(90deg, rgba(109, 184, 68, 0.11), rgba(251, 194, 68, 0.13), rgba(214, 80, 138, 0.1)),
    var(--white);
  border: 1px solid rgba(210, 199, 176, 0.76);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(20, 24, 22, 0.06);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.6;
  text-align: center;
}

.faculty-statement::after {
  position: absolute;
  right: min(6vw, 72px);
  bottom: -42px;
  left: min(6vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 184, 68, 0.42), rgba(251, 194, 68, 0.44), transparent);
  box-shadow: 0 0 28px rgba(109, 184, 68, 0.16);
  content: "";
}

.decision-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.decision-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.decision-compare article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.decision-compare article:nth-child(2) {
  color: var(--white);
  background: var(--green-ink);
  border-color: var(--green-ink);
}

.decision-compare span {
  display: block;
  margin-bottom: 24px;
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 800;
}

.decision-compare p {
  margin: 0;
}

.decision-compare p + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 46, 39, 0.1);
}

.decision-compare article:nth-child(2) span {
  color: var(--gold);
}

.decision-compare article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.74);
}

.decision-compare article:nth-child(2) p + p {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.campus-section {
  padding: 58px 0 46px;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 184, 68, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f0e6, #fffdf8);
}

.campus-heading {
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(35, 52, 45, 0.1);
}

.campus-heading h2 {
  margin: 0;
  color: var(--green-ink);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.campus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 176px;
  padding: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(210, 199, 176, 0.58);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 24, 22, 0.045);
}

.campus-card span {
  width: fit-content;
  padding: 4px 7px;
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.2;
  background: rgba(109, 184, 68, 0.1);
  border: 1px solid rgba(109, 184, 68, 0.14);
  border-radius: 999px;
}

.campus-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

.campus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.campus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.campus-actions a {
  width: fit-content;
  color: var(--pink);
  font-family: var(--font-number);
  font-size: 0.92rem;
  font-weight: 850;
}

.campus-actions a:last-child {
  padding: 5px 10px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(21, 62, 49, 0.14);
}

.visit-section {
  padding: 100px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 80, 138, 0.2), transparent 32%),
    linear-gradient(135deg, #101815, #153e31);
}

.visit-layout {
  display: grid;
  grid-template-columns: 0.95fr minmax(360px, 0.82fr);
  gap: 58px;
  align-items: start;
}

.visit-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.visit-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.visit-benefits article {
  min-height: 116px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.visit-benefits strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.visit-benefits span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.55;
}

.visit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.visit-meta span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 15px;
  padding: 34px 30px 28px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 251, 248, 0.98)),
    var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.lead-form--cta {
  align-content: center;
  justify-items: center;
  min-height: 300px;
  text-align: center;
}

.lead-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--pink));
  content: "";
}

.form-head {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.form-head strong {
  color: var(--green-ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.28;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfbf8;
  border: 1px solid #dfe6dc;
  border-radius: 8px;
  outline: none;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(109, 184, 68, 0.16);
}

.lead-form .button {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  background: linear-gradient(135deg, #d6508a, #c43e78);
  border: 0;
  font-size: 1.02rem;
  box-shadow: 0 18px 36px rgba(214, 80, 138, 0.34);
}

.lead-form--cta .button {
  width: min(100%, 248px);
  min-height: 54px;
  border-radius: 999px;
}

.form-note {
  min-height: 44px;
  max-width: 30ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.form-note.is-success {
  color: var(--green-deep);
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 178px 1fr auto;
  align-items: center;
  gap: 22px;
}

.footer-inner img {
  width: 170px;
}

.footer-inner strong {
  display: block;
  color: var(--ink);
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-inner a {
  color: var(--green-deep);
  font-weight: 800;
}

.footer-icp a {
  color: rgba(35, 52, 45, 0.58);
  font-size: 0.82rem;
  font-weight: 650;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes openingSweep {
  0% {
    opacity: 0;
    transform: skewX(-14deg) translateX(-42vw);
  }

  22% {
    opacity: 0.8;
  }

  58% {
    opacity: 0.18;
    transform: skewX(-14deg) translateX(36vw);
  }

  100% {
    opacity: 0;
    transform: skewX(-14deg) translateX(62vw);
  }
}

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

@keyframes labWake {
  0% {
    filter: brightness(0.82) saturate(0.82);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  }

  100% {
    filter: brightness(1) saturate(1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  }
}

@keyframes coreGlow {
  0%,
  100% {
    box-shadow: 0 20px 54px rgba(240, 192, 82, 0.24);
  }

  50% {
    box-shadow:
      0 24px 64px rgba(240, 192, 82, 0.34),
      0 0 0 18px rgba(240, 192, 82, 0.06);
  }
}

@keyframes wave {
  0%,
  100% {
    height: 20px;
  }

  50% {
    height: 72px;
  }
}

@keyframes audioPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 24, 21, 0.34);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 24, 21, 0.08);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -12px);
  }
}

@keyframes audiencePulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero-copy h1 {
    font-size: 5.2rem;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.22rem;
  }

  .section h2,
  .visit-copy h2,
  .decision-layout h2 {
    font-size: 3rem;
  }

  .hero-lab__inner,
  .section-heading--split,
  .showcase-layout,
  .growth-layout,
  .decision-layout,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .voice-stage,
  .classroom-stage,
  .growth-orbit {
    max-width: 780px;
  }

  .showcase-copy {
    padding-top: 0;
  }

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

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

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

  .evidence-chain::before {
    display: none;
  }

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

  .journey-rail__inner span {
    min-height: 46px;
  }

  .journey-rail__inner span:nth-child(odd)::before {
    display: none;
  }

  .journey-rail__inner span:nth-child(n + 3) {
    border-top: 1px solid rgba(16, 24, 21, 0.1);
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 82px;
  }

  #voice,
  #showcase,
  #proof,
  #growth,
  #courses,
  #campuses,
  #visit {
    scroll-margin-top: 82px;
  }

  .container,
  .hero-lab__inner {
    width: min(100% - 34px, var(--container));
  }

  .site-header {
    min-height: 68px;
    padding: 10px 17px;
  }

  .brand {
    width: 140px;
    height: 52px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 68px);
    padding: 12px 17px 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 26px 44px rgba(20, 24, 22, 0.12);
    transform: translateY(-120%);
    transition: transform 0.2s ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 12px;
    padding: 14px 18px;
    text-align: center;
  }

  .hero-lab__inner {
    min-height: 88svh;
    padding: 86px 0 42px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero-copy h1 {
    font-size: 4.25rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.15rem;
    line-height: 1.78;
    margin-top: 16px;
  }

  .section h2,
  .visit-copy h2,
  .decision-layout h2 {
    font-size: 2.6rem;
    line-height: 1.12;
  }

  .voice-stage {
    min-height: 500px;
  }

  .section {
    padding: 72px 0;
  }

  .evidence-wall,
  .faculty-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-card--main,
  .evidence-card--dark,
  .faculty-card--main {
    grid-column: span 2;
    grid-row: auto;
  }

  .faculty-system {
    grid-template-columns: 1fr;
  }

  .growth-node {
    width: 170px;
  }

  .growth-node:nth-of-type(3) {
    left: calc(50% - 85px);
  }

  .decision-compare {
    grid-template-columns: 1fr;
  }

  .result-console {
    grid-template-columns: 1fr;
  }

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

  .result-console__track::before {
    display: none;
  }

  .evidence-card strong {
    font-size: 3.35rem;
  }

  .evidence-card--main strong {
    font-size: 5.4rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .hero-lab__inner {
    padding-top: 78px;
  }

  .section h2,
  .visit-copy h2,
  .decision-layout h2 {
    font-size: 2.15rem;
  }

  .campus-section {
    padding: 44px 0 34px;
  }

  .campus-heading {
    padding-bottom: 16px;
  }

  .campus-heading h2 {
    font-size: 1.75rem;
  }

  .brand-marquee__track {
    font-size: 1.04rem;
  }

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

  .hero-nail {
    display: grid;
    margin-top: 16px;
    padding: 12px 14px;
  }

  .stage-console,
  .visit-benefits,
  .journey-rail__inner {
    grid-template-columns: 1fr;
  }

  .journey-rail__inner {
    padding: 8px 0;
  }

  .journey-rail__inner span {
    min-height: 44px;
    padding: 0 2px;
  }

  .journey-rail__inner span + span {
    border-top: 1px solid rgba(16, 24, 21, 0.1);
  }

  .journey-rail__inner span::before {
    display: none !important;
  }

  .stage-console .sound-toggle {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .voice-stage {
    min-height: auto;
    padding: 20px;
  }

  .voice-ring {
    width: 270px;
    margin-top: 28px;
  }

  .voice-core {
    width: 112px;
    height: 112px;
  }

  .voice-core strong {
    font-size: 3.2rem;
  }

  .faculty-card--main {
    min-height: 300px;
  }

  .evidence-card strong {
    font-size: 2.9rem;
  }

  .evidence-card--main strong {
    font-size: 4rem;
  }

  .certificate-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-top: 20px;
  }

  .certificate-strip figure {
    min-height: 132px;
  }

  .certificate-strip img {
    height: 132px;
    padding: 6px;
  }

  .certificate-strip figcaption {
    right: 5px;
    left: 5px;
    bottom: 6px;
    padding: 3px 4px;
    font-size: 0.52rem;
  }

  .result-console__track {
    grid-template-columns: 1fr;
  }

  .result-console__track span {
    min-height: 58px;
    justify-items: start;
    padding-inline: 14px;
    text-align: left;
  }

  .stage-tags,
  .evidence-wall,
  .evidence-chain,
  .method-grid,
  .campus-grid,
  .faculty-metrics {
    grid-template-columns: 1fr;
  }

  .classroom-stage {
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .showcase-photo--main {
    aspect-ratio: 1.56;
    padding: 8px;
  }

  .showcase-photo--main figcaption {
    right: 16px;
    bottom: 16px;
  }

  .showcase-filmstrip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .showcase-photo--small {
    aspect-ratio: 1.08;
  }

  .showcase-photo--hands {
    grid-column: 1 / -1;
    aspect-ratio: 1.55;
  }

  .showcase-photo--hands img {
    object-position: 58% 38%;
  }

  .evidence-card--main,
  .evidence-card--dark,
  .faculty-card--main {
    grid-column: auto;
  }

  .evidence-card,
  .age-panel,
  .faculty-card,
  .faculty-training,
  .lead-form {
    padding: 22px;
  }

  .faculty-card,
  .faculty-card--main,
  .faculty-training {
    min-height: 0;
  }

  .training-track article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .campus-card {
    min-height: 0;
    padding: 18px;
  }

  .growth-orbit {
    min-height: 850px;
  }

  .growth-node {
    right: auto !important;
    left: 24px !important;
    width: calc(100% - 48px);
  }

  .growth-node:nth-of-type(1) {
    top: 34px;
  }

  .growth-node:nth-of-type(2) {
    top: 190px;
  }

  .growth-node:nth-of-type(3) {
    top: 346px;
    bottom: auto;
  }

  .growth-node:nth-of-type(4) {
    top: 502px;
    bottom: auto;
  }

  .growth-node:nth-of-type(5) {
    top: 658px;
    bottom: auto;
  }

  .orbit-line {
    display: none;
  }
}
