:root {
  color-scheme: light;
  --page: #f8f8f6;
  --surface: #ffffff;
  --surface-soft: #ededeb;
  --ink: #141414;
  --muted: #5f6266;
  --line: rgba(20, 20, 20, 0.14);
  --accent: #5fa8c9;
  --accent-hover: #4c96b8;
  --accent-ink: #10242d;
  --dark: #141414;
  --dark-soft: #29292b;
  --light: #f6f7f7;
  --radius: 20px;
  --radius-small: 12px;
  --shadow: 0 28px 80px rgba(20, 36, 45, 0.12);
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

body.is-video-focused {
  overflow: hidden;
}

button,
input,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

p,
li,
summary,
small,
label,
.offer-saving,
.profile-list span {
  text-wrap: pretty;
}

h1,
h2,
h3,
p,
li,
summary,
button,
a,
label {
  hyphens: none;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.25rem);
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.6rem);
}

h3 {
  font-size: 1.35rem;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding-block: clamp(88px, 9vw, 150px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 26px;
  color: var(--ink);
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: scale(0.98);
}

.button:focus-visible,
.text-button:focus-visible,
.close-button:focus-visible,
.back-button:focus-visible,
summary:focus-visible,
.footer a:focus-visible,
.footer button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-accent:hover {
  background: var(--accent-hover);
}

.button-dark {
  background: var(--dark);
  color: var(--light);
}

.button-light {
  background: var(--light);
  color: var(--dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(20, 20, 20, 0.28);
  color: var(--light);
  backdrop-filter: blur(12px);
}

.button-small {
  min-height: 32px;
  padding: 8px 22px;
  font-size: 0.84rem;
}

.button-video small {
  flex: 0 0 auto;
  border-left: 1px solid rgba(16, 36, 45, 0.28);
  padding-left: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 24px;
  background: #385463;
  color: var(--light);
}

.topbar p {
  margin: 0;
  font-weight: 620;
  text-wrap: balance;
}

.hero-section {
  padding: 24px;
  background: var(--dark);
}

.video-close-button {
  display: none;
}

.hero-media {
  position: relative;
  min-height: min(75dvh, 720px);
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #090b0c;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-video.has-controls {
  z-index: 3;
  object-fit: contain;
  background: #090b0c;
}

.hero-video::cue {
  border-radius: 6px;
  background: rgba(8, 11, 12, 0.88);
  color: var(--light);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.35;
}

.video-purchase-actions {
  display: none;
}

.video-mobile-caption {
  display: none;
}

.hero-media.is-watching ~ .video-purchase-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 18px auto 0;
  padding: 2px 0 8px;
}

.video-purchase-actions .button {
  width: 100%;
}

.video-purchase-actions .button strong {
  padding-left: 8px;
  border-left: 1px solid rgba(16, 36, 45, 0.28);
  font-size: 0.88rem;
}

.button-whatsapp {
  border-color: rgba(246, 247, 247, 0.36);
  background: oklch(29% 0.025 160);
  color: var(--light);
}

.video-purchase-actions p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(246, 247, 247, 0.62);
  font-size: 0.76rem;
  line-height: 1.35;
  text-align: center;
}

.hero-media.is-watching .hero-content,
.hero-media.is-watching .hero-brand,
.hero-media.is-watching .hero-scrim {
  display: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(8, 11, 12, 0.93) 0%, rgba(8, 11, 12, 0.72) 45%, rgba(8, 11, 12, 0.08) 76%), linear-gradient(0deg, rgba(18, 56, 72, 0.62), transparent 50%);
}

.hero-content {
  position: absolute;
  left: clamp(28px, 4vw, 58px);
  bottom: clamp(38px, 6vw, 76px);
  width: min(700px, calc(100% - 56px));
  color: var(--light);
}

.hero-content h1 {
  max-width: 690px;
  margin-bottom: 18px;
}

.hero-title-line {
  display: block;
  text-wrap: balance;
}

.hero-content p {
  max-width: 56ch;
  margin-bottom: 26px;
  color: rgba(246, 247, 247, 0.86);
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-brand {
  position: absolute;
  right: clamp(24px, 4vw, 50px);
  bottom: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-small);
  padding: 20px 24px;
  background: rgba(10, 10, 10, 0.92);
  color: var(--light);
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.hero-brand span,
.application-brand span {
  font-weight: 800;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
  gap: clamp(64px, 10vw, 180px);
}

.split-intro h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.split-intro p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.16rem;
}

