:root {
  --navy: #08243c;
  --navy-2: #0d3558;
  --ink: #0b1726;
  --muted: #657080;
  --line: rgba(8, 36, 60, 0.12);
  --gold: #c8a25a;
  --gold-soft: #eadcc2;
  --ivory: #f8f6f0;
  --paper: rgba(255, 255, 255, 0.82);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 90px rgba(8, 36, 60, 0.16);
  --shadow-soft: 0 18px 50px rgba(8, 36, 60, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #f9f7f0 0%, #f1f4f7 46%, #e9eef1 100%);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-bg,
.grain,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}
.grain {
  opacity: 0.16;
  background-image: radial-gradient(rgba(8, 36, 60, 0.10) 0.7px, transparent 0.7px);
  background-size: 17px 17px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.glow { filter: blur(18px); opacity: 0.75; }
.glow-one {
  width: 520px;
  height: 520px;
  left: -190px;
  top: -160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 162, 90, 0.32), transparent 66%);
}
.glow-two {
  width: 620px;
  height: 620px;
  right: -230px;
  top: 20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 36, 60, 0.18), transparent 68%);
}
.glow-three {
  width: 540px;
  height: 540px;
  left: 24%;
  bottom: -280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 62%);
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(var(--max), calc(100% - 28px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 16px 45px rgba(8, 36, 60, 0.08);
  backdrop-filter: blur(22px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,255,255,0.52));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 9px 24px rgba(8,36,60,0.10);
  overflow: hidden;
}
.brand-mark img { width: 34px; height: 34px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  color: var(--navy);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a,
.language-pill {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  background: transparent;
  color: rgba(8, 36, 60, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover,
.language-pill:hover {
  background: rgba(8, 36, 60, 0.07);
  color: var(--navy);
}
.main-nav .nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 12px 26px rgba(8, 36, 60, 0.20);
}
.main-nav .nav-cta:hover { color: white; transform: translateY(-1px); }
.language-pill {
  min-width: 48px;
  border: 1px solid rgba(8, 36, 60, 0.10);
  background: rgba(255,255,255,0.52);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 78px 0 58px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6.1vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1.05;
}
p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.hero-copy p { max-width: 620px; font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 0;
  padding: 14px 22px;
  min-height: 50px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), #0d3d64);
  box-shadow: 0 18px 38px rgba(8, 36, 60, 0.24);
}
.button-secondary,
.button-plan {
  color: var(--navy);
  border: 1px solid rgba(8, 36, 60, 0.12);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 30px rgba(8, 36, 60, 0.08);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.trust-row div {
  min-width: 118px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255,255,255,0.52);
  box-shadow: 0 16px 34px rgba(8, 36, 60, 0.07);
  backdrop-filter: blur(16px);
}
.trust-row strong { display: block; color: var(--navy); font-size: 1.35rem; letter-spacing: -0.03em; }
.trust-row span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.82rem; font-weight: 800; }

