@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-display: swap
}
@font-face {
  font-family: "Caveat";
  src: url(../fonts/Caveat-VariableFont_wght.ttf);
  font-display: swap
}

:root {
  --color-bg: #F6F7FF;
  --color-surface: #FFFFFF;
  --color-text: #0F2747;
  --color-text-muted: #5E6B7C;
  --color-primary: #FF6868;
  --color-accent: #A855F7;
  --color-soft: #FFE3EA;
  --color-soft-violet: #F1E7FF;
  --color-line: rgba(15, 39, 71, .12);
  --color-dark-surface: #0F2747;
  --color-success: #2E7D62;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 96px;
  --text-display: clamp(2.25rem, 5vw, 4rem);
  --text-h1: clamp(2.25rem, 5vw, 4rem);
  --text-h2: clamp(2rem, 4vw, 3.15rem);
  --text-h3: clamp(1.25rem, 2vw, 1.65rem);
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --shadow-sm: 0 14px 32px rgba(15, 39, 71, .09);
  --shadow-lg: 0 28px 80px rgba(15, 39, 71, .16);
  --header-h: 76px;
  --container: 1220px;
  --transition: .24s ease;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::selection {
  background: var(--color-soft);
  color: var(--color-text);
}
img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(246, 247, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 39, 71, .08);
}
.header-inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--color-soft);
}
.brand-name {
  font-size: 1.05rem;
}
.promo-disclosure {
  justify-self: end;
  margin-left: 4px;
  padding: 6px 10px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--color-surface);
}

.main-shell {
  padding-top: var(--header-h);
}
.section {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: calc(100svh - var(--header-h));
  overflow: clip;
  scroll-margin-top: var(--header-h);
}
.section-viewport {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  overflow: visible;
}
.section-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: auto;
  padding: var(--space-7) 0;
  position: relative;
  z-index: 2;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-3);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.section-eyebrow::before {
  content: '1·2·3·4';
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  letter-spacing: .05em;
  color: var(--color-primary);
  transform: rotate(-5deg);
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.045em;
}
h1 {
  font-size: var(--text-display);
}
h2 {
  font-size: var(--text-h2);
  max-width: 850px;
}
h3 {
  font-size: var(--text-h3);
}
p {
  margin: 0;
}
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--color-text-muted);
  max-width: 720px;
  line-height: 1.7;
}
.copy {
  color: var(--color-text-muted);
}
.script-note {
  font-family: 'Caveat', cursive;
  color: var(--color-primary);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 12px 30px rgba(255, 104, 104, .28);
}
.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(255, 104, 104, .36);
}
.btn-secondary {
  background: var(--color-surface);
  border-color: var(--color-line);
  color: var(--color-text);
}
.btn-secondary:hover {
  background: var(--color-soft);
}
.btn-dark {
  color: #fff;
  background: var(--color-text);
}

.hero {
  background: var(--color-bg);
}
.hero::before {
  content: '';
  position: absolute;
  width: 36vw;
  height: 36vw;
  min-width: 360px;
  min-height: 360px;
  right: -9vw;
  top: -14vw;
  border-radius: 45% 55% 50% 50%;
  background: var(--color-soft);
  transform: rotate(18deg);
}
.hero::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  left: 46%;
  bottom: -110px;
  border-radius: 50%;
  border: 54px solid rgba(168, 85, 247, .13);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-copy {
  position: relative;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-soft-violet);
  color: var(--color-accent);
  font-weight: 800;
  font-size: .78rem;
  margin-bottom: var(--space-4);
}
.hero h1 span {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  height: 12px;
  background: rgba(168, 85, 247, .18);
  left: -4px;
  right: -4px;
  bottom: 8px;
  z-index: -1;
  transform: rotate(-1deg);
}
.hero .lead {
  margin-top: var(--space-4);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-5);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: .88rem;
  font-weight: 600;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-visual {
  position: relative;
  min-height: 510px;
}
.hero-image {
  position: absolute;
  inset: 0 48px 34px 0;
  border-radius: 46% 54% 42% 58% / 45% 48% 52% 55%;
  overflow: hidden;
  background: var(--color-soft);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.hero-image img,
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(300px, 70%);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 39, 71, .08);
}
.hero-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.hero-card small {
  color: var(--color-text-muted);
}
.beat-track {
  position: absolute;
  left: -32px;
  top: 54%;
  display: grid;
  grid-template-columns: repeat(4, 38px);
  gap: 7px;
  transform: rotate(-7deg);
}
.beat-track span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-text);
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--color-primary);
  animation: beatPulse 2s infinite ease-in-out;
}
.beat-track span:nth-child(2) {
  animation-delay: .18s;
}
.beat-track span:nth-child(3) {
  animation-delay: .36s;
}
.beat-track span:nth-child(4) {
  animation-delay: .54s;
}
@keyframes beatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fit {
  background: var(--color-surface);
}
.fit-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: var(--space-6);
  align-items: start;
}
.fit-intro {
  position: sticky;
  top: var(--space-4);
}
.fit-intro .lead {
  margin-top: var(--space-4);
}
.fit-bento {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, minmax(170px, auto));
  gap: 16px;
}
.fit-card {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.fit-card.large {
  grid-row: span 2;
  background: var(--color-soft);
}
.fit-card.violet {
  background: var(--color-soft-violet);
}
.fit-card .icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}
.fit-card.large .icon {
  color: var(--color-primary);
}
.fit-card p {
  color: var(--color-text-muted);
  margin-top: 12px;
}
.fit-card::after {
  content: '1·2·3·4';
  position: absolute;
  right: -14px;
  bottom: -9px;
  font-family: 'Caveat', cursive;
  font-size: 2.1rem;
  color: rgba(15, 39, 71, .12);
  transform: rotate(-9deg);
}

