:root {
  --navy-950: #080d2d;
  --navy-900: #111a55;
  --navy-800: #1a2876;
  --blue-500: #365cff;
  --blue-400: #5275ff;
  --pink-600: #de2b78;
  --pink-500: #f04493;
  --pink-100: #ffe6f1;
  --cream: #fff8f4;
  --white: #ffffff;
  --ink: #111426;
  --muted: #626579;
  --line: #e6e6ef;
  --shadow: 0 24px 70px rgba(17, 26, 85, 0.13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--pink-500));
  box-shadow: 0 0 14px rgba(240, 68, 147, 0.55);
  transition: width 80ms linear;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(17, 26, 85, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(8, 13, 45, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px 14px 14px 5px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-500), var(--pink-500));
  box-shadow: 0 10px 24px rgba(222, 43, 120, 0.22);
  font-family: Georgia, serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.button) {
  color: #303247;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.button):hover {
  color: var(--pink-600);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--navy-900);
  background: #f4f5fb;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 15px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.quiz-options button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(240, 68, 147, 0.42);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy-900);
  padding-inline: 19px;
  font-size: 13px;
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(110deg, var(--pink-600), var(--pink-500));
  box-shadow: 0 16px 34px rgba(222, 43, 120, 0.26);
}

.button-primary::before,
.button-form::before {
  position: absolute;
  top: -50%;
  left: -75%;
  width: 42%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: rotate(18deg);
  animation: button-shine 4.6s ease-in-out infinite;
}

.button-primary > *,
.button-form > * {
  position: relative;
  z-index: 1;
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(222, 43, 120, 0.32);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 156px 0 92px;
  background:
    radial-gradient(circle at 7% 8%, rgba(255, 208, 229, 0.74), transparent 29%),
    linear-gradient(130deg, #fff 40%, #f3f5ff 100%);
  background-size: 120% 120%;
  animation: hero-breathe 10s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(54, 92, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(222, 43, 120, 0.13);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 220ms ease-out;
}

.hero-orbit-one {
  top: 130px;
  left: -120px;
  width: 260px;
  height: 260px;
}

.hero-orbit-two {
  top: 182px;
  left: -72px;
  width: 170px;
  height: 170px;
}

.hero-words {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-word {
  position: absolute;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.5vw, 38px);
  font-style: italic;
  opacity: 0.045;
  animation: word-float 8s ease-in-out infinite alternate;
}

.word-speak { top: 20%; right: 3%; transform: rotate(7deg); }
.word-live { bottom: 8%; left: 5%; animation-delay: -2.5s; transform: rotate(-9deg); }
.word-connect { top: 49%; left: 47%; animation-delay: -5s; transform: rotate(5deg); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink-500);
}

.hero h1,
.section-heading h2,
.method-copy h2,
.diagnostic-copy h2,
.about-copy h2,
.testimonials-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(44px, 5.25vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: var(--pink-600);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--pink-600), #fc64aa, var(--blue-500), var(--pink-600));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: headline-gradient 7s linear infinite;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #56596b;
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.text-link {
  padding: 10px 0;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 850;
  border-bottom: 1px solid rgba(17, 26, 85, 0.28);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 30px;
  color: #6a6d7e;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span::first-letter {
  color: var(--pink-600);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.teacher-photo-backdrop {
  position: absolute;
  inset: 25px 16px 8px 54px;
  border-radius: 46% 46% 28px 28px;
  background: linear-gradient(145deg, var(--blue-500), var(--pink-500));
  box-shadow: 0 28px 70px rgba(17, 26, 85, 0.2);
  transform: rotate(3deg);
  animation: backdrop-float 5.5s ease-in-out infinite alternate;
}

.teacher-hero-frame {
  position: absolute;
  inset: 0 46px 22px 22px;
  overflow: hidden;
  margin: 0;
  border: 6px solid var(--white);
  border-radius: 46% 46% 25px 25px;
  background: var(--navy-900);
  box-shadow: 0 28px 75px rgba(8, 13, 45, 0.2);
  animation: portrait-breathe 6.5s ease-in-out infinite alternate;
}

.teacher-hero-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(8, 13, 45, 0.9));
  content: "";
  pointer-events: none;
}

