@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #000526;
  --navy-900: #01052A;
  --navy-800: #01145F;
  --blue-700: #0B2371;
  --blue-500: #0344B1;
  --logo-blue: #27538C;
  --silver-100: #FDFDFD;
  --silver-300: #D1D2D2;
  --gold-300: #FDF88C;
  --gold-400: #FCF065;
  --gold-500: #F6D63F;
  --gold-600: #FABD4D;
  --gold-700: #E99030;
  --paper: #FFFFFF;
  --ink: #01052A;
  --ink-soft: #2A3350;
  --gold-ink: #9A5B0C;
  --white: #FFFFFF;
  --gold-gradient: linear-gradient(118deg, var(--gold-700) 0%, var(--gold-500) 42%, var(--gold-300) 100%);
  --silver-gradient: linear-gradient(118deg, var(--silver-300) 0%, var(--silver-100) 52%, var(--silver-300) 100%);
  --layout: min(1200px, calc(100% - 48px));
  --copy: color-mix(in srgb, var(--white) 78%, transparent);
  --border: color-mix(in srgb, var(--blue-500) 28%, transparent);
  --card: color-mix(in srgb, var(--navy-800) 40%, transparent);
}

* { box-sizing: border-box; }

html {
  background: var(--navy-950);
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--silver-100);
  font-family: "Urbanist", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { overflow: hidden; }

img { max-width: 100%; }

p, h1, h2, h3 { overflow-wrap: break-word; }

h1, h2, h3, p { margin-top: 0; }

h2, h3 { text-wrap: balance; }

.shell {
  position: relative;
  width: var(--layout);
  margin: 0 auto;
}

.section-shell {
  position: relative;
  padding: 132px 0;
}

.section-shell--narrow { max-width: 860px; }

.content-section {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
}

.content-section:nth-of-type(even) { background: var(--navy-950); }

.section-backdrop,
.section-backdrop::before,
.section-backdrop::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section {
  position: relative;
  min-height: 900px;
  isolation: isolate;
  background: var(--navy-900);
}

.hero-backdrop { z-index: -2; overflow: hidden; }

.hero-backdrop::before {
  content: "";
  background: radial-gradient(ellipse at 22% 18%, color-mix(in srgb, var(--blue-500) 76%, transparent) 0%, color-mix(in srgb, var(--blue-500) 28%, transparent) 21%, transparent 52%);
  opacity: .62;
}

.hero-backdrop::after {
  content: "";
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--navy-950) 14%, transparent) 68%, var(--navy-950) 100%);
}

.hero-light {
  position: absolute;
  width: 64vw;
  height: 70vw;
  max-width: 980px;
  max-height: 980px;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .34;
  mix-blend-mode: screen;
  background: var(--blue-500);
}

.hero-light--left { top: -35%; left: -24%; }
.hero-light--right { right: -36%; bottom: -44%; opacity: .18; }

.hero-silk,
.closing-silk {
  position: absolute;
  inset: 0;
  background: url("../img/textura-seda-azul.webp") center 15% / cover no-repeat;
  mix-blend-mode: screen;
  opacity: .12;
}

.hero-elipse {
  position: absolute;
  width: min(84vw, 1060px);
  height: auto;
  top: -240px;
  right: -250px;
  opacity: .28;
  mix-blend-mode: screen;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, min(548px, 45vw));
  gap: 26px;
  min-height: 820px;
  padding: 44px 0 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 0 0 12px;
}

.event-lockup {
  width: 100%;
  max-width: 295px;
  margin: 0 0 28px;
}

.event-lockup--compact {
  max-width: 280px;
  margin: 0 auto 30px;
}

.event-lockup--closing { margin: 0 auto 40px; }

.event-logo {
  display: block;
  width: 295px;
  height: auto;
}

