:root {
  --cream: #fff7e8;
  --surface: #fffcf5;
  --purple: #5b2eff;
  --dark-purple: #2b145f;
  --orange: #ff7a1a;
  --charcoal: #15121a;
  --muted: #6b6475;
  --lavender: #eee7ff;
  --peach: #ffe7d1;
  --line: rgba(43, 20, 95, 0.14);
  --shadow: 0 24px 70px rgba(43, 20, 95, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 247, 232, 0.43);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(43, 20, 95, 0.04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.footer-logo {
  width: auto;
  height: 92px;
  object-fit: contain;
}

.brand img:not(.brand-logo) {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--dark-purple);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--dark-purple);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 14px 34px rgba(91, 46, 255, 0.24);
}

.button-secondary {
  border-color: rgba(43, 20, 95, 0.2);
  background: var(--surface);
  color: var(--dark-purple);
}

.button-orange {
  background: var(--orange);
  color: #261000;
  box-shadow: 0 14px 34px rgba(255, 122, 26, 0.22);
}

.hero {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 48px;
}

.hero-image {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: visible;
  background-image: url("assets/results-day-girls.png");
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 125px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 247, 232, 0.46));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(21, 18, 26, 0.78), rgba(21, 18, 26, 0.42) 54%, rgba(21, 18, 26, 0.12)),
    linear-gradient(180deg, rgba(21, 18, 26, 0.18), rgba(21, 18, 26, 0.72));
}

.hero-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  padding-top: 96px;
  padding-bottom: 120px;
}

.hero-copy {
  max-width: 900px;
}

.hero-image h1 {
  max-width: 900px;
  color: white;
  font-size: clamp(3.1rem, 6.4vw, 6.4rem);
  line-height: 0.98;
}

.hero-image .eyebrow,
.hero-image .lead,
.hero-image .trust-line {
  color: white;
}

.hero-image .eyebrow::before {
  background: var(--orange);
}

.hero-lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.hero-copy .eyebrow,
.hero-copy .hero-actions {
  justify-content: center;
}

.hero-copy .lead {
  margin: 22px auto 0;
  text-align: center;
}

.hero-rating-strip {
  position: absolute;
  left: 50%;
  bottom: 92px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: min(100% - 32px, 620px);
  color: white;
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
  opacity: 0.9;
}