.teacher-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 51%;
}

.teacher-hero-frame figcaption {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.teacher-hero-frame figcaption span {
  color: #ff9bc8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.teacher-hero-frame figcaption strong {
  max-width: 310px;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.22;
}

.class-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(8, 13, 45, 0.17);
  backdrop-filter: blur(12px);
}

.class-badge div,
.class-badge-experience {
  flex-direction: column;
}

.class-badge strong {
  font-size: 12px;
}

.class-badge small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.class-badge-live {
  top: 54px;
  left: 0;
  border-radius: 17px 17px 17px 5px;
  padding: 14px 17px;
  animation: float-two 4.5s ease-in-out infinite alternate;
}

.class-badge-experience {
  right: 0;
  bottom: 58px;
  align-items: flex-start;
  border-radius: 17px 17px 5px 17px;
  padding: 15px 19px;
  animation: float-one 4s ease-in-out infinite alternate;
}

.class-badge-experience strong {
  color: var(--pink-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.visual-backdrop {
  position: absolute;
  inset: 8% 3% 2% 15%;
  border-radius: 45% 45% 20% 45%;
  background:
    linear-gradient(145deg, rgba(54, 92, 255, 0.96), rgba(17, 26, 85, 0.98)),
    var(--navy-900);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  animation: backdrop-float 5.5s ease-in-out infinite alternate;
}

.visual-backdrop::after {
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  content: "";
}

.lesson-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(8, 13, 45, 0.2);
  backdrop-filter: blur(18px);
}

.lesson-card-main {
  top: 67px;
  right: 25px;
  width: min(91%, 470px);
  border-radius: 29px;
  padding: 24px;
  animation: card-float 4.8s ease-in-out infinite alternate;
}

.lesson-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 850;
}

.lesson-card-top small {
  margin-left: auto;
  border-radius: 999px;
  color: var(--pink-600);
  background: var(--pink-100);
  padding: 5px 9px;
  font-weight: 900;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2bc27e;
  box-shadow: 0 0 0 6px rgba(43, 194, 126, 0.12);
}

.conversation {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 23px;
}

.speaker {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px 13px 13px 4px;
  color: var(--white);
  background: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
}

.conversation p {
  margin: 0;
  color: #4e5061;
  font-size: 15px;
  line-height: 1.5;
}

.conversation strong {
  color: var(--navy-950);
  font-size: 18px;
}

.answer-bubble {
  width: 86%;
  margin: 23px 0 0 auto;
  border-radius: 17px 17px 4px 17px;
  color: var(--navy-900);
  background: #e9edff;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.sound-wave {
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 18px 0 4px;
}

.sound-wave i {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(var(--blue-500), var(--pink-500));
  animation: wave 1.2s ease-in-out infinite alternate;
}

.sound-wave i:nth-child(2n) { height: 19px; animation-delay: -0.3s; }
.sound-wave i:nth-child(3n) { height: 31px; animation-delay: -0.6s; }
.sound-wave i:nth-child(4n) { height: 24px; animation-delay: -0.9s; }

.lesson-footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #7a7c8c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(8, 13, 45, 0.15);
  backdrop-filter: blur(12px);
}

.floating-card-one {
  bottom: 13px;
  left: 2px;
  flex-direction: column;
  border-radius: 18px 18px 18px 5px;
  padding: 18px 20px;
  animation: float-one 4s ease-in-out infinite alternate;
}

.floating-card-one strong {
  color: var(--pink-600);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.floating-card-one span,
.floating-card-two span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.floating-card-two {
  top: 19px;
  left: 9px;
  align-items: center;
  gap: 11px;
  border-radius: 16px 16px 5px 16px;
  padding: 13px 16px;
  animation: float-two 4.5s ease-in-out infinite alternate;
}

.floating-card-two div {
  display: flex;
  flex-direction: column;
}

.floating-card-two strong {
  color: var(--navy-900);
  font-size: 12px;
}

.floating-card-two .mini-check {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-500);
}