.program {
  background: var(--color-text);
  color: #fff;
}
.program .section-eyebrow {
  color: #DDB7FF;
}
.program .section-eyebrow::before {
  color: #FF9B9B;
}
.program-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.program-head p {
  max-width: 460px;
  color: rgba(255, 255, 255, .68);
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.module {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06);
  position: relative;
  transition: transform var(--transition), background var(--transition);
}
.module:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .1);
}
.module-no {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: #FF9B9B;
}
.module h3 {
  margin-top: 14px;
}
.module p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
}
.module:nth-child(2),
.module:nth-child(5) {
  transform: translateY(14px);
}
.module:nth-child(2):hover,
.module:nth-child(5):hover {
  transform: translateY(10px);
}

.format {
  background: linear-gradient(125deg, #F6F7FF 0 70%, #FFE3EA 70%);
}
.format-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.format-media {
  position: relative;
}
.media {
  overflow: hidden;
  background: var(--color-soft);
}
.format-media .media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
}
.format-badge {
  position: absolute;
  right: -18px;
  top: 28px;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  transform: rotate(4deg);
  box-shadow: var(--shadow-sm);
}
.format-list {
  display: grid;
  gap: 12px;
  margin-top: var(--space-5);
}
.format-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--color-line);
}
.format-item .num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--color-soft-violet);
  color: var(--color-accent);
  font-weight: 800;
}
.format-item p {
  color: var(--color-text-muted);
  font-size: .92rem;
  margin-top: 3px;
}
.levels {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.level {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}
.level strong {
  display: block;
}
.level small {
  color: var(--color-text-muted);
}

.teacher {
  background: var(--color-surface);
}
.teacher-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.teacher-photo {
  aspect-ratio: 4/5;
  border-radius: 44px 44px 140px 44px;
  box-shadow: var(--shadow-lg);
}
.teacher-copy .lead {
  margin-top: var(--space-4);
}
.teacher-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: var(--space-5);
}
.teacher-fact {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
}
.teacher-fact strong {
  display: block;
  font-size: 1.35rem;
}
.teacher-fact small {
  color: var(--color-text-muted);
}
.teacher-philosophy {
  margin-top: var(--space-5);
  padding: 20px 24px;
  border-left: 4px solid var(--color-primary);
  background: var(--color-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.examples {
  background: var(--color-bg);
}
.examples-head {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-5);
}
.examples-head .lead {
  justify-self: end;
}
.story-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background: var(--color-soft-violet);
}
.story-strip .script-note {
  color: var(--color-accent);
  white-space: nowrap;
}
.story-strip p {
  color: var(--color-text-muted);
}

.pricing {
  background: var(--color-surface);
}
.pricing-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-5);
}
.pricing-head .section-eyebrow {
  justify-content: center;
}
.pricing-head .lead {
  margin: 18px auto 0;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-10px) rotate(-.6deg);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.price-card.featured::before {
  content: '1 · 2 · 3 · 4';
  position: absolute;
  top: 13px;
  right: -16px;
  padding: 5px 18px;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  transform: rotate(8deg);
}
.price-card.featured:hover {
  transform: translateY(-14px) rotate(0);
}
.price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.05em;
  margin: 18px 0;
}
.price-card small {
  color: var(--color-text-muted);
}
.price-card.featured small {
  color: rgba(255, 255, 255, .65);
}
.price-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
}
.price-list span {
  display: flex;
  gap: 9px;
  align-items: start;
  font-size: .9rem;
}
.price-list i {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-top: 2px;
}
.price-card .btn {
  margin-top: auto;
}
.video-correction {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
}
.video-correction i {
  font-size: 1.8rem;
  color: var(--color-primary);
}
.video-correction p {
  color: var(--color-text-muted);
  font-size: .92rem;
}