.hero-visual { min-width: 0; }
.academy-dashboard {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 52px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.95), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.68), rgba(239,244,246,0.42));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}
.academy-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.9);
  pointer-events: none;
}
.academy-dashboard::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 42px;
  background-image: radial-gradient(rgba(200, 162, 90, .13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.36;
  mask-image: radial-gradient(circle at 60% 46%, black, transparent 52%);
}
.rings {
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  border: 1px solid rgba(8, 36, 60, 0.10);
  z-index: -1;
}
.rings::before,
.rings::after {
  content: "";
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 162, 90, 0.38);
}
.rings::after {
  inset: -48px;
  border-style: solid;
  opacity: 0.42;
}
.music-note {
  position: absolute;
  color: rgba(8, 36, 60, 0.10);
  font-family: Georgia, serif;
  font-size: 5rem;
  user-select: none;
}
.note-a { left: 55px; top: 55px; }
.note-b { right: 70px; bottom: 75px; font-size: 6.4rem; }
.music-lines {
  position: absolute;
  width: 230px;
  height: 90px;
  opacity: 0.28;
  background: repeating-radial-gradient(ellipse at center, transparent 0 13px, rgba(200,162,90,0.55) 14px 15px, transparent 16px 21px);
  mask-image: linear-gradient(90deg, transparent, black, transparent);
}
.lines-a { right: -28px; top: 18px; transform: rotate(-9deg); }
.lines-b { left: -40px; bottom: 16px; transform: rotate(12deg); }
.main-logo-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(76%, 540px);
  min-height: 350px;
  display: grid;
  place-items: center;
  padding: 44px 30px;
  border-radius: 34px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(252,249,241,0.80)),
    radial-gradient(circle at 100% 100%, rgba(200, 162, 90, 0.16), transparent 38%);
  border: 1px solid rgba(200, 162, 90, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    0 28px 70px rgba(8,36,60,0.14),
    0 1px 0 rgba(255,255,255,0.9);
  z-index: 2;
}
.main-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(120deg, rgba(255,255,255,0.0), rgba(255,255,255,0.52), rgba(255,255,255,0.0));
  transform: translateX(-65%);
  opacity: 0.58;
  pointer-events: none;
}
.logo-lockup {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: center;
}
.logo-mark-large {
  width: clamp(140px, 18vw, 210px);
  filter: drop-shadow(0 15px 18px rgba(8, 36, 60, 0.14));
}
.wordmark {
  margin-top: 17px;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: 0.145em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 8px 16px rgba(8,36,60,0.10);
}
.wordmark span { display: inline-block; font-size: clamp(1.55rem, 4.1vw, 3.1rem); }
.wordmark span + span { margin-left: .2em; }
.tagline-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.tagline-line i {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.tagline-line i:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.tagline-line small {
  color: rgba(31, 39, 50, 0.68);
  font-size: clamp(.75rem, 1.8vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 26px;
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}
.next-class-card {
  top: 58px;
  right: 52px;
  padding: 20px 24px 20px 20px;
  min-width: 330px;
}
.progress-card {
  bottom: 70px;
  left: 45px;
  padding: 20px 22px;
  min-width: 350px;
}
.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.floating-card strong {
  display: block;
  margin: 6px 0 3px;
  color: var(--navy);
  font-size: 1.35rem;
}
.floating-card small { color: var(--muted); font-size: 1.02rem; }
.floating-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255,255,255,0.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 22px rgba(8, 36, 60, 0.06);
}
.floating-icon svg { width: 28px; height: 28px; }
.progress-content { flex: 1; min-width: 0; }
.progress-bar {
  height: 10px;
  width: 100%;
  margin: 14px 0 13px;
  border-radius: 999px;
  background: rgba(8, 36, 60, 0.11);
  overflow: hidden;
}
.progress-bar b {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 120px;
}
.mini-card,
.timeline-card,
.price-card,
.custom-plan,
.platform-card,
.privacy-item,
.who-card,
.policy-card,
.booking-form,
.faq-list {
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.60);
  box-shadow: 0 20px 58px rgba(8, 36, 60, 0.08);
  backdrop-filter: blur(18px);
}
.mini-card {
  padding: 28px;
  border-radius: 28px;
}
.mini-card span {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mini-card strong {
  display: block;
  margin: 9px 0;
  color: var(--navy);
  font-size: 1.55rem;
  font-family: Georgia, serif;
}
.mini-card p { margin-bottom: 0; font-size: .98rem; }

.split-section,
.platform-section,
.book-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 130px;
}
.section-copy p { max-width: 680px; }
.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 18px;
  color: #435065;
  background: rgba(255,255,255,.44);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 15px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  font-size: .75rem;
  font-weight: 900;
}
.timeline-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}
.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(8,36,60,.06);
  font-weight: 950;
}
.timeline-item strong { color: var(--navy); font-size: 1.1rem; }
.timeline-item p { margin: 5px 0 0; font-size: .95rem; }

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-heading .eyebrow { justify-content: center; }
.section-heading .eyebrow::after {
  content: "";
  width: 31px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.plans-section { margin-bottom: 130px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(200,162,90,.12), transparent 32%);
  pointer-events: none;
}
.price-card.featured {
  border-color: rgba(200,162,90,.50);
  transform: translateY(-14px);
  background: linear-gradient(150deg, rgba(255,255,255,.74), rgba(255,250,238,.68));
  box-shadow: 0 32px 88px rgba(8, 36, 60, .14);
}
.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-top span {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
}
.plan-top h3 { margin: 10px 0 10px; }
.plan-top p { min-height: 60px; font-size: .96rem; }
.price {
  margin: 16px 0 20px;
  color: var(--navy);
  font-size: 4rem;
  line-height: .9;
  letter-spacing: -0.06em;
  font-weight: 950;
}
.price span { font-size: 1.35rem; vertical-align: super; margin-right: 3px; }
.price small {
  color: var(--muted);
  font-size: .95rem;
  letter-spacing: 0;
  font-weight: 900;
}
.price-card ul {
  flex: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.price-card li {
  position: relative;
  padding-left: 22px;
  color: #435065;
  line-height: 1.45;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.custom-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(8,36,60,.92), rgba(13,53,88,.82));
  overflow: hidden;
}
.custom-plan h3,
.custom-plan p { color: white; }
.custom-plan p { margin: 0; max-width: 720px; color: rgba(255,255,255,.74); }
.custom-plan .button { flex: 0 0 auto; }