.media-reel-section {
  overflow: hidden;
  padding: 12px 0 clamp(62px, 7vw, 108px);
}

.media-reel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.media-reel-track {
  width: max-content;
  display: flex;
  animation: media-reel 38s linear infinite;
  will-change: transform;
}

.media-reel-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.media-card {
  width: clamp(300px, 24vw, 390px);
  aspect-ratio: 8 / 5;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.media-card:hover img {
  transform: scale(1.035);
}

.media-reel:hover .media-reel-track {
  animation-play-state: paused;
}

@keyframes media-reel {
  to {
    transform: translateX(-50%);
  }
}

.outcomes {
  padding-top: 60px;
}

.outcomes h2 {
  margin-bottom: 70px;
  text-align: center;
}

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

.outcomes-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.outcomes-grid span,
.included-grid span,
.offer-price > span,
.guarantee {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.outcomes-grid h3 {
  margin-bottom: 12px;
}

.outcomes-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.statement-section {
  padding-block: 32px;
}

.statement-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  padding: clamp(42px, 7vw, 100px);
  background: var(--dark);
  color: var(--light);
  text-align: center;
}

.statement-panel p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.9rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.statement-panel strong {
  color: var(--accent);
}

.statement-line {
  display: block;
}

.profiles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(64px, 10vw, 170px);
}

.profiles-heading {
  position: sticky;
  top: 42px;
  align-self: start;
}

.profiles-heading h2 {
  margin-bottom: 28px;
}

.profiles-heading p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.12rem;
}

.profiles-heading p,
.curriculum-copy p,
.included-header p,
.authority-copy p,
.offer-copy > p,
.faq-list details p {
  text-wrap: balance;
}

.profile-list {
  display: grid;
  gap: 18px;
}

.profile-list article {
  border-radius: var(--radius);
  padding: 34px;
  background: var(--surface-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .profile-list article:nth-child(2),
  .included-grid article:nth-child(2) {
    transition-delay: 70ms;
  }

  .profile-list article:nth-child(3),
  .included-grid article:nth-child(3) {
    transition-delay: 140ms;
  }

  .profile-list article:nth-child(4),
  .included-grid article:nth-child(4) {
    transition-delay: 210ms;
  }
}

.profile-list span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.profile-list p {
  max-width: 46ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.curriculum {
  padding-top: 50px;
}

.curriculum-copy {
  max-width: 800px;
  margin: 0 auto 58px;
  text-align: center;
}

.curriculum-copy p,
.included-header p {
  max-width: 58ch;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.curriculum-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
}

.curriculum-video {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.curriculum-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(9, 10, 10, 0.4) 52%, rgba(9, 10, 10, 0.98) 78%);
}

.curriculum-summary {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  top: 50%;
  z-index: 1;
  width: min(560px, 48%);
  color: var(--light);
  transform: translateY(-50%);
}

.curriculum-summary h3 {
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.topic-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-columns li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

@media (min-width: 721px) {
  .topic-columns {
    grid-template-rows: repeat(4, auto);
    column-gap: 32px;
    row-gap: 0;
  }

  .topic-columns ul {
    display: contents;
  }

  .topic-columns ul:first-child li {
    grid-column: 1;
  }

  .topic-columns ul:last-child li {
    grid-column: 2;
  }

  .topic-columns li:nth-child(1) {
    grid-row: 1;
  }

  .topic-columns li:nth-child(2) {
    grid-row: 2;
  }

  .topic-columns li:nth-child(3) {
    grid-row: 3;
  }

  .topic-columns li:nth-child(4) {
    grid-row: 4;
  }
}

.included-header {
  max-width: 800px;
  margin: 0 auto 58px;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, minmax(240px, auto));
  gap: 18px;
}

.included-grid article {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
  background: var(--surface-soft);
}

.included-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.included-grid p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.included-main {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--light);
  background:
    linear-gradient(180deg, rgba(8, 13, 15, 0.08) 0%, rgba(8, 13, 15, 0.3) 43%, rgba(8, 13, 15, 0.96) 100%),
    linear-gradient(90deg, rgba(15, 39, 49, 0.38), rgba(15, 39, 49, 0.06)),
    url("/assets/aula-assembleias.webp") 50% center / cover no-repeat !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.included-main span,
.included-main p {
  color: rgba(246, 247, 247, 0.7);
}

.included-main p,
.included-wide p {
  max-width: 46ch;
}

.included-wide {
  grid-column: 1 / -1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(105deg, rgba(95, 168, 201, 0.26), var(--surface-soft) 60%) !important;
}

.authority {
  padding-top: 34px;
}

.authority-frame {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--light);
}