h1 {
  max-width: 626px;
  margin: 0;
  color: var(--silver-100);
  font-size: 37px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 strong,
.destaque,
.closing-price,
.price {
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-benefits,
.offer-list {
  display: grid;
  gap: 13px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits {
  max-width: 640px;
  color: color-mix(in srgb, var(--white) 86%, transparent);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 500;
}

.hero-benefits li,
.offer-list li { display: flex; align-items: flex-start; gap: 13px; }

.hero-benefits svg,
.offer-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  fill: none;
  stroke: var(--gold-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 58px;
  margin-top: 32px;
  padding: 0 25px 0 29px;
  border: 1px solid color-mix(in srgb, var(--gold-300) 60%, transparent);
  border-radius: 9px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  box-shadow: 0 14px 44px color-mix(in srgb, var(--gold-700) 24%, transparent);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 18px 52px color-mix(in srgb, var(--gold-500) 38%, transparent); filter: saturate(1.07); }
.cta:focus-visible, summary:focus-visible { outline: 3px solid var(--silver-100); outline-offset: 4px; }
.cta--center { display: flex; width: fit-content; margin-right: auto; margin-left: auto; }
.cta--wide { width: 100%; }

.hero-date,
.offer-date {
  margin: 25px 0 0;
  color: var(--gold-300);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 13px;
  margin-top: 26px;
}

.seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--blue-500) 52%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--navy-800) 54%, transparent);
  color: color-mix(in srgb, var(--white) 78%, transparent);
  font-size: .78rem;
  line-height: 1.15;
}

.seal svg { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: var(--gold-400); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }

.photo-card { overflow: hidden; border: 1px solid color-mix(in srgb, var(--blue-500) 48%, transparent); background: var(--navy-800); box-shadow: 24px 30px 70px color-mix(in srgb, var(--navy-950) 68%, transparent); }

.hero-portrait {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(100%, 548px);
  height: auto;
  aspect-ratio: 548 / 738;
  margin: 0;
}

.portrait-frame {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}

.portrait-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-baseline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--navy-950), var(--silver-300) 43%, var(--blue-500) 72%, var(--navy-950));
  opacity: .75;
}

.section-orb {
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--blue-500);
  filter: blur(120px);
  opacity: .2;
  pointer-events: none;
}

.section-orb--right { top: 12%; right: -280px; }
.section-orb--left { bottom: 8%; left: -300px; }
.section-orb--soft { opacity: .12; }

.section-intro { max-width: 760px; margin-bottom: 52px; }
.section-intro--center { margin-right: auto; margin-left: auto; text-align: center; }
.section-intro--center p { max-width: 680px; margin: 14px auto 0; }
.section-intro--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 72px; align-items: end; }

h2 {
  margin: 0;
  color: var(--silver-100);
  font-size: clamp(2.25rem, 4.2vw, 3.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
}

h3 { color: var(--silver-100); font-size: 1.32rem; font-weight: 800; line-height: 1.12; letter-spacing: -.018em; }

.section-intro p,
.section-intro--split p,
.problem-copy p,
.turn-panel p,
.teacher-copy p,
.closing-copy p,
.audience-card p,
.program-card p,
.credentials p,
.faq-list p,
.offer-name p,
.offer-list span {
  color: var(--copy);
  font-size: 1.05rem;
  line-height: 1.55;
}

.section-intro--split p { margin: 0 0 4px; }

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

.audience-card,
.program-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--navy-800) 55%, transparent), color-mix(in srgb, var(--navy-950) 64%, transparent));
}

.audience-card { grid-column: span 4; }
.audience-card:nth-child(4) { grid-column: 3 / span 4; }
.audience-card:nth-child(5) { grid-column: 7 / span 4; }
.audience-card p { margin: 22px 0 0; }

.line-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid color-mix(in srgb, var(--blue-500) 55%, transparent); border-radius: 50%; background: color-mix(in srgb, var(--navy-900) 50%, transparent); }
.line-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-400); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.problem-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 80px; align-items: stretch; }