.hero-rating-strip > strong {
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 950;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars span {
  display: grid;
  width: 22px;
  height: 20px;
  place-items: center;
  background: #2fb67c;
  color: white;
  font-size: 0;
  line-height: 1;
}

.rating-stars span::before {
  content: "★";
  font-size: 0.82rem;
}

.rating-stars .half-star {
  background: linear-gradient(90deg, #2fb67c 68%, rgba(255, 255, 255, 0.35) 68%);
}

.hero-rating-strip > span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.hero-rating-strip > span strong {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trustpilot-word {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
}

.trustpilot-word span {
  color: #2fb67c;
  font-size: 0;
  text-shadow: none;
}

.trustpilot-word span::before {
  content: "★";
  font-size: 0.9rem;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -44px;
  z-index: 4;
  display: grid;
  width: min(100% - 32px, 400px);
  gap: 5px;
  justify-items: center;
  border: 1px solid rgba(238, 231, 255, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.92);
  box-shadow:
    0 18px 44px rgba(43, 20, 95, 0.16),
    0 0 34px rgba(255, 122, 26, 0.2);
  padding: 16px 20px 14px;
  color: var(--dark-purple);
  transform: translateX(-50%);
  text-align: center;
  animation: scrollCueIn 760ms ease-out 180ms both, scrollCueGlow 2.8s ease-in-out 1s infinite;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-scroll-cue strong {
  font-size: 1rem;
  line-height: 1.2;
}

.hero-scroll-cue small {
  color: var(--muted);
  font-size: 0.82rem;
}

.scroll-chevron {
  color: var(--orange);
  font-size: 0;
  line-height: 1;
  animation: scrollChevronDrift 2.8s ease-in-out infinite;
}

.scroll-chevron::before {
  content: "⌄";
  font-size: 1.15rem;
}

@keyframes scrollCueIn {
  from {
    opacity: 0;
    transform: translate(-50%, 14px) scale(0.96);
  }

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

@keyframes scrollCueGlow {
  0%,
  100% {
    box-shadow:
      0 18px 44px rgba(43, 20, 95, 0.16),
      0 0 34px rgba(255, 122, 26, 0.2);
  }

  50% {
    box-shadow:
      0 22px 52px rgba(43, 20, 95, 0.2),
      0 0 48px rgba(255, 122, 26, 0.32);
  }
}

@keyframes scrollChevronDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

.hero-secondary {
  background: rgba(255, 252, 245, 0.94);
}

.hero-proof {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(21, 18, 26, 0.34);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.hero-proof-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 10px 14px;
  animation: heroProofMarquee 36.4s linear infinite;
}

.hero-proof span {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  color: white;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

@keyframes heroProofMarquee {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-proof-track {
    animation: none;
  }

  .hero-scroll-cue,
  .scroll-chevron {
    animation: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--dark-purple);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.highlight {
  color: var(--dark-purple);
  background: linear-gradient(180deg, transparent 60%, rgba(255, 122, 26, 0.25) 0);
}

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

.quick-enquiry {
  padding: 10px 0 46px;
}

.trust-line {
  margin-top: 24px;
  color: var(--dark-purple);
  font-weight: 800;
}

.status-pill {
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--lavender);
  color: var(--dark-purple);
  font-size: 0.82rem;
  font-weight: 900;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: rgba(255, 252, 245, 0.68);
}

.section-lavender {
  background: linear-gradient(180deg, rgba(238, 231, 255, 0.74), rgba(255, 247, 232, 0.72));
}

.section-peach {
  background: linear-gradient(180deg, rgba(255, 231, 209, 0.78), rgba(255, 247, 232, 0.75));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.trust-strip {
  padding: 18px 0 54px;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.badge,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.9);
  box-shadow: 0 12px 34px rgba(43, 20, 95, 0.07);
}

.badge {
  min-height: 86px;
  display: grid;
  align-items: center;
  padding: 16px;
  color: var(--dark-purple);
  font-weight: 900;
}

.card {
  padding: 24px;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 10px 0 0;
}

.magic-subject-card {
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.magic-subject-card::before,
.magic-subject-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.magic-subject-card::before {
  background:
    radial-gradient(360px circle at var(--mouse-x) var(--mouse-y), rgba(91, 46, 255, 0.18), transparent 42%),
    radial-gradient(260px circle at var(--mouse-x) var(--mouse-y), rgba(255, 122, 26, 0.15), transparent 58%);
}

.magic-subject-card::after {
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(280px circle at var(--mouse-x) var(--mouse-y), rgba(255, 122, 26, 0.72), rgba(91, 46, 255, 0.48), transparent 68%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.magic-subject-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 46, 255, 0.22);
  box-shadow: 0 24px 62px rgba(43, 20, 95, 0.14);
}

.magic-subject-card:hover::before,
.magic-subject-card:hover::after {
  opacity: 1;
}

.magic-subject-card > * {
  position: relative;
  z-index: 1;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--dark-purple);
  color: white;
  font-weight: 900;
}

.method-section {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 247, 232, 0.46), rgba(255, 247, 232, 0.38)),
    url("assets/method-writing-bg.png");
  background-position: center;
  background-size: cover;
}

.method-section .container {
  position: relative;
  z-index: 1;
}

.method-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.method-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--shine-angle), transparent 0 24%, rgba(255, 122, 26, 0.95), rgba(91, 46, 255, 0.95), transparent 42% 100%);
  opacity: 0;
  transition: opacity 180ms ease;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(43, 20, 95, 0.16);
}

.method-card:hover::before {
  opacity: 1;
  animation: shineBorder 4.5s linear infinite;
}

.problem-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
}

.problem-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.education-problem-grid {
  align-items: center;
  gap: 48px;
}

.education-problem {
  padding-top: 118px;
}

.education-problem-copy {
  max-width: 760px;
}

.education-problem-copy h2 {
  max-width: 760px;
}

.aurora-text {
  background: linear-gradient(110deg, var(--orange), var(--purple), var(--orange));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: auroraText 5s linear infinite;
}

.surge-solution {
  color: var(--dark-purple);
  font-weight: 900;
}

.shine-cta {
  position: relative;
  border-radius: var(--radius);
  padding: 2px;
  overflow: hidden;
  background: conic-gradient(from var(--shine-angle), transparent 0 24%, rgba(255, 122, 26, 0.95), rgba(91, 46, 255, 0.95), transparent 42% 100%);
  box-shadow: var(--shadow);
  animation: shineBorder 4.5s linear infinite;
}

.shine-cta-inner {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  background: var(--surface);
  padding: 34px;
}

.shine-cta-inner h3 {
  max-width: 460px;
  color: var(--dark-purple);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.shine-cta-inner p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
}

.shine-cta-inner .button {
  align-self: flex-start;
  margin-top: 24px;
}