.platform-section { grid-template-columns: .95fr 1.05fr; }
.platform-card {
  padding: 42px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.62);
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.privacy-item,
.policy-card,
.who-card {
  padding: 24px;
  border-radius: 24px;
}
.privacy-item span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(8,36,60,.06);
  font-size: .82rem;
  font-weight: 950;
}
.privacy-item strong,
.policy-card strong,
.who-card strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}
.privacy-item p,
.policy-card p,
.who-card p { margin: 0; font-size: .95rem; }

.who-section,
.policies-section { margin-bottom: 130px; }
.who-grid,
.policies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.policy-card { min-height: 190px; }

.book-section {
  align-items: stretch;
  padding: 42px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(8,36,60,.93), rgba(12,50,82,.86));
  box-shadow: 0 34px 98px rgba(8, 36, 60, .18);
  overflow: hidden;
}
.book-copy h2,
.book-copy p { color: white; }
.book-copy p { color: rgba(255,255,255,.72); }
.book-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.book-mini span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  font-weight: 850;
  font-size: .9rem;
}
.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.90);
}
.booking-form label { display: grid; gap: 8px; }
.booking-form label span {
  color: var(--navy);
  font-weight: 900;
  font-size: .9rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(8, 36, 60, 0.12);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(200,162,90,.82);
  box-shadow: 0 0 0 4px rgba(200,162,90,.13);
}
textarea { resize: vertical; }
.form-note { margin: 0; font-size: .82rem; line-height: 1.45; }

.faq-section { margin-bottom: 100px; }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 14px;
  border-radius: var(--radius-xl);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 0 8px;
}
details:last-child { border-bottom: 0; }
summary {
  cursor: pointer;
  padding: 22px 8px;
  color: var(--navy);
  font-weight: 950;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--gold); font-size: 1.4rem; line-height: .7; }
details[open] summary::after { content: "–"; }
details p { margin: -6px 8px 22px; font-size: .98rem; }

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; }
.footer-brand strong { display: block; color: var(--navy); }
.footer-brand span { display: block; color: var(--muted); font-size: .92rem; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-weight: 800; }
.footer-links a:hover { color: var(--navy); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .78s ease forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1050px) {
  .hero,
  .split-section,
  .platform-section,
  .book-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 60px; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .who-grid, .policies-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { top: 10px; border-radius: 26px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 84px 14px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-open .main-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a, .language-pill { width: 100%; text-align: center; justify-content: center; }
  .academy-dashboard { min-height: 520px; border-radius: 40px; }
  .main-logo-card { width: 78%; min-height: 300px; border-radius: 30px; }
  .next-class-card, .progress-card { min-width: 0; width: 75%; }
  .next-class-card { top: 30px; right: 25px; }
  .progress-card { bottom: 34px; left: 25px; }
  .feature-strip { grid-template-columns: 1fr; margin-bottom: 90px; }
  .section-shell { width: min(var(--max), calc(100% - 28px)); }
}

@media (max-width: 640px) {
  .brand-text small { display: none; }
  .brand-text strong { font-size: .92rem; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { padding-top: 46px; gap: 34px; }
  h1 { font-size: clamp(2.65rem, 16vw, 4.1rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions .button { width: 100%; }
  .academy-dashboard { min-height: 470px; }
  .main-logo-card { width: 82%; min-height: 270px; padding: 34px 18px; }
  .logo-mark-large { width: 128px; }
  .wordmark span { font-size: 1.55rem; }
  .wordmark span + span { margin-left: 0; }
  .tagline-line { gap: 8px; }
  .tagline-line i { width: 28px; }
  .tagline-line small { font-size: .64rem; letter-spacing: .08em; }
  .floating-card { gap: 12px; border-radius: 22px; }
  .floating-icon { width: 44px; height: 44px; }
  .floating-icon svg { width: 22px; height: 22px; }
  .next-class-card { padding: 14px; width: 78%; }
  .progress-card { padding: 14px; width: 82%; }
  .floating-card strong { font-size: 1.03rem; }
  .floating-card small { font-size: .86rem; }
  .floating-card span { font-size: .65rem; }
  .split-section, .platform-section, .book-section { margin-bottom: 90px; }
  .book-section { padding: 24px; border-radius: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .privacy-grid, .who-grid, .policies-grid { grid-template-columns: 1fr; }
  .custom-plan { display: grid; padding: 26px; }
  .custom-plan .button { width: 100%; }
  .site-footer { display: grid; justify-items: center; text-align: center; }
}

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