.context-photo,
.teacher-photo { margin: 0; border-radius: 24px; -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 91%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, #000 91%, transparent 100%); }

.context-photo { height: 100%; }
.context-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.teacher-photo img { display: block; width: 100%; height: auto; }

.problem-copy h2 { margin-bottom: 30px; }
.problem-copy p { margin-bottom: 20px; }

.question-stack { display: grid; gap: 9px; margin: 26px 0 28px; padding-left: 22px; border-left: 2px solid var(--gold-500); }
.question-stack p { margin: 0; color: var(--silver-100); font-size: 1.08rem; font-weight: 700; }

.turn-panel { position: relative; margin-top: 92px; padding: 72px clamp(28px, 6vw, 100px); border: 1px solid color-mix(in srgb, var(--blue-500) 35%, transparent); border-radius: 28px; background: radial-gradient(circle at 75% 10%, color-mix(in srgb, var(--blue-500) 48%, transparent), transparent 50%), linear-gradient(135deg, color-mix(in srgb, var(--navy-800) 86%, transparent), var(--navy-900)); box-shadow: 0 30px 80px color-mix(in srgb, var(--navy-950) 30%, transparent); text-align: center; }
.turn-panel > p { margin-bottom: 14px; color: color-mix(in srgb, var(--white) 72%, transparent); }
.turn-panel h3 { margin: 0 0 28px; font-size: clamp(2.1rem, 4.8vw, 4rem); color: transparent; background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; }
.turn-copy { display: grid; grid-template-columns: minmax(0, 680px); justify-content: center; gap: 18px; max-width: 680px; margin: 0 auto; text-align: center; }
.turn-copy p { margin: 0; }

.program-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.program-card { min-height: 310px; padding: 34px; }
.program-card::before { content: attr(data-number); position: absolute; top: 24px; right: 28px; color: color-mix(in srgb, var(--gold-500) 42%, transparent); font-size: 3.7rem; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.program-card h3 { max-width: 330px; margin: 28px 0 0; }
.program-card p { margin: 18px 0 0; }

.teacher-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 84px; align-items: center; }
.teacher-photo { border-radius: 24px; }
.teacher-copy .kicker { margin: 0 0 18px; color: var(--silver-100); font-size: .92rem; font-weight: 800; letter-spacing: .54em; }
.teacher-copy h2 { margin-bottom: 16px; }
.teacher-lead { color: var(--gold-300) !important; font-size: 1.22rem !important; font-weight: 800; }
.credentials { display: grid; gap: 14px; margin-top: 32px; }
.credentials p { margin: 0; }
.credentials strong { color: var(--silver-100); font-weight: 800; }

.offer-section { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }
.offer-light { position: absolute; top: 10%; left: 50%; width: min(80vw, 760px); height: 760px; transform: translateX(-50%); border-radius: 50%; background: var(--blue-500); filter: blur(130px); opacity: .25; pointer-events: none; }
.offer-card { position: relative; max-width: 600px; margin: 0 auto; padding: 54px clamp(28px, 6vw, 60px) 46px; border: 1px solid color-mix(in srgb, var(--gold-500) 62%, transparent); border-radius: 24px; background: linear-gradient(145deg, color-mix(in srgb, var(--navy-800) 82%, transparent), color-mix(in srgb, var(--navy-950) 92%, transparent)); box-shadow: 0 24px 90px color-mix(in srgb, var(--blue-500) 30%, transparent), inset 0 0 40px color-mix(in srgb, var(--gold-700) 7%, transparent); text-align: center; }
.offer-name { margin: 0 auto; max-width: 420px; }
.offer-name p { margin: 0; color: var(--silver-100); font-size: 1.18rem; line-height: 1.35; font-weight: 800; }
.offer-list { margin-top: 38px; text-align: left; }
.offer-list span { font-size: .98rem; }
.price-label { margin: 42px 0 0; color: var(--copy); font-size: 1rem; }
.price { margin: 12px 0 0; font-size: clamp(5rem, 12vw, 7.6rem); font-weight: 900; line-height: .95; letter-spacing: -.08em; }
.payment, .security { margin: 16px 0 0; color: color-mix(in srgb, var(--white) 64%, transparent); font-size: .85rem; }
.security { color: var(--gold-300); font-weight: 700; }
.offer-date { margin-top: 24px; }

.section--light { background: var(--paper); color: var(--ink); }
.section--light .section-orb { opacity: .05; }
.section--light .section-intro h2 { color: var(--ink); }
.section--light .section-intro p,
.problem-section.section--light .problem-copy p { color: var(--ink-soft); }
.problem-section.section--light .problem-copy h2 { color: var(--ink); }
.problem-section.section--light .problem-copy strong { color: var(--ink); }
.section--light .destaque { color: var(--gold-ink); background: none; -webkit-background-clip: initial; background-clip: initial; }
.section--light .question-stack { border-color: var(--gold-ink); }
.section--light .question-stack p { color: var(--ink); }
.section--light .photo-card { border-color: color-mix(in srgb, var(--navy-800) 34%, transparent); box-shadow: 0 24px 70px color-mix(in srgb, var(--navy-900) 18%, transparent); }
.section--light .line-icon { border-color: color-mix(in srgb, var(--navy-800) 38%, transparent); }
.section--light .line-icon svg { stroke: var(--gold-ink); }
.offer-section.section--light { background: var(--paper); }
.offer-section.section--light .offer-light { opacity: .08; }
.offer-section.section--light .section-intro h2 { color: var(--ink); }
.event-lockup--compact,
.event-lockup--closing { margin-right: auto; margin-left: auto; }

.faq-section { background: var(--navy-950); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--border); border-radius: 15px; background: color-mix(in srgb, var(--navy-800) 38%, transparent); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; padding: 20px 24px; cursor: pointer; list-style: none; color: var(--silver-100); font-size: 1.08rem; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: var(--gold-400); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; transition: transform .2s ease; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list details p { margin: 0; padding: 0 24px 24px; }

.closing-section { position: relative; min-height: 800px; isolation: isolate; background: var(--navy-900); }
.closing-backdrop { z-index: -1; overflow: hidden; }
.closing-backdrop::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 34%, color-mix(in srgb, var(--blue-500) 38%, transparent), transparent 55%); }
.closing-silk { opacity: .19; }
.closing-light { position: absolute; right: 10%; bottom: -30%; width: 620px; height: 620px; border-radius: 50%; background: var(--blue-500); filter: blur(120px); opacity: .24; }
.closing-shell { padding-top: 126px; padding-bottom: 146px; text-align: center; }
.closing-shell h2 { max-width: 780px; margin: 0 auto; }
.closing-copy { max-width: 700px; margin: 38px auto 0; }
.closing-copy p { margin-bottom: 18px; }
.closing-event { margin: 46px 0 0; color: var(--silver-100); font-size: .95rem; font-weight: 700; letter-spacing: .04em; }
.closing-price { margin: 12px 0 0; font-size: clamp(4.7rem, 11vw, 7rem); font-weight: 900; line-height: .95; letter-spacing: -.08em; }
.closing-shell .cta { max-width: 420px; margin-top: 28px; }