.pulse-button {
  animation: ctaPulse 1.9s ease-in-out infinite;
}

@property --shine-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes auroraText {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 240% 50%;
  }
}

@keyframes shineBorder {
  to {
    --shine-angle: 360deg;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 34px rgba(91, 46, 255, 0.24);
  }

  50% {
    transform: translateY(-1px) scale(1.035);
    box-shadow: 0 18px 44px rgba(91, 46, 255, 0.34);
  }
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.pricing-card.recommended {
  border-color: rgba(91, 46, 255, 0.42);
  box-shadow: 0 24px 62px rgba(91, 46, 255, 0.16);
}

.price {
  margin: 16px 0 2px;
  color: var(--dark-purple);
  font-size: 2.35rem;
  font-weight: 950;
  line-height: 1;
}

.price-note {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 750;
}

.report-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-preview header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.report-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.report-item {
  border: 1px solid rgba(43, 20, 95, 0.11);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(238, 231, 255, 0.42);
}

.report-item span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.report-item strong {
  display: block;
  margin-top: 4px;
  color: var(--dark-purple);
}

.lead-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.compact-lead {
  grid-template-columns: 0.78fr 1.22fr;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--dark-purple);
  font-size: 0.88rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(43, 20, 95, 0.2);
  border-radius: var(--radius);
  background: #fffdfa;
  color: var(--charcoal);
  padding: 10px 12px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(91, 46, 255, 0.12);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--dark-purple);
  font-weight: 800;
}

.taster-hero {
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.97), rgba(238, 231, 255, 0.58) 58%, rgba(255, 231, 209, 0.68)),
    var(--cream);
}

.taster-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  align-items: start;
  gap: 34px;
}

.taster-copy {
  position: sticky;
  top: 112px;
}

.taster-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  line-height: 0.96;
}

.taster-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.taster-points span {
  width: fit-content;
  border: 1px solid rgba(91, 46, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.78);
  color: var(--dark-purple);
  font-weight: 900;
  padding: 10px 14px;
}

.taster-form {
  border: 1px solid rgba(91, 46, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.94);
  box-shadow: 0 28px 70px rgba(43, 20, 95, 0.12);
  padding: 28px;
}

.form-section-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 4px;
}

.form-section-title h2 {
  margin: 0;
  font-size: 1.35rem;
}

.form-section-title p {
  margin: 4px 0 0;
  color: var(--muted);
}

.calendar-ui {
  border: 1px solid rgba(43, 20, 95, 0.11);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(238, 231, 255, 0.42), rgba(255, 231, 209, 0.34));
  padding: 18px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 14px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.time-slots legend {
  grid-column: 1 / -1;
  margin-bottom: -4px;
  color: var(--dark-purple);
  font-size: 0.88rem;
  font-weight: 900;
}

.time-slot {
  position: relative;
  cursor: pointer;
}

.time-slot input {
  position: absolute;
  opacity: 0;
}

.time-slot span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(43, 20, 95, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.8);
  color: var(--dark-purple);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.time-slot input:focus-visible + span,
.time-slot:hover span {
  border-color: rgba(91, 46, 255, 0.34);
  box-shadow: 0 10px 28px rgba(43, 20, 95, 0.1);
  transform: translateY(-1px);
}

.time-slot input:checked + span {
  border-color: var(--purple);
  background: var(--purple);
  color: white;
  box-shadow: 0 14px 32px rgba(91, 46, 255, 0.22);
}

.taster-quiz-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 46, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 232, 0.97), rgba(238, 231, 255, 0.58) 58%, rgba(255, 231, 209, 0.68)),
    var(--cream);
}

.taster-quiz {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(91, 46, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 252, 245, 0.94);
  box-shadow: 0 34px 90px rgba(43, 20, 95, 0.14);
  padding: clamp(28px, 5vw, 64px);
}

.quiz-progress {
  margin-bottom: 30px;
}

.quiz-progress span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.quiz-progress div {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(43, 20, 95, 0.08);
}

.quiz-progress i {
  display: block;
  width: 8.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  transition: width 240ms ease;
}

.quiz-step {
  display: none;
  min-height: 390px;
  animation: quizFade 220ms ease both;
}

.quiz-step.is-active {
  display: grid;
  align-content: center;
}

.quiz-step h1,
.quiz-step h2,
.quiz-step .lead {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.quiz-step h1 {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.95;
}

.quiz-step h2 {
  margin: 16px auto 28px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

.quiz-intro {
  justify-items: center;
}

.quiz-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 720px);
  margin: 0 auto;
}

.option-card {
  position: relative;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
}