.trust-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
}

.trust-items {
  display: flex;
  width: max-content;
  min-height: 88px;
  align-items: center;
  animation: marquee 34s linear infinite;
}

.trust-strip:hover .trust-items {
  animation-play-state: paused;
}

.trust-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.trust-items p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.trust-items strong {
  color: #ff86bc;
}

.trust-group > i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-400);
}

.section {
  padding: 120px 0;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 85px;
}

.section-heading h2,
.method-copy h2,
.diagnostic-copy h2,
.about-copy h2,
.testimonials-heading h2,
.contact-copy h2 {
  font-size: clamp(39px, 4.3vw, 60px);
  line-height: 1.03;
}

.section-intro,
.section-heading > p:last-child,
.method-copy > p,
.diagnostic-copy > p,
.about-copy > p,
.testimonials-heading > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.situation-card {
  min-height: 284px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.situation-card:hover {
  transform: perspective(800px) translateY(-5px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(222, 43, 120, 0.34);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--pink-600);
  background: var(--pink-100);
  font-size: 12px;
  font-weight: 900;
}

.situation-card h3 {
  margin: 48px 0 12px;
  color: var(--navy-950);
  font-size: 21px;
}

.situation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.method-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.method-section::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.eyebrow-light {
  color: #cdd5ff;
}

.method-copy h2,
.testimonials-heading h2,
.contact-copy h2 {
  color: var(--white);
}

.method-copy h2 em,
.testimonials-heading h2 em,
.contact-copy h2 em {
  color: #ff83ba;
}

.method-copy > p {
  margin: 30px 0 34px;
  color: #c5c9dd;
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  padding: 25px;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.method-step:hover {
  border-color: rgba(255, 131, 186, 0.36);
  background: rgba(255, 255, 255, 0.085);
  transform: translateX(7px);
}

.method-step > span {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 16px 16px 16px 5px;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink-600), var(--pink-500));
  font-size: 12px;
  font-weight: 900;
}

.method-step small {
  color: #ff8bbf;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.method-step h3 {
  margin: 5px 0 7px;
  font-size: 20px;
}

.method-step p {
  margin: 0;
  color: #bec3d9;
  font-size: 13px;
  line-height: 1.6;
}

.centered {
  max-width: 770px;
  margin: 0 auto 58px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.outcome {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.outcome::before {
  position: absolute;
  z-index: -1;
  top: var(--glow-y, 50%);
  left: var(--glow-x, 50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  content: "";
  filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.outcome:hover {
  box-shadow: 0 24px 60px rgba(8, 13, 45, 0.17);
}

.outcome:hover::before {
  opacity: 1;
}

.outcome-blue {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-500), var(--navy-900));
}

.outcome-pink {
  color: var(--white);
  background: linear-gradient(145deg, var(--pink-500), #bb1f65);
}

.outcome-cream {
  color: var(--navy-950);
  background: var(--cream);
  border: 1px solid #f2e4df;
}

.outcome-kicker {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-cream .outcome-kicker {
  color: var(--pink-600);
  background: var(--pink-100);
}

.outcome h3 {
  max-width: 320px;
  margin: 78px 0 14px;
  font-size: 25px;
  line-height: 1.12;
}

.outcome p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.6;
}

.outcome-cream p {
  color: var(--muted);
}

.outcome-icon {
  position: absolute;
  right: 24px;
  bottom: 21px;
  font-family: Georgia, serif;
  font-size: 48px;
  opacity: 0.42;
}

.diagnostic-section {
  background: #f5f6ff;
}

.diagnostic-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 75px;
}

.diagnostic-copy {
  position: sticky;
  top: 130px;
}

.diagnostic-copy > p {
  margin-top: 25px;
}

.diagnostic-progress {
  width: 100%;
  height: 7px;
  overflow: hidden;
  margin-top: 32px;
  border-radius: 999px;
  background: #dfe2f6;
}

.diagnostic-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-500), var(--pink-500));
  transition: width 250ms ease;
}