.authority-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.authority-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(44px, 7vw, 100px);
}

.authority-copy h2 {
  margin-bottom: 24px;
}

.authority-copy p {
  max-width: 56ch;
  margin-bottom: 30px;
  color: rgba(246, 247, 247, 0.72);
  font-size: 1.12rem;
}

.offer {
  padding-top: 38px;
}

.offer-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  border-radius: var(--radius);
  padding: clamp(42px, 7vw, 92px);
  background: #e7f0f3;
}

.offer-copy p {
  max-width: 52ch;
  color: #4f5b61;
  font-size: 1.1rem;
}

.offer-stack {
  margin: 34px 0 0;
  border-top: 1px solid rgba(20, 20, 20, 0.18);
  padding: 0;
  list-style: none;
}

.offer-stack li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.14);
  padding: 18px 0;
}

.offer-item-copy b,
.offer-item-copy small {
  display: block;
}

.offer-item-copy b {
  margin-bottom: 3px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.offer-item-copy small {
  color: #5f696e;
  font-size: 0.88rem;
}

.offer-stack li > strong {
  max-width: 160px;
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.25;
}

.offer-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
}

.offer-total span {
  color: #4f5b61;
  font-size: 0.95rem;
  font-weight: 700;
}

.offer-total strong {
  text-align: right;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.guarantee {
  margin-top: 22px;
  border-bottom: 2px solid var(--accent-hover);
  padding-bottom: 4px;
  color: var(--ink);
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.offer-price > span {
  margin-bottom: 4px;
}

.offer-price .offer-old-price {
  margin: 10px 0 4px;
  color: #4f5b61;
  font-size: 1.08rem;
}

.offer-old-price del {
  text-decoration-color: var(--accent-hover);
  text-decoration-thickness: 2px;
}

.offer-price strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.offer-saving {
  margin-bottom: 14px;
  border-radius: var(--radius-small);
  padding: 10px 14px;
  background: var(--dark);
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.3;
}

.offer-price p {
  margin-bottom: 28px;
  color: #4f5b61;
}

.text-button {
  margin-top: 18px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 170px);
}

.faq-layout h2 {
  position: sticky;
  top: 42px;
  align-self: start;
}

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

.faq-list summary {
  position: relative;
  padding: 28px 48px 28px 0;
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 25px;
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 58ch;
  padding-bottom: 28px;
  color: var(--muted);
}

.final-cta {
  padding-top: 40px;
}

.final-cta-inner {
  border-radius: var(--radius);
  padding: clamp(54px, 8vw, 110px);
  background: var(--surface-soft);
  text-align: center;
}

.final-cta-inner p {
  max-width: 640px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.final-title-line,
.final-copy-line {
  display: block;
}

.footer {
  padding: 26px 0 50px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  border-top: 1px solid var(--line);
  padding-top: 38px;
}

.footer strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.footer p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner > p {
  grid-column: 1 / -1;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.footer-links a,
.footer-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
}

.application {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  background: var(--dark-soft);
  color: var(--light);
}

.application::backdrop {
  background: rgba(10, 10, 10, 0.8);
}

.application-shell {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 3px 1fr;
}

.application-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}

.application-brand {
  letter-spacing: -0.04em;
}

.close-button,
.back-button {
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: rgba(246, 247, 247, 0.7);
  cursor: pointer;
}

.progress-track {
  background: rgba(255, 255, 255, 0.14);
}

.progress-track > div {
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

#application-form {
  position: relative;
  min-height: 0;
}

.form-step {
  position: absolute;
  inset: 0;
  display: none;
  overflow-y: auto;
  padding: 46px 24px 120px;
}

.form-step.is-active {
  display: grid;
  place-items: center;
  animation: step-enter 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.step-content {
  width: min(100%, 780px);
}

.step-content h2 {
  margin-bottom: 32px;
  font-size: clamp(2.15rem, 4.5vw, 4.3rem);
}

.step-content h2:focus {
  outline: none;
}

.bot-field {
  position: fixed;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.step-intro,
.result-step {
  text-align: center;
}

.step-intro p:not(.step-kicker),
.result-step > p:not(.step-kicker) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(246, 247, 247, 0.72);
  font-size: 1.12rem;
}

.step-intro small,
.result-step small {
  display: block;
  margin-top: 16px;
  color: rgba(246, 247, 247, 0.56);
}

.step-kicker,
.question-number {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-list label {
  position: relative;
  cursor: pointer;
}

.option-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-list label > span {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-small);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--light);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.option-list label:hover > span {
  transform: translateX(4px);
  border-color: var(--accent);
}

.option-list input:checked + span {
  border-color: var(--accent);
  background: rgba(95, 168, 201, 0.16);
}

.option-list input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.option-list b {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

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

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

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

.field > span {
  font-weight: 680;
}

.field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-small);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--light);
  outline: none;
}