.option-card span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(43, 20, 95, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.82);
  color: var(--dark-purple);
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 34px rgba(43, 20, 95, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.option-card:hover span,
.option-card input:focus-visible + span {
  transform: translateY(-2px);
  border-color: rgba(91, 46, 255, 0.32);
  box-shadow: 0 20px 48px rgba(43, 20, 95, 0.12);
}

.option-card input:checked + span {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(91, 46, 255, 0.95), rgba(255, 122, 26, 0.86));
  color: white;
  box-shadow: 0 22px 56px rgba(91, 46, 255, 0.2);
}

.quiz-field {
  width: min(100%, 620px);
  margin: 0 auto;
}

.quiz-step .calendar-ui {
  width: min(100%, 760px);
  margin: 0 auto;
}

.quiz-field label {
  text-align: left;
}

.quiz-field input,
.quiz-field textarea {
  min-height: 58px;
  font-size: 1.05rem;
}

.quiz-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.taster-quiz .form-message {
  min-height: 26px;
  margin: 18px 0 0;
  text-align: center;
}

.taster-quiz.is-intro .quiz-progress,
.taster-quiz.is-intro .quiz-actions {
  display: none;
}

.taster-quiz.is-first-question [data-prev] {
  display: none;
}

.taster-quiz [data-submit],
.taster-quiz.is-final [data-next] {
  display: none;
}

.taster-quiz.is-final [data-submit] {
  display: inline-flex;
}

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

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

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

.bootcamp-prices div {
  border: 1px solid rgba(43, 20, 95, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.88);
  padding: 16px;
}

.bootcamp-prices strong,
.bootcamp-prices span {
  display: block;
}

.bootcamp-prices strong {
  color: var(--dark-purple);
}

.bootcamp-prices span {
  margin-top: 6px;
  color: var(--orange);
  font-weight: 950;
}

.final-cta {
  max-width: 780px;
  text-align: center;
}

.final-cta p {
  color: var(--muted);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px 20px;
}

summary {
  color: var(--dark-purple);
  cursor: pointer;
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #15121a;
  color: #fff8ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer-grid img:not(.footer-logo) {
  width: 182px;
  border-radius: var(--radius);
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 248, 234, 0.74);
}

.footer-grid a {
  display: block;
  margin-top: 9px;
}

.footer-grid h3 {
  color: white;
  font-size: 1rem;
}

.copyright {
  margin-top: 30px;
  color: rgba(255, 248, 234, 0.56);
}

.page-hero {
  padding: 76px 0 46px;
}

.bootcamp-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(238, 231, 255, 0.62) 58%, rgba(255, 231, 209, 0.7)),
    var(--cream);
}

.bootcamp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 26, 0.08), transparent 24%),
    radial-gradient(circle at 88% 4%, rgba(91, 46, 255, 0.08), transparent 26%);
}

.bootcamp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.bootcamp-hero-copy h1 {
  max-width: 840px;
  margin: 18px 0 22px;
  font-size: clamp(3.4rem, 6.3vw, 6.15rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.bootcamp-gradient {
  color: transparent;
  background: linear-gradient(110deg, var(--orange), var(--purple), var(--orange));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: auroraText 7s linear infinite;
}

.bootcamp-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bootcamp-hero .button:focus-visible {
  outline: 3px solid rgba(91, 46, 255, 0.34);
  outline-offset: 4px;
}

.bootcamp-hero .button-secondary:hover {
  border-color: rgba(91, 46, 255, 0.28);
  background: rgba(238, 231, 255, 0.58);
}

.bootcamp-focus-card {
  position: relative;
  overflow: hidden;
  transform: translate(34px, -44px);
  border: 1px solid rgba(91, 46, 255, 0.17);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 28px 70px rgba(43, 20, 95, 0.12);
  padding: 28px;
}

.bootcamp-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(238, 231, 255, 0.48), transparent 42%, rgba(255, 231, 209, 0.58));
}

.bootcamp-focus-card > * {
  position: relative;
  z-index: 1;
}

.bootcamp-focus-card h3 {
  margin: 18px 0 18px;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
}

.bootcamp-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 122, 26, 0.28);
  border-radius: 999px;
  background: rgba(255, 231, 209, 0.72);
  color: var(--dark-purple);
  font-weight: 900;
  padding: 8px 12px;
}

.bootcamp-focus-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bootcamp-focus-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.bootcamp-focus-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: var(--orange);
}

