:root {
  --ink: #11162a;
  --ink-soft: #273044;
  --surface: #fbfafc;
  --white: #ffffff;
  --blue: #4c72fc;
  --action-gradient: linear-gradient(105deg, #3159d8 0%, #7041c7 62%, #a9378e 100%);
  --violet: #915df1;
  --pink: #e06dc7;
  --cyan: #55d8e7;
  --line: rgba(17, 22, 42, 0.12);
  --muted: #667085;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 24px 80px rgba(28, 38, 75, 0.12);
  --container: 1220px;
}

/* Hidden states must override component display modes, including flex and grid. */
[hidden] { display: none !important; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #3154c8;
  outline-offset: 4px;
}
.hero a:focus-visible, .site-header a:focus-visible,
.site-header button:focus-visible, .offer-section a:focus-visible,
.site-footer a:focus-visible { outline-color: #c5d4ff; }

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  background: rgba(12, 18, 42, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(76, 114, 252, 0.3));
}

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

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 14px;
  color: #3154c8;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #b9c7ff;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid #cbd4ff;
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--action-gradient);
  box-shadow: 0 14px 32px rgba(76, 114, 252, 0.3);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(76, 114, 252, 0.42);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(4, 8, 27, 0.2);
}

.full-width {
  width: 100%;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 700;
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.live-tag i {
  width: 7px;
  height: 7px;
  background: #55e4b3;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 228, 179, 0.12);
}

.method-orbit {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 28px auto 22px;
}

.orbit-ring {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.ring-two {
  inset: 29%;
  border-color: rgba(255, 255, 255, 0.25);
}

.orbit-core {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
}

.orbit-core img {
  display: block;
  width: 130%;
  max-width: none;
  height: 130%;
  object-fit: contain;
  transform: translateY(-11%);
  filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(5, 9, 28, 0.38));
}

.orbit-item {
  position: absolute;
  padding: 7px 12px;
  color: #e8ebff;
  background: rgba(8, 13, 35, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(4, 8, 27, 0.24);
  font-size: 0.875rem;
  font-weight: 780;
  line-height: 1.2;
}

.item-one {
  left: 50%;
  top: 8%;
  background: #315df5;
  border-color: rgba(171, 193, 255, 0.55);
  transform: translateX(-50%);
}

.item-two {
  right: 0;
  top: 50%;
  background: #7650d9;
  border-color: rgba(211, 193, 255, 0.5);
  transform: translateY(-50%);
}

.item-three {
  bottom: 8%;
  left: 50%;
  background: #b744a2;
  border-color: rgba(255, 193, 241, 0.5);
  transform: translateX(-50%);
}

.item-four {
  left: 0;
  top: 50%;
  color: #081326;
  background: #55d8e7;
  border-color: rgba(205, 249, 255, 0.68);
  transform: translateY(-50%);
}

.section {
  padding: 96px 0;
}

.section h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-intro {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.insight-card {
  min-height: 235px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-index {
  display: inline-flex;
  margin-bottom: 30px;
  color: #3154c8;
  font-size: 0.875rem;
  font-weight: 800;
}

.insight-card h3,
.method-step h3,
.audience-card h3,
.teacher-card h3,
.checkout-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.insight-card p,
.audience-card p,
.method-step p,
.teacher-card p,
.checkout-card p {
  color: var(--muted);
}

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

.outcome-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.section-kicker.light {
  color: #bdc9ff;
}

.outcome-copy p:last-child {
  max-width: 530px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.outcome-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.outcome-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 22px 0;
  color: #f0f2ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 17px;
}

.outcome-list span {
  color: #91a6ff;
  font-size: 0.875rem;
  font-weight: 800;
}

.centered-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.centered-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  min-height: 260px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.audience-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -100px;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.18;
}

.lawyers-card::after { background: var(--blue); }

.public-card::after { background: var(--violet); }

.audience-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: var(--action-gradient);
  border-radius: 20px;
  font-size: 23px;
  font-weight: 850;
}

.audience-card p:last-child {
  max-width: 520px;
  font-size: 17px;
}

.compact-audience-grid {
  margin-top: 20px;
}

.compact-audience-grid .audience-card {
  min-height: 220px;
  padding: 28px;
}

.method-section {
  background: #f3f5fb;
}

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

.method-step {
  min-height: 305px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.featured-step {
  color: var(--white);
  background: linear-gradient(145deg, #192249, #27356e);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(32, 44, 96, 0.2);
  transform: translateY(-12px);
}

.featured-step p {
  color: rgba(255, 255, 255, 0.68);
}

.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  color: #3154c8;
  background: #eef2ff;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 850;
}

.featured-step .step-number {
  color: var(--white);
  background: var(--action-gradient);
}

.format-section {
  padding-top: 0;
  background: #f3f5fb;
}

.platform-inline-heading {
  margin-top: 72px;
}

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

.format-card,
.included-card {
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-lg);
}

.format-card {
  color: var(--white);
  background: linear-gradient(145deg, #11162a, #202b5d);
}

.included-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.format-card h2,
.included-card h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.format-details {
  margin: 40px 0 0;
}

.format-details > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.format-details dt {
  color: rgba(255, 255, 255, 0.58);
}

.format-details dd {
  margin: 0;
  font-weight: 720;
  text-align: right;
}

.format-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.included-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 620;
}

.included-list span {
  color: #3154c8;
  font-weight: 900;
}

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

.platform-heading {
  margin-bottom: 34px;
}

.platform-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.platform-frame {
  margin: 0;
  overflow: hidden;
  background: #0b0f19;
  border: 1px solid rgba(17, 22, 42, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 60px rgba(17, 22, 42, 0.1);
}

.platform-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: cover;
}

.platform-lessons img {
  object-position: center;
}

.platform-library img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.platform-frame figcaption {
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

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

.cohort-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cohort-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 30px;
  background: #f7f9ff;
  border: 1px solid rgba(76, 114, 252, 0.2);
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cohort-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(34, 47, 93, 0.11);
}

.cohort-card.is-preferred,
.checkout-card.is-preferred {
  border: 2px solid var(--blue);
  box-shadow: 0 22px 60px rgba(76, 114, 252, 0.2);
}

.public-cohort {
  background: linear-gradient(155deg, #f9f8ff, #f3f6ff);
  border-color: rgba(145, 93, 241, 0.24);
}

.cohort-topline {
  display: flex;
  min-height: 54px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: #3154c8;
  font-size: 0.875rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cohort-topline span:last-child {
  color: var(--muted);
  text-align: right;
}

.cohort-card h3 {
  margin: 14px 0 4px;
  font-size: 27px;
  line-height: 1.18;
}

.cohort-teacher {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.date-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid var(--line);
}

.date-list li {
  padding: 18px 8px;
  text-align: center;
}

.date-list li + li {
  border-left: 1px solid var(--line);
}

.date-list strong,
.date-list span {
  display: block;
}

.date-list strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.date-list span {
  color: var(--muted);
  font-size: 0.875rem;
}

.cohort-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1;
  align-content: start;
  gap: 7px 14px;
  padding: 18px 0 24px;
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 700;
}

.cohort-meta span,
.cohort-meta strong {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.cohort-meta strong {
  color: #3154c8;
  text-align: right;
}

.cohort-checkout {
  margin-top: auto;
}

.cohorts-fallback {
  padding: 30px;
  color: var(--ink-soft);
  background: #f7f9ff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: #3154c8;
  border-top: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--violet);
}

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

.teacher-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(17, 22, 42, 0.07);
}

.teacher-photo {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center 30%;
  background-color: #111837;
}

.teacher-content {
  padding: 32px;
}

.teacher-content h3 {
  font-size: 27px;
  line-height: 1.17;
}

.teacher-title {
  min-height: 80px;
  color: var(--ink-soft) !important;
  font-weight: 720;
}

.teacher-highlight {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.teacher-highlight span {
  display: block;
  margin-bottom: 5px;
  color: #3154c8;
  font-size: 0.875rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-section {
  padding-top: 0;
}

.proof-shell {
  padding: clamp(38px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(85, 216, 231, 0.2), transparent 28%),
    linear-gradient(145deg, #0d1431, #182657);
  border-radius: var(--radius-lg);
}

.proof-inline {
  margin-bottom: 0;
}

.proof-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-heading h2 {
  max-width: 740px;
  font-size: clamp(31px, 3.8vw, 50px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-top: 36px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-grid span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.offer-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 25%, rgba(76, 114, 252, 0.26), transparent 31%),
    linear-gradient(145deg, #0b1026, #151f48);
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  align-items: center;
}

.offer-heading h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.price-block {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.price-block span,
.price-block strong {
  display: block;
}

.price-block span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-block strong {
  margin-top: 7px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.price-block p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.price-block .price-installments {
  margin-top: 2px;
  color: var(--white);
  font-size: 21px;
  font-weight: 760;
}

.price-block .payment-methods {
  max-width: 390px;
  margin-top: 14px;
  font-size: 15px;
}

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

.checkout-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
}

.accent-card {
  background: linear-gradient(160deg, #ffffff 0%, #f2efff 100%);
}

.checkout-card p:not(.mini-label) {
  flex: 1;
}

.checkout-note {
  grid-column: 2;
  margin: -50px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  text-align: center;
}

.post-purchase-note {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -38px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(18, 140, 126, 0.14);
  border: 1px solid rgba(87, 220, 180, 0.27);
  border-radius: 14px;
}

.post-purchase-note svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: #55e4b3;
}

.post-purchase-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.post-purchase-note strong {
  color: var(--white);
}

.cancellation-note {
  grid-column: 2;
  margin: -2px 0 0;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

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

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

summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 720;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 21px;
  color: #3154c8;
  font-size: 24px;
  font-weight: 500;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -5px 0 24px;
  padding-right: 40px;
  color: var(--muted);
}

.final-cta {
  padding: 80px 0;
  color: var(--white);
  background: linear-gradient(105deg, var(--blue), var(--violet));
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 800px;
}

.site-footer {
  padding: 55px 0 100px;
  color: rgba(255, 255, 255, 0.67);
  background: #080c1d;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.footer-logo-link {
  display: inline-block;
  width: 150px;
  height: 124px;
  overflow: hidden;
}

.footer-logo {
  display: block;
  width: 150px;
  height: 150px;
  margin-top: -13px;
  object-fit: contain;
}

.footer-inner p {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: 14px;
}

.footer-pending {
  text-align: right;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  margin-top: 0;
}

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

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-underline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  color: var(--white);
  background: #128c7e;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(8, 12, 29, 0.28);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #0f766e;
  box-shadow: 0 20px 48px rgba(8, 12, 29, 0.34);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 1060px) {
.outcome-grid,
.offer-shell {
    grid-template-columns: 1fr;
  }

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

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

.outcome-grid {
    gap: 48px;
  }

.offer-shell {
    gap: 46px;
  }

.checkout-note {
    grid-column: 1;
    margin: 0;
  }

.post-purchase-note {
    grid-column: 1;
    margin-top: -28px;
  }

.cancellation-note {
    grid-column: 1;
  }
}

@media (max-width: 820px) {
.section {
    padding: 74px 0;
  }

.split-heading,
.faq-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

.audience-grid,
.method-steps,
.format-grid,
.teacher-grid,
.cohort-grid,
.platform-gallery {
    grid-template-columns: 1fr;
  }

.platform-frame img {
    height: auto;
    max-height: 420px;
  }

.cohort-card {
    min-height: auto;
  }

.proof-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

.featured-step {
    transform: none;
  }

.teacher-photo {
    height: 330px;
  }

.teacher-title {
    min-height: auto;
  }
}

@media (max-width: 680px) {
body {
    font-size: 16px;
    line-height: 1.58;
  }

.container {
    width: min(calc(100% - 28px), var(--container));
  }

.section {
    padding: 58px 0;
  }

.site-header {
    background: rgba(10, 15, 36, 0.92);
  }

.header-inner {
    min-height: 68px;
  }

.header-logo {
    width: 52px;
    height: 52px;
  }

.menu-toggle {
    display: block;
  }

.main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    background: rgba(10, 15, 36, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

.main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

.main-nav a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

.main-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
  }

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

.method-orbit {
    width: min(100%, 350px);
    margin-top: 18px;
  }

.orbit-item {
    padding: 7px 10px;
    font-size: 0.875rem;
  }

.four-columns,
.checkout-grid {
    grid-template-columns: 1fr;
  }

.insight-card {
    min-height: auto;
  }

.audience-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px;
  }

.compact-audience-grid {
    margin-top: 14px;
  }

.platform-inline-heading {
    margin-top: 54px;
  }

.method-step {
    min-height: auto;
  }

.step-number {
    margin-bottom: 34px;
  }

.format-details > div {
    align-items: flex-start;
  }

.teacher-photo {
    height: 290px;
  }

.teacher-content,
.checkout-card {
    padding: 26px;
  }

.checkout-note {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.55;
  }

.post-purchase-note {
    align-items: flex-start;
    margin-top: 0;
    padding: 16px;
  }

.post-purchase-note p {
    font-size: 15px;
    line-height: 1.5;
  }

.cancellation-note {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.5;
  }

.final-cta-inner,
.footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

.final-cta .button {
    width: 100%;
  }

.footer-pending,
.footer-contact {
    text-align: left;
  }

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

.whatsapp-float {
    right: 14px;
    bottom: max(80px, calc(env(safe-area-inset-bottom) + 76px));
    min-height: 50px;
    padding: 10px;
  }

.whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

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

*,
*::before,
*::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.button-primary {
  background: var(--action-gradient);
  box-shadow: 0 14px 38px rgba(76, 114, 252, 0.3), inset 0 1px rgba(255, 255, 255, 0.24);
}

.insight-card,
.audience-card,
.method-step,
.teacher-card,
.cohort-card {
  border-color: rgba(76, 114, 252, 0.14);
  box-shadow: 0 18px 50px rgba(27, 37, 78, 0.055);
}

.insight-card,
.method-step,
.teacher-card,
.cohort-card { position: relative; }


.method-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(145, 93, 241, 0.09), transparent 25%),
    linear-gradient(180deg, #f3f5fb 0%, #f7f8fd 100%);
}

.featured-step {
  background:
    radial-gradient(circle at 92% 12%, rgba(224, 109, 199, 0.24), transparent 30%),
    linear-gradient(145deg, #111a3c, #25336f);
}

.proof-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(76, 114, 252, 0.28), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(224, 109, 199, 0.18), transparent 28%),
    linear-gradient(145deg, #09132c, #162657);
  box-shadow: 0 28px 80px rgba(15, 25, 64, 0.18);
}

.offer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 22%, rgba(76, 114, 252, 0.28), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(224, 109, 199, 0.16), transparent 28%),
    linear-gradient(135deg, #071126, #111b43);
}

.offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.offer-shell { position: relative; z-index: 1; }

.price-block strong {
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #9bb4ff 44%, #e787d2 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 40%, rgba(224, 109, 199, 0.2), transparent 26%),
    linear-gradient(110deg, #101b43, #18265a);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -7%;
  top: 50%;
  width: 43%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4c72fc, #915df1, #e06dc7);
  box-shadow: 0 0 24px rgba(145, 93, 241, 0.72);
  transform: rotate(-12deg);
}

.final-cta-inner { position: relative; z-index: 1; }

@media (max-width: 680px) {
.whatsapp-float {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 9px;
    border-radius: 50%;
  }

.whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Hero: one fluid composition; all typography remains live HTML. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(116px, 10vw, 154px) 0 64px;
  color: #fff;
  background: #09132b;
}
.hero-visual {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 16, 37, .35), transparent 70%),
    url('./assets/hero-background.webp') center / cover no-repeat;
}
.hero-grid { position: relative; width: min(calc(100% - 64px), 1380px); }
.hero-copy { width: min(78%, 1000px); }
.hero-wordmark {
  margin: 0;
  font-size: clamp(2.125rem, 3.6vw, 3.5rem);
  letter-spacing: -.05em;
  line-height: 1.05;
  font-weight: 420;
}
.hero-wordmark strong, .hero h1 {
  color: #b5acff;
  background: linear-gradient(95deg, #73a6ff, #b497ff 55%, #f28dd9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-wordmark strong { font-weight: 720; }
.hero-gradient-line {
  display: block;
  width: 96px;
  height: 3px;
  margin: 32px 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #4c72fc, #915df1, #e06dc7);
}
.hero-title-prefix {
  margin: 0 0 6px;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  letter-spacing: -.045em;
  line-height: 1.1;
  font-weight: 440;
}
.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.5rem, 5.4vw, 4.75rem);
  letter-spacing: -.045em;
  line-height: 1.06;
  font-weight: 780;
  text-wrap: balance;
}
.hero-lead {
  margin: 24px 0 12px;
  max-width: 40ch;
  color: #edf0fc;
  font-size: clamp(1.0625rem, 1.8vw, 1.5rem);
  line-height: 1.45;
}
.audience-line {
  max-width: 60ch;
  margin: 0;
  color: #edf0ff;
  font-size: clamp(1.0625rem, 1.45vw, 1.25rem);
  font-weight: 650;
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 20px; margin-top: 24px; }
.hero-actions .button-primary { min-height: 56px; }
.hero-actions .button-ghost {
  min-height: 44px;
  padding: 8px 2px;
  color: #e3eafe;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: .9375rem;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-offer-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-top: 18px;
  padding: 16px 0;
  border-block: 1px solid rgba(181, 199, 245, .25);
  color: #d2dbf3;
  font-size: .875rem;
  line-height: 1.5;
}
.hero-offer-line strong { color: #fff; font-size: 1rem; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-facts li { padding-left: 12px; border-left: 1px solid #687ba1; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-size: 1.5rem; line-height: 1.2; }
.hero-facts span { margin-top: 6px; color: #d2dbf3; font-size: .875rem; line-height: 1.4; }
.mobile-proof-strip { display: none; }

/* App download links occupy the clear area between the two phones. */
.app-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  background: #eef2ff;
  border: 1px solid #d6ddf4;
  border-radius: var(--radius-lg);
}
.app-showcase > img { display: block; width: 100%; height: auto; }
.app-showcase-copy {
  position: absolute;
  top: 50%; left: 50%;
  width: 40%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.app-showcase-copy .section-kicker { margin-bottom: 8px; }
.app-showcase-copy h3 { margin: 0; font-size: clamp(1.5rem, 2.7vw, 2.5rem); line-height: 1.15; letter-spacing: -.035em; }
.app-showcase-copy > p:not(.section-kicker) { margin: 12px 0; font-size: 1rem; color: #48566f; line-height: 1.45; }
.store-badges { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.store-badge {
  display: flex;
  min-height: 48px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  color: #fff;
  background: #090b12;
  border: 1px solid #4b5264;
  border-radius: 8px;
  text-decoration: none;
  text-align: left;
}
.store-badge:hover { background: #242a3b; }
.store-badge svg { flex: 0 0 auto; width: 22px; height: 22px; }
.store-badge-apple { fill: currentColor; }
.store-badge span, .store-badge small, .store-badge strong { display: block; }
.store-badge small { font-size: .75rem; line-height: 1.2; }
.store-badge strong { font-size: 1rem; line-height: 1.2; }
.cohort-contact-note { margin-top: 24px; font-size: .9375rem; color: #48566f; }
.cohort-card { scroll-margin-top: 100px; }
.cohort-card:target { outline: 2px solid #7041c7; outline-offset: 5px; }
.cohort-card .cohort-meta { font-size: .9375rem; }
.date-list { gap: 6px; }
.date-list li { min-width: 0; }
.date-list span { font-size: .875rem; overflow-wrap: anywhere; }
.mobile-sticky-cta { display: none; }

@media (min-width: 821px) and (max-width: 1060px) {
  .cohort-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-heading { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 32px; }
}
@media (max-width: 1060px) {
  .hero-copy { width: min(88%, 900px); }
  .hero-visual { background-position: 62% center; }
  .app-showcase-copy > p:not(.section-kicker) { display: none; }
  .store-badges { flex-direction: column; align-items: center; gap: 8px; }
  .store-badge { width: min(100%, 180px); }
  .store-badge small { display: none; }
}
@media (max-width: 820px) {
  .hero { padding: 114px 0 44px; }
  .hero-copy { width: 100%; }
  .hero-visual { opacity: .4; background-position: 75% center; }
  .hero h1 { font-size: clamp(2.5rem, 7vw, 3.75rem); }
  .app-showcase-copy > .section-kicker, .app-showcase-copy > h3 { display: none; }
  .store-badges { margin-top: 0; }
}
@media (max-width: 680px) {
  .hero { padding: 96px 0 28px; }
  .hero-grid { width: calc(100% - 28px); }
  .hero-visual { background-position: 72% center; opacity: .28; }
  .hero-wordmark { font-size: 2.125rem; }
  .hero-gradient-line { width: 76px; margin: 22px 0; }
  .hero-title-prefix { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero h1 { font-size: clamp(2.375rem, 10vw, 3rem); }
  .hero-lead { margin-top: 18px; }
  .hero-actions { margin-top: 20px; gap: 2px; flex-direction: column; align-items: stretch; }
  .hero-actions .button-primary { width: 100%; padding: 12px; font-size: .9375rem; }
  .hero-actions .button-ghost { align-self: flex-start; }
  .hero-offer-line { margin-top: 12px; padding: 12px 0; gap: 6px 18px; }
  .hero-facts { display: none; }
  .mobile-proof-strip { display: block; color: #fff; background: #09132b; border-block: 1px solid #34456a; }
  .mobile-proof-strip ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 12px 0; list-style: none; }
  .mobile-proof-strip li { padding: 12px; border-left: 1px solid #34456a; }
  .mobile-proof-strip li:nth-child(n + 3) { border-top: 1px solid #34456a; }
  .mobile-proof-strip strong, .mobile-proof-strip span { display: block; }
  .mobile-proof-strip strong { font-size: 1.5rem; line-height: 1.2; }
  .mobile-proof-strip span { margin-top: 5px; color: #d2dbf3; font-size: .875rem; line-height: 1.4; }
  .main-nav { visibility: hidden; max-height: calc(100dvh - 68px); overflow-y: auto; }
  .main-nav.is-open { visibility: visible; }
  .app-showcase-copy { width: 42%; }
  .app-showcase > img { min-height: 7rem; object-fit: cover; }
  .store-badges { gap: 8px; }
  .store-badge { min-height: 2.75rem; width: 100%; padding: 6px 4px; gap: 4px; }
  .store-badge svg { width: 18px; height: 18px; }
  .store-badge strong { font-size: .875rem; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    inset: auto 14px max(14px, env(safe-area-inset-bottom)) 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: #fff;
    background: var(--action-gradient);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(8, 15, 35, .3);
    font-size: 1rem;
    font-weight: 750;
    text-decoration: none;
  }
  .whatsapp-float { bottom: max(16px, env(safe-area-inset-bottom)); }
  body.has-sticky-cta .whatsapp-float { bottom: max(82px, calc(env(safe-area-inset-bottom) + 76px)); }
  body.menu-open .whatsapp-float { visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