.diagnostic-copy > small {
  display: block;
  margin-top: 9px;
  color: #777b93;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.quiz-card {
  min-height: 440px;
  border: 1px solid #e0e2f1;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 38px;
}

.quiz-step,
.quiz-result {
  display: none;
}

.quiz-step.is-active,
.quiz-result.is-active {
  display: block;
  animation: fade-up 260ms ease both;
}

.quiz-question {
  min-height: 72px;
  margin: 0 0 25px;
  color: var(--navy-950);
  font-size: 25px;
  font-weight: 850;
  line-height: 1.25;
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-options button {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #34374b;
  background: #fff;
  padding: 0 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.quiz-options button:hover {
  border-color: var(--blue-400);
  color: var(--navy-900);
  background: #f5f7ff;
}

.quiz-options button span {
  color: var(--pink-500);
  font-size: 20px;
}

.result-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 19px 19px 19px 6px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-500), var(--pink-500));
  font-size: 23px;
}

.quiz-result > p:first-of-type {
  margin: 26px 0 8px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-result h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 30px;
  line-height: 1.12;
}

.quiz-result > p:last-of-type {
  margin: 15px 0 25px;
  color: var(--muted);
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
}

.portrait-collage {
  position: relative;
  min-height: 610px;
}

.portrait-collage::before {
  position: absolute;
  inset: 35px 30px 5px 5px;
  border-radius: 48% 48% 28px 28px;
  background: linear-gradient(145deg, var(--pink-100), #dfe5ff);
  content: "";
}

.portrait-main,
.portrait-detail {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.portrait-main {
  inset: 0 60px 45px 0;
  border-radius: 48% 48% 24px 24px;
  animation: portrait-breathe 6.5s ease-in-out infinite alternate;
}

.portrait-detail {
  right: -18px;
  bottom: 0;
  width: 42%;
  height: 46%;
  border-radius: 26px 26px 8px 26px;
  animation: detail-float 5s ease-in-out infinite alternate;
}

.portrait-main img,
.portrait-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-main img {
  object-position: 50% 52%;
}

.portrait-detail img {
  object-position: 50% 50%;
}

.about-note {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0 auto;
  border: 1px solid #f2d8e4;
  border-radius: 18px 18px 6px 18px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(8, 13, 45, 0.16);
  padding: 18px 21px;
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.about-note strong {
  color: var(--pink-600);
  font-family: Inter, "Avenir Next", sans-serif;
  font-style: normal;
}

.about-note span {
  color: var(--pink-500);
}

.about-copy > p {
  margin-top: 24px;
}

.about-copy blockquote {
  margin: 28px 0;
  border-left: 3px solid var(--pink-500);
  color: var(--navy-900);
  padding: 4px 0 4px 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
}

.credentials {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px 13px;
  margin-top: 26px;
}

.credentials span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px 13px 13px 4px;
  color: var(--pink-600);
  background: var(--pink-100);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.credentials p {
  margin: 0;
  color: #55586b;
  font-size: 12px;
  font-weight: 750;
}

.signature {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  color: var(--pink-600);
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
}

.signature span {
  margin-top: 3px;
  color: var(--muted);
  font-family: Inter, "Avenir Next", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials-section {
  color: var(--white);
  background: var(--navy-950);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.testimonials-heading > p {
  color: #adb3cf;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.testimonial-pending {
  min-height: 270px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  padding: 25px;
}

.testimonial-pending > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  color: #ff92c2;
  background: rgba(240, 68, 147, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.testimonial-pending div {
  margin-top: 83px;
}

.testimonial-pending strong {
  font-size: 18px;
}

.testimonial-pending p {
  margin: 10px 0 0;
  color: #aeb3ce;
  font-size: 13px;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.faq-grid .section-heading > p:last-child {
  margin-top: 24px;
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--pink-500);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  margin: -2px 45px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
}

.contact-section::before {
  position: absolute;
  top: -220px;
  left: -190px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(240, 68, 147, 0.18);
  filter: blur(20px);
  content: "";
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.contact-copy > p {
  margin-top: 26px;
  color: #bdc3df;
}

.contact-promise {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 12px 13px;
  margin-top: 34px;
}

.contact-promise span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: #ff9ac7;
  background: rgba(240, 68, 147, 0.12);
  font-size: 9px;
  font-weight: 900;
}

.contact-promise p {
  margin: 0;
  color: #d4d8e9;
  font-size: 13px;
  font-weight: 700;
}

.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  padding: 38px;
}

.form-heading span {
  color: var(--pink-600);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.form-heading h3 {
  margin: 4px 0 7px;
  color: var(--navy-950);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.form-heading p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.lead-form label {
  display: block;
  margin-top: 15px;
}

.lead-form label > span {
  display: block;
  margin: 0 0 7px 2px;
  color: #34364a;
  font-size: 11px;
  font-weight: 850;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 56px;
  border: 1px solid #dadcea;
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: #fbfbfe;
  padding: 0 16px;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input::placeholder {
  color: #9598a9;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(54, 92, 255, 0.1);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid {
  border-color: var(--pink-500);
}

.field-error {
  display: block;
  min-height: 13px;
  margin: 4px 0 0 2px;
  color: var(--pink-600);
  font-size: 10px;
}

.button-form {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
  color: var(--white);
  background: linear-gradient(110deg, var(--pink-600), var(--pink-500));
  box-shadow: 0 15px 32px rgba(222, 43, 120, 0.23);
}

.form-note {
  margin: 14px 0 0;
  color: #898b9a;
  font-size: 10px;
  text-align: center;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  color: #aeb3cd;
  background: #05081f;
  padding: 38px 0;
}

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

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: #969cb8;
}

.footer-grid > p {
  margin: 0;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.footer-grid > span {
  justify-self: end;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay-small { transition-delay: 90ms; }
.reveal-delay { transition-delay: 170ms; }

@keyframes wave {
  from { transform: scaleY(0.65); }
  to { transform: scaleY(1.25); }
}

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

@keyframes hero-breathe {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}

@keyframes headline-gradient {
  to { background-position: 240% 0; }
}

@keyframes word-float {
  from { margin-top: -7px; }
  to { margin-top: 12px; }
}

@keyframes backdrop-float {
  from { transform: rotate(2deg) translateY(0); }
  to { transform: rotate(4deg) translateY(-8px); }
}

@keyframes card-float {
  from { translate: 0 0; }
  to { translate: 0 -7px; }
}

@keyframes float-one {
  from { translate: 0 0; rotate: -1deg; }
  to { translate: 4px -9px; rotate: 1deg; }
}

@keyframes float-two {
  from { translate: 0 0; }
  to { translate: -4px 8px; }
}

@keyframes portrait-breathe {
  from { translate: 0 0; }
  to { translate: 0 -7px; }
}

@keyframes detail-float {
  from { transform: rotate(1.5deg) translateY(0); }
  to { transform: rotate(3.5deg) translateY(-8px); }
}

@keyframes button-shine {
  0%, 68% { left: -75%; }
  86%, 100% { left: 135%; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .main-nav { gap: 19px; }
  .main-nav > a:not(.button) { font-size: 12px; }
  .hero-grid { gap: 38px; }
  .hero-visual { min-height: 480px; }
  .method-grid,
  .about-grid,
  .contact-shell { gap: 55px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .outcome:first-child { grid-column: 1 / -1; min-height: 290px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-shell { min-height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 70px 30px 30px;
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; }
  .main-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 14px 4px;
    color: var(--navy-950);
    font-size: 20px;
  }
  .main-nav .button { margin-top: 16px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding: 125px 0 76px; }
  .hero-grid,
  .split-intro,
  .method-grid,
  .diagnostic-shell,
  .about-grid,
  .testimonials-heading,
  .faq-grid,
  .contact-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero-copy { text-align: center; }
  .hero h1 { font-size: clamp(40px, 10vw, 64px); }
  .hero-lead { margin-inline: auto; }
  .hero-actions,
  .hero-proof { justify-content: center; }
  .hero-visual { width: min(100%, 590px); margin-inline: auto; }
  .trust-items { flex-wrap: wrap; justify-content: center; padding: 24px 0; }
  .trust-items { flex-wrap: nowrap; justify-content: flex-start; padding: 0; }
  .section { padding: 88px 0; }
  .split-intro { gap: 24px; }
  .situation-grid,
  .testimonial-track { grid-template-columns: 1fr; }
  .situation-card { min-height: 230px; }
  .method-grid { gap: 50px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome:first-child { grid-column: auto; }
  .outcome { min-height: 300px; }
  .diagnostic-shell { gap: 38px; }
  .diagnostic-copy { position: static; }
  .about-grid { gap: 60px; }
  .about-visual { width: min(90%, 500px); margin-inline: auto; }
  .testimonials-heading { gap: 25px; }
  .faq-grid { gap: 45px; }
  .contact-shell { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid .brand { justify-self: center; }
  .footer-grid > span { justify-self: center; }
}

@media (max-width: 560px) {
  .brand-copy small { display: none; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px 12px 12px 4px; font-size: 22px; }
  .brand-copy strong { font-size: 21px; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: 43px; line-height: 1; }
  .hero-lead { margin-top: 21px; font-size: 16px; line-height: 1.55; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 8px; }
  .hero-visual { min-height: 410px; }
  .visual-backdrop { inset: 8% 1% 0 7%; }
  .lesson-card-main { top: 56px; right: 7px; width: 93%; padding: 19px; }
  .conversation p { font-size: 13px; }
  .conversation strong { font-size: 16px; }
  .answer-bubble { font-size: 12px; }
  .lesson-footer { font-size: 8px; }
  .floating-card-two { left: 0; }
  .floating-card-one { bottom: -4px; max-width: 190px; }
  .trust-items { min-height: 72px; align-items: center; flex-direction: row; }
  .trust-group { gap: 23px; padding-right: 23px; }
  .trust-items p { white-space: nowrap; font-size: 11px; }
  .section { padding: 74px 0; }
  .section-heading h2,
  .method-copy h2,
  .diagnostic-copy h2,
  .about-copy h2,
  .testimonials-heading h2,
  .contact-copy h2 { font-size: 39px; }
  .section-intro,
  .section-heading > p:last-child,
  .method-copy > p,
  .diagnostic-copy > p,
  .about-copy > p,
  .testimonials-heading > p,
  .contact-copy > p { font-size: 15px; }
  .situation-grid { margin-top: 38px; }
  .method-step { grid-template-columns: 45px 1fr; padding: 20px 17px; }
  .method-step > span { width: 42px; height: 42px; }
  .outcome { min-height: 275px; padding: 27px; }
  .outcome h3 { margin-top: 62px; font-size: 23px; }
  .quiz-card { min-height: 420px; border-radius: 24px; padding: 26px 19px; }
  .quiz-question { min-height: auto; font-size: 22px; }
  .quiz-options button { min-height: 64px; padding-inline: 16px; }
  .portrait-collage { min-height: 500px; }
  .portrait-main { inset: 0 30px 38px 0; }
  .portrait-detail { right: -5px; width: 39%; height: 43%; }
  .teacher-hero-frame { inset: 0 20px 20px 8px; }
  .teacher-photo-backdrop { inset: 22px 4px 7px 27px; }
  .class-badge-live { top: 39px; left: -4px; }
  .class-badge-experience { right: -3px; bottom: 48px; }
  .about-note { margin-top: 15px; font-size: 16px; }
  .testimonial-track { margin-top: 38px; }
  .testimonial-pending { min-height: 225px; }
  .testimonial-pending div { margin-top: 54px; }
  .accordion summary { min-height: 72px; font-size: 14px; }
  .lead-form { border-radius: 24px; padding: 27px 19px; }
  .form-heading h3 { font-size: 24px; }
  .button-form { padding-inline: 15px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .trust-items { transform: none; }
}