.faq {
  background: var(--color-soft-violet);
}
.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 20px;
}
.faq-intro .lead {
  margin-top: var(--space-4);
}
.accordion {
  border-top: 1px solid rgba(15, 39, 71, .18);
}
.faq-item {
  border-bottom: 1px solid rgba(15, 39, 71, .18);
}
.faq-question {
  width: 100%;
  min-height: 66px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-weight: 800;
  padding: 18px 0;
}
.faq-question i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  transition: transform var(--transition);
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-answer>div {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 0 20px;
  color: var(--color-text-muted);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.trial {
  background: var(--color-text);
  color: #fff;
}
.trial-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.trial-copy .section-eyebrow {
  color: #DDB7FF;
}
.trial-copy .section-eyebrow::before {
  color: #FF9B9B;
}
.trial-copy .lead {
  color: rgba(255, 255, 255, .7);
  margin-top: var(--space-4);
}
.trial-points {
  display: grid;
  gap: 12px;
  margin-top: var(--space-5);
}
.trial-points span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .85);
}
.trial-points i {
  color: #FF9B9B;
  font-size: 1.2rem;
}
.form-card {
  background: var(--color-surface);
  color: var(--color-text);
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}
.form-card h3 {
  margin-bottom: 8px;
}
.form-card>p {
  color: var(--color-text-muted);
  margin-bottom: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: .78rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--color-text);
  outline: none;
  transition: border var(--transition), box-shadow var(--transition);
}
.field textarea {
  min-height: 92px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, .12);
}
.consent-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: .78rem;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-primary);
}
.consent-row a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-card .btn {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  background: #091A31;
  color: #fff;
  padding: 42px 0 28px;
}
.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 36px;
}
.footer-brand .brand {
  margin-bottom: 14px;
}
.footer-brand p {
  color: rgba(255, 255, 255, .62);
  max-width: 460px;
  font-size: .86rem;
}
.footer-title {
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-links {
  display: grid;
  gap: 7px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .68);
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
  display: grid;
  gap: 6px;
}
.footer-disclaimer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  font-size: .75rem;
  line-height: 1.65;
}
.footer-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .45);
  font-size: .72rem;
}
.cookie-settings-link {
  border: 0;
  padding: 0;
  background: none;
  color: rgba(255, 255, 255, .62);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: left;
}

.cookie-banner {
  position: fixed;
  z-index: 1500;
  left: 18px;
  right: 18px;
  bottom: 4px;
  max-width: 850px;
  margin: 0 auto;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  border: 1px solid rgba(15, 39, 71, .12);
  box-shadow: 0 24px 70px rgba(15, 39, 71, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition:
    bottom .28s cubic-bezier(.2, .8, .2, 1),
    opacity .22s ease,
    visibility 0s linear .28s;
}

.cookie-banner.show {
  bottom: 18px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: none;
  transform: none;
  transition:
    bottom .28s cubic-bezier(.2, .8, .2, 1),
    opacity .22s ease,
    visibility 0s;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 5px;
}

.cookie-copy p {
  color: var(--color-text-muted);
  font-size: .8rem;
  line-height: 1.5;
}

.cookie-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 10px 15px;
  font-size: .8rem;
}