.field input::placeholder {
  color: rgba(246, 247, 247, 0.5);
}

.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(95, 168, 201, 0.2);
}

.field small {
  color: rgba(246, 247, 247, 0.56);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  color: rgba(246, 247, 247, 0.74);
  cursor: pointer;
}

.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-error {
  min-height: 24px;
  margin: 16px 0 0;
  color: #f1b4a8;
  font-weight: 650;
}

.form-navigation {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-navigation[hidden] {
  display: none;
}

.result-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.privacy-dialog {
  width: min(92vw, 620px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(10, 10, 10, 0.68);
}

.privacy-dialog > div {
  padding: 36px;
}

.privacy-dialog h2 {
  font-size: 2.2rem;
}

.privacy-dialog p {
  color: var(--muted);
}

@keyframes step-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-content {
    width: min(620px, calc(100% - 48px));
  }

  .hero-brand {
    display: none;
  }

  .split-intro,
  .profiles-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .profiles-heading,
  .faq-layout h2 {
    position: static;
  }

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

  .curriculum-visual,
  .curriculum-video {
    min-height: 760px;
  }

  .curriculum-video {
    object-position: 40% center;
  }

  .curriculum-visual::after {
    background: linear-gradient(0deg, rgba(9, 10, 10, 0.98) 10%, rgba(9, 10, 10, 0.72) 55%, rgba(9, 10, 10, 0.06) 82%);
  }

  .curriculum-summary {
    right: 28px;
    bottom: 34px;
    top: auto;
    left: 28px;
    width: auto;
    transform: none;
  }

  .authority-frame {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .topbar {
    min-height: 58px;
    justify-content: space-between;
    gap: 12px;
    padding-inline: 16px;
  }

  .topbar p {
    max-width: 220px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .topbar .button {
    min-height: 34px;
    padding-inline: 14px;
    font-size: 0.75rem;
  }

  .hero-section {
    padding: 12px;
  }

  .hero-section.is-video-focused {
    position: fixed;
    inset: 0;
    z-index: 200;
    width: 100%;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: calc(env(safe-area-inset-top, 0px) + 58px) 12px calc(env(safe-area-inset-bottom, 0px) + 12px);
    background: var(--dark);
  }

  .hero-section.is-video-focused .video-close-button {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: 12px;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(246, 247, 247, 0.34);
    border-radius: 999px;
    padding: 7px 14px;
    background: #24282a;
    color: var(--light);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
  }

  .hero-section.is-video-focused .video-close-button span {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 0.8;
  }

  .hero-section.is-video-focused .video-close-button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
  }

  .hero-media {
    min-height: 710px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-video {
    height: 54%;
    object-position: center top;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(8, 11, 12, 1) 39%, rgba(8, 11, 12, 0.25) 69%, rgba(8, 11, 12, 0.02));
  }

  .hero-content {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 330px 22px 30px;
  }

  .hero-content h1 {
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 10vw, 3.3rem);
  }

  .hero-content p {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-video {
    padding-inline: 18px;
  }

  .hero-video.has-controls {
    height: 100%;
  }

  .hero-media.is-watching {
    min-height: 0;
    aspect-ratio: 16 / 9;
    justify-content: initial;
  }

  .hero-section.is-video-focused .hero-media.is-watching {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .hero-media.is-watching .hero-video.has-controls {
    height: 100%;
    object-position: center;
  }

  .hero-media.is-watching + .video-mobile-caption {
    display: grid;
    width: min(100%, 32ch);
    min-height: 64px;
    place-items: center;
    margin: 7px auto 0;
    padding: 7px 12px 2px;
    color: transparent;
    font-size: clamp(0.94rem, 4.1vw, 1.06rem);
    font-weight: 620;
    line-height: 1.3;
    text-align: center;
    text-wrap: balance;
    opacity: 0;
    transition: color 140ms cubic-bezier(0.16, 1, 0.3, 1), opacity 140ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-media.is-watching + .video-mobile-caption.has-text {
    color: var(--light);
    opacity: 1;
  }

  .hero-media.is-watching ~ .video-purchase-actions {
    grid-template-columns: 1fr;
    width: min(100%, 540px);
    margin-top: 4px;
    padding-inline: 2px;
  }

  .split-intro {
    gap: 30px;
  }

  .outcomes {
    padding-top: 20px;
  }

  .outcomes h2 {
    margin-bottom: 46px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .statement-section {
    padding-block: 12px;
  }

  .statement-panel {
    min-height: 360px;
    padding: 38px 24px;
  }

  .profiles-layout {
    gap: 28px;
  }

  .profile-list article {
    padding: 26px;
  }

  .curriculum {
    padding-top: 30px;
  }

  .curriculum-copy,
  .included-header {
    margin-bottom: 38px;
    text-align: left;
  }

  .curriculum-copy p,
  .included-header p {
    margin-left: 0;
  }

  .curriculum-visual,
  .curriculum-video {
    min-height: 720px;
  }

  .curriculum-visual {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .curriculum-video {
    flex: 0 0 330px;
    height: 330px;
    min-height: 330px;
    object-position: 38% center;
  }

  .curriculum-visual::after {
    inset: 0 0 auto;
    height: 330px;
    background: linear-gradient(0deg, rgba(9, 10, 10, 1) 0%, rgba(9, 10, 10, 0.04) 46%, rgba(9, 10, 10, 0) 72%);
  }

  .curriculum-summary {
    position: relative;
    inset: auto;
    width: auto;
    padding: 24px 24px 30px;
    transform: none;
  }

  .curriculum-summary h3 {
    margin-bottom: 18px;
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .topic-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .topic-columns li {
    padding: 13px 0 14px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .included-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .included-main,
  .included-wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 300px;
  }

  .authority-frame,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .authority-frame img {
    height: 460px;
  }

  .authority-copy {
    padding: 40px 26px;
  }

  .offer-panel {
    gap: 48px;
    padding: 38px 26px;
  }

  .offer-stack li {
    gap: 14px;
    padding-block: 16px;
  }

  .offer-item-copy small {
    max-width: 210px;
    line-height: 1.35;
  }

  .offer-stack li > strong {
    max-width: 112px;
    font-size: 0.82rem;
  }

  .offer-total {
    gap: 16px;
  }

  .offer-total strong {
    max-width: 150px;
  }

  .offer-price .button {
    width: 100%;
  }

  .faq-layout {
    gap: 20px;
  }

  .final-cta-inner {
    padding-inline: 24px;
  }

  .final-cta-inner h2 {
    font-size: 2rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner > p {
    grid-column: auto;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .application-header {
    min-height: 62px;
    padding: 14px 18px;
  }

  .form-step {
    align-items: start;
    padding: 36px 18px 112px;
  }

  .form-step.is-active {
    place-items: start center;
  }

  .step-content h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .step-intro,
  .result-step {
    padding-top: 7vh;
  }

  .option-list label > span {
    min-height: 58px;
    padding: 12px 14px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .form-navigation {
    right: 18px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 18px;
    border-radius: 999px;
    padding: 6px 6px 6px 16px;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(14px);
  }

  .result-actions {
    display: grid;
  }
}

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

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

  .media-reel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .media-reel::-webkit-scrollbar {
    display: none;
  }

  .media-reel-track {
    animation: none;
  }

  .media-reel-group[aria-hidden="true"] {
    display: none;
  }
}