@media (max-width: 960px) {
  :root { --layout: min(100% - 40px, 700px); }

  .hero-section { min-height: 0; }
  .hero-shell { display: grid; grid-template-columns: 1fr; gap: 0; min-height: 0; padding: 28px 0 54px; }
  .hero-copy { display: contents; }
  .event-lockup { order: 1; max-width: 280px; margin: 0 auto 22px; }
  .event-logo { width: min(100%, 280px); }
  h1 { order: 2; max-width: 680px; margin: 0 auto; font-size: clamp(2.1rem, 6vw, 3.2rem); letter-spacing: -.015em; }
  .hero-portrait { order: 3; align-self: center; justify-self: center; width: min(70%, 310px); height: auto; aspect-ratio: auto; margin-top: 24px; }
  .portrait-frame { height: auto; }
  .portrait-frame img { height: auto; object-fit: initial; }
  .hero-benefits { order: 4; max-width: 660px; margin: 24px auto 0; font-size: 1rem; }
  .hero-copy > .cta { order: 5; width: 100%; max-width: 660px; margin: 24px auto 0; }
  .hero-date { order: 6; text-align: center; }
  .hero-seals { order: 7; justify-content: center; }

  .section-shell { padding: 104px 0; }
  .section-intro--split { grid-template-columns: 1fr; gap: 20px; }
  .problem-grid, .teacher-grid { grid-template-columns: 1fr; gap: 50px; }
  .problem-copy { order: -1; }
  .context-photo { max-width: 680px; height: auto; margin: 0 auto; }
  .context-photo img { height: auto; object-fit: initial; }
  .teacher-photo { max-width: 680px; margin: 0 auto; }
  .turn-copy { grid-template-columns: 1fr; gap: 16px; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-card, .audience-card:nth-child(4), .audience-card:nth-child(5) { grid-column: auto; }
  .audience-card:nth-child(5) { grid-column: 1 / -1; max-width: calc(50% - 9px); margin: 0 auto; }
}

@media (max-width: 620px) {
  :root { --layout: calc(100% - 40px); }

  html { scroll-padding-top: 12px; }
  .hero-shell { grid-template-columns: 1fr; row-gap: 0; padding-top: 24px; padding-bottom: 24px; }
  .event-lockup { grid-column: 1 / -1; max-width: 220px; margin: 0 auto 16px; }
  .event-logo { width: min(100%, 220px); }
  h1 { grid-column: 1 / -1; max-width: 100%; margin: 0 auto 18px; font-size: 20px; line-height: 1.2; letter-spacing: -.01em; text-align: center; }
  .hero-portrait { grid-column: 1 / -1; width: min(70%, 250px); height: auto; margin: 24px auto 0; justify-self: center; align-self: center; order: 7; }
  .hero-portrait.photo-card { overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .portrait-frame { height: auto; border-radius: 20px; -webkit-mask-image: none; mask-image: none; }
  .portrait-frame img { width: 100%; height: auto; object-fit: initial; object-position: center; }
  .hero-benefits { grid-column: 1 / -1; min-width: 0; max-width: none; gap: 10px; margin: 0; padding: 0 8px; align-self: center; font-size: 14px; line-height: 1.2; order: 3; }
  .hero-benefits li { gap: 8px; }
  .hero-benefits svg { width: 14px; height: 14px; margin-top: 2px; }
  .hero-copy > .cta { grid-column: 1 / -1; width: 100%; max-width: none; min-height: 52px; height: 52px; margin-top: 18px; order: 4; }
  .hero-date { grid-column: 1 / -1; margin-top: 14px; font-size: 15px; line-height: 1.2; text-align: center; order: 5; }
  .hero-seals { grid-column: 1 / -1; flex-wrap: nowrap; gap: 4px; margin-top: 14px; justify-content: space-between; order: 6; }
  .seal { min-height: 28px; padding: 5px 2px; gap: 2px; font-size: 11px; line-height: 1.1; letter-spacing: -.025em; white-space: nowrap; }
  .seal svg { width: 12px; height: 12px; }

  .section-shell { padding: 82px 0; }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); line-height: 1.06; }
  h3 { font-size: 1.2rem; }
  .section-intro { margin-bottom: 34px; }
  .section-intro p, .section-intro--split p, .problem-copy p, .turn-panel p, .teacher-copy p, .closing-copy p, .audience-card p, .program-card p, .credentials p, .faq-list p, .offer-name p, .offer-list span { font-size: .98rem; line-height: 1.52; }

  .audience-grid, .program-grid { grid-template-columns: 1fr; }
  .audience-card, .audience-card:nth-child(4), .audience-card:nth-child(5) { grid-column: auto; max-width: none; margin: 0; min-height: 0; padding: 24px; }
  .audience-card p { margin-top: 18px; }
  .program-card { min-height: 0; padding: 26px; }
  .program-card::before { top: 20px; right: 22px; font-size: 3rem; }
  .program-card h3 { margin-top: 24px; }

  .problem-grid, .teacher-grid { gap: 34px; }
  .problem-copy { order: 0; }
  .question-stack { margin: 22px 0 24px; padding-left: 17px; }
  .question-stack p { font-size: .98rem; }
  .turn-panel { margin-top: 62px; padding: 44px 24px; border-radius: 20px; }
  .turn-panel h3 { font-size: 2.45rem; }
  .turn-copy { gap: 10px; }

  .teacher-copy .kicker { font-size: .78rem; letter-spacing: .44em; }
  .credentials { margin-top: 26px; gap: 12px; }

  .offer-card { padding: 40px 22px 34px; border-radius: 20px; }
  .event-lockup--compact { max-width: 280px; margin-bottom: 24px; }
  .offer-list { gap: 12px; margin-top: 30px; }
  .price-label { margin-top: 34px; }
  .price { font-size: 5.5rem; }
  .payment, .security { font-size: .78rem; }

  .faq-list summary { min-height: 68px; padding: 17px 18px; font-size: 1rem; }
  .faq-list details p { padding: 0 18px 20px; }

  .closing-section { min-height: 0; }
  .closing-shell { padding-top: 92px; padding-bottom: 104px; }
  .event-lockup--closing { max-width: 295px; margin-bottom: 30px; }
  .closing-event { margin-top: 36px; font-size: .8rem; line-height: 1.4; }
  .closing-price { font-size: 5.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta, .faq-list summary svg { transition: none; }
}