.cookie-actions .btn-secondary {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.cookie-actions .btn-secondary:hover {
  background: #17385f;
}

.section-dots {
  position: fixed;
  z-index: 900;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 8px 5px;
  border: 1px solid rgba(15, 39, 71, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(15, 39, 71, .09);
  backdrop-filter: blur(16px);
}
.section-dots::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(var(--color-primary), rgba(168, 85, 247, .22));
  z-index: -1;
}
.section-dots button {
  position: relative;
  width: 28px;
  min-height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  color: var(--color-text-muted);
  background: rgba(246, 247, 255, .96);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.section-dots button span {
  width: auto;
  font-size: .57rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.section-dots button em {
  position: absolute;
  right: calc(100% + 9px);
  top: 50%;
  transform: translate(6px, -50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--color-text);
  color: #fff;
  box-shadow: var(--shadow-sm);
  font-style: normal;
  font-size: .64rem;
  font-weight: 800;
  transition: opacity .18s ease, transform .22s ease;
}
.section-dots button:hover {
  color: var(--color-text);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.section-dots button.active {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 18px rgba(255, 104, 104, .22);
}
.section-dots button:hover em,
.section-dots button:focus-visible em {
  opacity: 1;
  transform: translate(0, -50%);
}

.legal-main,
.thanks-main {
  padding: calc(var(--header-h) + 60px) 0 80px;
  min-height: 100vh;
}
.legal-wrap,
.thanks-wrap {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
}
.legal-hero,
.thanks-hero {
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-xl);
  background: var(--color-soft-violet);
  margin-bottom: 34px;
  position: relative;
  overflow: hidden;
}
.legal-hero::after,
.thanks-hero::after {
  content: '1·2·3·4';
  position: absolute;
  right: 24px;
  bottom: 6px;
  font-family: 'Caveat', cursive;
  font-size: 3rem;
  color: rgba(168, 85, 247, .2);
  transform: rotate(-8deg);
}
.legal-hero h1,
.thanks-hero h1 {
  font-size: var(--text-h1);
}
.legal-hero p,
.thanks-hero p {
  margin-top: 16px;
  color: var(--color-text-muted);
  max-width: 700px;
}
.legal-content {
  background: #fff;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
}
.legal-content h2 {
  font-size: 1.55rem;
  margin: 34px 0 14px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.legal-content strong {
  color: var(--color-text);
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.thanks-step {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-line);
}
.thanks-step .num {
  font-family: 'Caveat', cursive;
  color: var(--color-primary);
  font-size: 2rem;
}
.thanks-step p {
  color: var(--color-text-muted);
  margin-top: 10px;
}
.thanks-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-text);
  color: #fff;
}
.thanks-panel p {
  color: rgba(255, 255, 255, .7);
  margin-top: 12px;
}
.thanks-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 901px) {
  html.section-scroll {
    scroll-snap-type: y proximity;
    scroll-padding-top: var(--header-h);
  }
  html.section-scroll .section {
    min-height: calc(100svh - var(--header-h));
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
  html.section-scroll .section-viewport {
    min-height: calc(100svh - var(--header-h));
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 1120px) {
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .module:nth-child(2),
  .module:nth-child(5) {
    transform: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }
  .header-inner {
    grid-template-columns: auto 1fr;
  }
  .section-dots {
    right: 6px;
    width: 34px;
    gap: 2px;
    padding: 6px 4px;
  }
  .section-dots button {
    width: 24px;
    min-height: 24px;
  }
  .section-dots button span {
    font-size: .5rem;
  }
  .section-dots button em {
    display: none;
  }
  .hero-grid,
  .fit-grid,
  .format-layout,
  .teacher-grid,
  .examples-head,
  .faq-layout,
  .trial-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 440px;
  }
  .hero-image {
    inset: 0 36px 26px 0;
  }
  .fit-intro,
  .faq-intro {
    position: static;
  }
  .teacher-grid {
    grid-template-columns: .8fr 1.2fr;
  }
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-5px);
  }
  .price-card:last-child {
    grid-column: 1 / -1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  html {
    scroll-behavior: smooth;
    scroll-snap-type: none !important;
    scrollbar-gutter: auto;
  }
  .section {
    min-height: auto;
    overflow: visible;
  }
  .section-viewport {
    overflow: visible;
  }
  .section-inner {
    width: min(calc(100% - 28px), var(--container));
    padding: 64px 0;
  }
  .hero .section-inner {
    padding-top: 46px;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }
  .hero-grid {
    gap: 34px;
  }
  .hero-visual {
    min-height: 400px;
  }
  .hero-card {
    right: 6px;
  }
  .beat-track {
    left: 4px;
    top: 56%;
    grid-template-columns: repeat(4, 32px);
  }
  .beat-track span {
    width: 32px;
    height: 32px;
  }
  .fit-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .fit-card.large {
    grid-row: auto;
  }
  .program-head {
    display: grid;
  }
  .module-grid {
    grid-template-columns: 1fr;
  }
  .format {
    background: var(--color-bg);
  }
  .levels {
    grid-template-columns: 1fr;
  }
  .teacher-grid {
    grid-template-columns: 1fr;
  }
  .teacher-photo {
    max-height: 540px;
  }
  .teacher-facts {
    grid-template-columns: 1fr;
  }
  .examples-head .lead {
    justify-self: start;
  }
  .story-strip {
    grid-template-columns: 1fr;
  }
  .story-strip .script-note {
    white-space: normal;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card:last-child {
    grid-column: auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full,
  .consent-row {
    grid-column: auto;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    display: grid;
  }
    .cookie-banner {
      left: 10px;
      right: 10px;
      padding: 16px;
    }
  
    .cookie-banner.show {
      bottom: 10px;
    }
  
    .cookie-row {
      grid-template-columns: 1fr;
    }
  
    .cookie-actions {
      display: grid;
      grid-template-columns: 1fr;
    }
  .thanks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .header-inner {
    width: min(calc(100% - 20px), var(--container));
    gap: 8px;
  }
  .brand-name {
    display: none;
  }
  .promo-disclosure {
    margin-left: 0;
  }
  .hero-visual {
    min-height: 345px;
  }
  .hero-image {
    right: 18px;
  }
  .hero-meta {
    display: grid;
    gap: 8px;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }
  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
.cookie-actions .btn-secondary {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.cookie-actions .btn-secondary:hover {
  background: #17385f;
}

.page-progress {
  --page-progress: 0;
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto 0;
  height: 3px;
  pointer-events: none;
  background: rgba(15, 39, 71, .06);
}
.page-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
  transition: transform .08s linear;
}
.section-viewport::after {
  content: '1 · 2 · 3 · 4';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg) scale(.96);
  writing-mode: vertical-rl;
  color: var(--color-primary);
  font-family: 'Caveat', cursive;
  font-size: 1.18rem;
  letter-spacing: .08em;
  opacity: 0;
  transition: opacity .36s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}
.section.is-current .section-viewport::after {
  opacity: .7;
  transform: translateY(-50%) rotate(180deg) scale(1);
}

@media (min-width: 901px) {
  .section .section-inner {
    transition: opacity .55s ease, transform .7s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
  }
  .section:not(.is-current) .section-inner {
    opacity: .68;
    transform: scale(.985);
    filter: saturate(.82);
  }
  .section.is-current .section-inner {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
  }
}

@media (prefers-reduced-motion: reduce) {}

.program-scene {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  align-items: stretch;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
}
.program-scene-media {
  min-height: 220px;
}
.program-scene-copy {
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-scene-copy .script-note {
  color: #FF9B9B;
}
.program-scene-copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  max-width: 470px;
}

.lesson-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: lesson;
}
.lesson-flow::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: .28;
}
.lesson-step {
  position: relative;
  min-height: 285px;
  padding: 24px 22px 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lesson-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(168, 85, 247, .28);
}
.lesson-step:nth-child(2),
.lesson-step:nth-child(4) {
  margin-top: 28px;
}
.lesson-step-no {
  position: absolute;
  right: 18px;
  top: 12px;
  font-family: 'Caveat', cursive;
  font-size: 2.25rem;
  color: rgba(168, 85, 247, .22);
}
.lesson-step-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: var(--color-soft-violet);
  color: var(--color-accent);
  font-size: 1.65rem;
  box-shadow: 0 10px 28px rgba(168, 85, 247, .12);
}
.lesson-step:nth-child(even) .lesson-step-icon {
  background: var(--color-soft);
  color: var(--color-primary);
}
.lesson-step h3 {
  margin-top: 24px;
  font-size: 1.08rem;
}
.lesson-step p {
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: .9rem;
}
.lesson-step-tag {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: .72rem;
  font-weight: 800;
}
.home-practice {
  margin-top: 32px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-soft-violet), #fff 64%);
  border: 1px solid rgba(168, 85, 247, .12);
}
.home-practice-copy h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}
.home-practice-copy p {
  margin-top: 14px;
  color: var(--color-text-muted);
}
.home-practice-gallery {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
  align-items: end;
}
.home-shot {
  aspect-ratio: 4/5;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.home-shot.offset {
  aspect-ratio: 1/1.05;
  transform: translateY(22px) rotate(1.5deg);
  border-radius: 24px 54px 24px 24px;
}
.trial-photo {
  margin-top: 26px;
  width: min(100%, 430px);
  aspect-ratio: 16/8.5;
  border-radius: 26px 70px 26px 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

@media (max-width: 1120px) {
  .lesson-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .lesson-flow::before {
    display: none;
  }
  .lesson-step:nth-child(2),
  .lesson-step:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .program-scene,
  .home-practice {
    grid-template-columns: 1fr;
  }
  .program-scene-media {
    aspect-ratio: 16/8;
    min-height: 0;
  }
  .home-practice-gallery {
    max-width: 680px;
  }
  .trial-photo {
    display: none;
  }
}

@media (max-width: 640px) {
  .lesson-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lesson-step {
    min-height: 0;
    padding: 20px;
  }
  .lesson-step h3 {
    margin-top: 18px;
  }
  .home-practice {
    padding: 22px;
  }
  .home-practice-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .home-shot,
  .home-shot.offset {
    border-radius: 20px;
    transform: none;
  }
  .story-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-card {
    display: none;
  }
}