.bootcamp-schedule {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.bootcamp-schedule div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(43, 20, 95, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  padding: 12px 14px;
}

.bootcamp-schedule strong {
  color: var(--dark-purple);
}

.bootcamp-schedule span {
  color: var(--muted);
  text-align: right;
}

.bootcamp-support-strip {
  padding: 0 0 60px;
  background: linear-gradient(180deg, rgba(255, 247, 232, 0.94), rgba(255, 252, 245, 0.95));
}

.bootcamp-support-card {
  min-height: 100%;
  border-color: rgba(91, 46, 255, 0.15);
  background: rgba(255, 252, 245, 0.92);
}

.bootcamp-support-card h3 {
  color: var(--dark-purple);
}

.parent-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(238, 231, 255, 0.58) 56%, rgba(255, 231, 209, 0.64)),
    var(--cream);
}

.parent-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 122, 26, 0.07), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(91, 46, 255, 0.08), transparent 28%);
}

.parent-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 48px;
}

.parent-hero-copy h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(3.35rem, 6vw, 5.95rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.parent-gradient {
  color: transparent;
  background: linear-gradient(110deg, var(--purple), var(--orange), var(--purple));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: auroraText 7s linear infinite;
}

.parent-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.parent-hero .button:focus-visible {
  outline: 3px solid rgba(91, 46, 255, 0.34);
  outline-offset: 4px;
}

.parent-hero .button-secondary:hover {
  border-color: rgba(91, 46, 255, 0.28);
  background: rgba(238, 231, 255, 0.58);
}

.parent-report-preview {
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.96), rgba(238, 231, 255, 0.62)),
    var(--surface);
  box-shadow: 0 28px 70px rgba(43, 20, 95, 0.12);
}

.parent-report-preview header {
  background: rgba(255, 252, 245, 0.7);
}

.parent-report-preview .report-item {
  background: rgba(255, 252, 245, 0.72);
}

.parent-support-strip {
  padding: 0 0 60px;
  background: linear-gradient(180deg, rgba(255, 247, 232, 0.94), rgba(255, 252, 245, 0.95));
}

.parent-support-card {
  min-height: 100%;
  border-color: rgba(91, 46, 255, 0.15);
  background: rgba(255, 252, 245, 0.92);
}

.parent-support-card h3 {
  color: var(--dark-purple);
}

.focus-box {
  border-left: 5px solid var(--orange);
}

@media (max-width: 1000px) {
  .nav-links {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero-grid,
  .bootcamp-hero-grid,
  .parent-hero-grid,
  .taster-layout,
  .hero-stack,
  .lead-panel {
    grid-template-columns: 1fr;
  }

  .bootcamp-hero-grid,
  .parent-hero-grid,
  .taster-layout {
    gap: 30px;
  }

  .taster-copy {
    position: static;
  }

  .bootcamp-focus-card {
    transform: none;
  }

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

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

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

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

  .hero-stack {
    align-items: start;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 680px;
  }

}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-logo {
    height: 52px;
  }

  .brand img:not(.brand-logo) {
    width: 156px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .nav-links a:hover {
    background: var(--lavender);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-image {
    min-height: auto;
    padding-top: 0;
    background-position: 58% center;
  }

  .hero-stack {
    padding-top: 42px;
    padding-bottom: 150px;
  }

  .hero-image h1 {
    font-size: clamp(2.65rem, 12vw, 4.7rem);
  }

  .hero-rating-strip {
    flex-wrap: wrap;
    gap: 6px 10px;
    bottom: 86px;
    width: min(100% - 28px, 360px);
  }

  .rating-stars span {
    width: 19px;
    height: 18px;
  }

  .rating-stars span::before {
    font-size: 0.68rem;
  }

  .hero-scroll-cue {
    bottom: -42px;
    padding: 14px 16px 12px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.7rem);
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .bootcamp-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .parent-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .quiz-step h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .quiz-step h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .bootcamp-note,
  .parent-note {
    font-size: 0.98rem;
  }

  .section-heading {
    display: block;
  }

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

  .grid-2,
  .split-panel,
  .report-body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .badge-grid,
  .grid-4,
  .bootcamp-prices {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .section-actions .button,
  .lead-form .button {
    width: 100%;
  }

  .card,
  .lead-panel,
  .taster-form,
  .bootcamp-focus-card {
    padding: 20px;
  }

  .time-slots {
    grid-template-columns: 1fr;
  }

  .taster-quiz {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .quiz-step {
    min-height: 360px;
  }

  .quiz-actions {
    flex-direction: column-reverse;
  }

  .quiz-actions .button,
  .quiz-intro .button {
    width: 100%;
  }

  .bootcamp-schedule div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .bootcamp-schedule span {
    text-align: left;
  }
}
