:root {
  --red: #b91c1c;
  --red-active: #991b1b;
  --red-soft: #fff1f2;
  --red-frame: rgb(185 28 28 / 46%);
  --red-frame-soft: rgb(185 28 28 / 22%);
  --yellow: #f4b000;
  --yellow-soft: #fffbeb;
  --surface: #ffffff;
  --surface-soft: #f7f7f8;
  --surface-strong: #e5e7eb;
  --surface-dark: #171717;
  --surface-dark-raised: #262626;
  --ink: #18181b;
  --body: #52525b;
  --muted: #71717a;
  --line: #d4d4d8;
  --line-dark: #3f3f46;
  --white: #ffffff;
  --green: #15803d;
  --font-display: "Roboto Condensed", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
  --gradient-red: linear-gradient(135deg, #b91c1c 0%, #a5161b 54%, #7f1d1d 100%);
  --gradient-dark: linear-gradient(120deg, #171717 0%, #1c1917 58%, #262626 100%);
  --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  --shadow-soft: 0 18px 45px rgb(24 24 27 / 8%);
  --container: 1180px;
  --section-space: 88px;
  --header-height: 68px;
  --offer-bar-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  padding-bottom: var(--offer-bar-height);
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 52px;
  line-height: 1.08;
}

h2 {
  font-size: 42px;
  line-height: 1.22;
}

h3 {
  font-size: 27px;
  line-height: 1.3;
}

p,
li {
  text-wrap: pretty;
}

p {
  color: var(--body);
}

.text-highlight {
  color: var(--red);
}

.hero .text-highlight,
.case-studies .text-highlight,
.bonuses .text-highlight,
.testimonials .text-highlight,
.register .text-highlight {
  color: var(--yellow);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--surface-dark);
  transform: translateY(-160%);
}

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

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

.narrow {
  max-width: 920px;
}

.section {
  padding: var(--section-space) 0 calc(var(--section-space) + 18px);
}

.launch-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  min-height: var(--offer-bar-height);
  color: var(--white);
  border-top: 1px solid var(--red-frame);
  background: rgb(23 23 23 / 96%);
  box-shadow: 0 -10px 30px rgb(0 0 0 / 18%);
  backdrop-filter: blur(14px);
}

.launch-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--offer-bar-height);
  font-size: 13px;
}

.launch-offer-copy {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #ffc928;
  font-size: 15px;
  font-weight: 600;
}

.launch-offer-copy strong,
.launch-offer-copy span {
  color: inherit;
}

.button,
.mobile-cta {
  animation: launch-cta-pulse 1.4s ease-in-out infinite;
}

.button:hover,
.button:focus-visible,
.mobile-cta:hover,
.mobile-cta:focus-visible {
  animation-play-state: paused;
}

.button:disabled {
  animation: none;
}

@keyframes launch-cta-pulse {
  0%, 30%, 60%, 100% { box-shadow: 0 8px 24px rgb(185 28 28 / 28%); transform: scale(1); }
  15%, 45% { box-shadow: 0 10px 30px rgb(185 28 28 / 48%); transform: scale(1.04); }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgb(244 176 0 / 32%);
  background: rgb(23 23 23 / 96%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 16%);
  backdrop-filter: blur(12px);
}

.registration-toast {
  position: fixed;
  top: calc(var(--header-height) + 16px);
  left: 18px;
  z-index: 110;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(calc(100% - 36px), 360px);
  padding: 14px;
  border: 1px solid var(--red-frame);
  border-radius: 8px;
  color: var(--ink);
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 18px 44px rgb(24 24 27 / 18%);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 240ms ease, transform 240ms ease;
  backdrop-filter: blur(10px);
}

.registration-toast[hidden] {
  display: none;
}

.registration-toast.is-visible {
  opacity: 1;
  transform: none;
}

.registration-toast-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: var(--red-soft);
  font-weight: 700;
}

.registration-toast-copy {
  display: grid;
  min-width: 0;
  line-height: 1.35;
}

.registration-toast-copy strong {
  font-size: 14px;
}

.registration-toast-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.registration-toast button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.registration-toast button:hover {
  color: var(--red);
  background: var(--red-soft);
}

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

.brand img {
  width: 150px;
  height: 52px;
  object-fit: contain;
}

.header-offer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
}

.header-offer > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--gradient-red);
  box-shadow: 0 10px 26px rgb(153 27 27 / 20%);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  filter: brightness(0.94);
  box-shadow: 0 14px 32px rgb(153 27 27 / 27%);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 14px;
}

.button-large {
  min-height: 58px;
  padding-inline: 34px;
  font-size: 19px;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--yellow);
}

.case-studies .eyebrow,
.testimonials .eyebrow {
  color: var(--yellow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 68px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 17px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered > p {
  margin-inline: auto;
}

.heading-line {
  display: block;
}

.media-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--red-frame);
  border-radius: 8px;
  background: var(--surface-soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.curriculum-media img,
.testimonial-slide img {
  cursor: zoom-in;
}

.curriculum-media img:focus-visible,
.testimonial-slide img:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -5px;
}

.image-lightbox {
  width: min(94vw, 1400px);
  max-width: none;
  padding: 48px 0 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.image-lightbox::backdrop {
  background: rgb(15 15 15 / 90%);
  backdrop-filter: blur(4px);
}

.image-lightbox img {
  width: 100%;
  height: min(82dvh, 900px);
  border: 0;
  border-radius: 8px;
  background: var(--surface-dark);
  box-shadow: 0 24px 70px rgb(0 0 0 / 45%);
  object-fit: contain;
}

.image-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--gradient-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 54px;
  text-align: center;
}

.hero-copy {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding: 38px 54px;
}

.hero-copy::before,
.hero-copy::after {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--red);
  content: "";
}

.hero-copy::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.hero-copy::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.hero h1 {
  max-width: 940px;
  margin-inline: auto;
  color: var(--white);
}

.hero-course-label {
  display: block;
  margin-bottom: 12px;
  color: #d4d4d8;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-course-promise {
  display: block;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.26;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #d4d4d8;
  font-size: 14px;
  font-weight: 500;
}

.social-proof span {
  color: var(--yellow);
  font-size: 10px;
}

.hero-lead {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.hero-positioning {
  max-width: 700px;
  margin: 0 auto;
  color: #a8acb3;
  font-size: 16px;
}

.hero-offer {
  text-align: left;
  padding: 24px;
  border: 1px solid var(--red-frame);
  border-radius: 8px;
  background: rgb(255 255 255 / 3%);
}

.offer-alert {
  margin-bottom: 14px;
  color: #d4d4d8;
  font-size: 14px;
}

.offer-alert strong {
  color: var(--yellow);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.countdown-unit {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.countdown-value {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 2px solid var(--red-frame);
  border-radius: 12px;
  background: linear-gradient(180deg, #2d2d2d 0%, #222222 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
}

.countdown strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown small {
  margin-top: 6px;
  color: #a8acb3;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.countdown-separator {
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
}

.price-line s {
  color: #a1a1aa;
  font-size: 16px;
}

.price-line strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.price-line span {
  color: #fecaca;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  padding-bottom: 34px;
  text-align: left;
}

.hero-portrait-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 500px;
  aspect-ratio: auto;
}

.hero-portrait-stage::before {
  position: absolute;
  top: 13%;
  left: 50%;
  z-index: -1;
  width: 88%;
  aspect-ratio: 1;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 18px 44px rgb(244 176 0 / 20%);
  content: "";
  transform: translateX(-50%);
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  align-items: center;
  gap: 44px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.hero-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.instructor-media img {
  object-position: center top;
}

.capacity-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(290px, 72%);
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 22px 52px rgb(0 0 0 / 32%);
}

.capacity-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.capacity-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.capacity-card span {
  color: var(--body);
  font-size: 12px;
}

.capacity-card > div:first-child span {
  white-space: nowrap;
}

.capacity-track {
  height: 6px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-strong);
}

.capacity-track span {
  display: block;
  width: 84%;
  height: 100%;
  background: var(--red);
}

/* Pain */
.pain {
  background: var(--gradient-soft);
}

.pain .narrow {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: start;
  gap: 72px;
  max-width: var(--container);
}

.pain-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.pain h2 {
  max-width: 520px;
  font-size: 44px;
}

.pain-lead {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: 19px;
}

.value-intro {
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 600;
}

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

.value-level {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 34px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.value-level > span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
}

.value-level p {
  margin-bottom: 0;
}

.value-level-high > span,
.value-level-high strong {
  color: var(--red);
}

.pain-conclusion {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  background: var(--red-soft);
  font-size: 18px;
  font-weight: 500;
}

/* Case studies */
.case-studies {
  color: var(--white);
  background: var(--gradient-dark);
}

.case-studies h2,
.case-studies h3 {
  color: var(--white);
}

.case-studies .section-heading > p {
  color: #a8acb3;
}

.case-studies .section-heading {
  max-width: 780px;
  margin-bottom: 84px;
}

.case-shift {
  margin-block: 24px 10px !important;
  color: var(--yellow) !important;
  font-family: var(--font-display);
  font-size: 26px !important;
  font-weight: 600;
}

.case-list {
  border-top: 1px solid var(--red-frame-soft);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 64px;
  padding-block: 88px;
  border-bottom: 1px solid var(--red-frame-soft);
}

.case-study:nth-child(even) .case-media {
  order: 2;
}

.case-media {
  aspect-ratio: 4 / 3;
  border-color: var(--red-frame);
}

.case-number {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
}

.case-copy h3 {
  font-size: 28px;
}

.case-person {
  margin-bottom: 28px;
  color: #fecaca;
  font-size: 14px;
  font-weight: 600;
}

.case-state {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.case-state strong {
  color: #a8acb3;
  font-size: 14px;
}

.case-state p {
  margin-bottom: 0;
  color: #d4d4d8;
}

.case-state-after strong {
  color: var(--yellow);
}

.case-state-after {
  margin-top: 8px;
  padding: 20px;
  border-top: 1px solid var(--line-dark);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  background: rgb(255 255 255 / 4%);
}

/* Audience */
.audience {
  background: var(--gradient-soft);
}

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

.audience-item {
  padding: 12px 12px 28px;
  border: 1px solid var(--red-frame-soft);
  border-radius: 8px;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 12px 32px rgb(24 24 27 / 5%);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.audience-media {
  margin-bottom: 22px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.audience-item > div:last-child {
  padding-inline: 10px;
}

.audience-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}

.audience-item h3 {
  font-size: 24px;
}

.audience-item p {
  margin-bottom: 0;
}

/* Curriculum */
.curriculum {
  background: var(--surface);
}

.curriculum-list {
  display: grid;
  gap: 20px;
}

.curriculum-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 70px;
  padding: 38px;
  border: 1px solid var(--red-frame-soft);
  border-radius: 8px;
  background: var(--gradient-soft);
  box-shadow: 0 10px 30px rgb(24 24 27 / 4%);
}

.curriculum-item:nth-child(even) {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.curriculum-item:nth-child(even) .curriculum-copy {
  order: 2;
}

.curriculum-copy > span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.curriculum-copy h3 {
  font-size: 27px;
}

.curriculum-copy p:last-child {
  margin-bottom: 0;
}

.curriculum-copy p + p {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  border-radius: 4px;
  color: var(--ink);
  background: var(--red-soft);
}

.curriculum-media {
  aspect-ratio: 3 / 2;
}

/* Bonuses */
.bonuses {
  color: var(--white);
  background: var(--gradient-red);
}

.bonuses h2,
.bonuses h3 {
  color: var(--white);
}

.bonuses .section-heading > p {
  color: #fee2e2;
}

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

.bonus-item {
  padding: 12px 12px 22px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 8px;
  background: rgb(255 255 255 / 6%);
}

.bonus-media {
  margin-bottom: 20px;
  aspect-ratio: 1;
  border-color: rgb(244 176 0 / 56%);
}

.bonus-item h3 {
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.bonus-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid rgb(255 255 255 / 38%);
}

.countdown-light {
  margin-bottom: 0;
}

.countdown-light .countdown-value {
  border-color: rgb(244 176 0 / 72%);
  background: var(--white);
}

.countdown-light strong {
  color: var(--red);
}

.countdown-light small {
  color: var(--white);
}

.bonuses .button {
  color: var(--red-active);
  background: var(--white);
}

.bonuses .button:hover {
  color: var(--white);
  background: var(--surface-dark);
}

/* Instructor */
.instructor {
  background: var(--gradient-soft);
}

.instructor-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  column-gap: 74px;
  row-gap: 12px;
}

.instructor-lead {
  grid-column: 2;
}

.instructor-portrait-stage {
  position: relative;
  isolation: isolate;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  overflow: hidden;
  width: 100%;
  height: 620px;
}

.instructor-portrait-stage::before {
  position: absolute;
  top: 13%;
  left: 50%;
  z-index: -1;
  width: 92%;
  aspect-ratio: 1;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 18px 44px rgb(244 176 0 / 18%);
  content: "";
  transform: translateX(-50%);
}

.instructor-portrait-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.instructor-copy {
  grid-column: 2;
}

.instructor-intro {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.authority-list {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.authority-list li {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.authority-list strong {
  color: var(--red);
}

.authority-list p {
  margin-bottom: 0;
}

.method-note {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  background: var(--red-soft);
}

/* Testimonials */
.testimonials {
  padding-bottom: calc(var(--section-space) + var(--offer-bar-height) + 18px);
  color: var(--white);
  background: var(--gradient-dark);
}

.testimonials h2 {
  color: var(--white);
}

.testimonials .section-heading > p {
  color: #a8acb3;
}

.testimonials .text-highlight {
  color: var(--yellow);
}

.testimonial-track {
  display: grid;
  grid-auto-columns: minmax(280px, 31%);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-y;
}

.testimonial-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0;
  border: 1px solid var(--red-frame);
  border-radius: 8px;
  background: var(--surface);
}

.testimonial-slide img {
  width: 100%;
  height: 100%;
  -webkit-user-drag: none;
  user-select: none;
  object-fit: cover;
}

.testimonial-track.is-dragging img {
  cursor: grabbing;
}

/* Guarantee */
.guarantee {
  padding: 72px 0 88px;
  border-block: 1px solid var(--red-frame-soft);
  background: var(--surface-soft);
}

.guarantee-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.guarantee h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 30px;
}

/* Registration */
.register {
  color: var(--white);
  background: var(--gradient-dark);
}

.register-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: start;
  gap: 90px;
}

.register-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.register h2 {
  color: var(--white);
  font-size: 46px;
}

.register-old-price {
  margin-bottom: 8px;
  color: #a8acb3;
}

.register-price {
  margin-bottom: 26px;
  color: #d4d4d8;
  font-size: 18px;
}

.register-price strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
}

.offer-facts {
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.offer-facts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #d4d4d8;
}

.offer-deadline {
  display: block;
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
}

.delay-cost {
  padding: 18px 20px;
  border: 1px solid var(--red-frame);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  color: var(--white);
  background: rgb(185 28 28 / 16%);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.form-panel {
  padding: 34px;
  border: 2px solid var(--red);
  border-radius: 8px;
  color: var(--ink);
  background: var(--gradient-soft);
  box-shadow: var(--shadow-soft);
}

.form-panel h3 {
  margin-bottom: 6px;
  font-size: 32px;
}

.form-panel > p {
  margin-bottom: 24px;
}

.form-panel form {
  display: grid;
  gap: 10px;
}

.form-panel label {
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.form-panel input {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-panel input:focus {
  border-color: var(--red);
  outline: 0;
  box-shadow: 0 0 0 4px rgb(185 28 28 / 12%);
}

.form-panel input[aria-invalid="true"] {
  border-color: var(--red);
  background: var(--red-soft);
  box-shadow: 0 0 0 3px rgb(185 28 28 / 10%);
}

.form-panel .button {
  width: 100%;
  margin-top: 16px;
}

.form-panel button:disabled {
  background: #fecaca;
  cursor: wait;
  filter: none;
  opacity: 0.8;
  transform: none;
}

#form-status {
  min-height: 26px;
  margin: 8px 0 0;
  font-size: 14px;
}

#form-status[data-state="success"] {
  color: var(--green);
}

#form-status[data-state="error"] {
  color: var(--red);
}

.form-promise {
  margin: 24px 0 0 !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--body);
  font-size: 13px;
}

/* Payment */
.payment-dialog {
  width: min(calc(100% - 32px), 960px);
  max-width: none;
  max-height: min(90dvh, 900px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--red-frame);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 28px 90px rgb(0 0 0 / 38%);
  scrollbar-color: rgb(113 113 122 / 32%) transparent;
  scrollbar-width: thin;
}

.payment-dialog::-webkit-scrollbar {
  width: 3px;
}

.payment-dialog::-webkit-scrollbar-track {
  background: transparent;
}

.payment-dialog::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: rgb(113 113 122 / 32%);
}

.payment-dialog::-webkit-scrollbar-thumb:hover {
  background: rgb(185 28 28 / 48%);
}

.payment-dialog::backdrop {
  background: rgb(15 15 15 / 82%);
  backdrop-filter: blur(5px);
}

.payment-dialog-shell {
  position: relative;
  padding: 30px;
}

.payment-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--body);
  background: var(--surface);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.payment-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 54px 32px 0;
  padding: 0;
  list-style: none;
}

.payment-steps::before {
  position: absolute;
  top: 14px;
  right: 16.666%;
  left: 16.666%;
  height: 2px;
  background: linear-gradient(to right, var(--red) 50%, var(--line) 50%);
  content: '';
}

.payment-dialog[data-payment-step="3"] .payment-steps::before {
  background: var(--red);
}

.payment-steps li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.payment-steps li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
}

.payment-steps .is-done,
.payment-steps .is-current {
  color: var(--red);
}

.payment-steps .is-done > span,
.payment-steps .is-current > span {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.payment-view[hidden] {
  display: none;
}

.payment-kicker,
.payment-panel-label {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.payment-view h2 {
  margin-bottom: 8px;
  font-size: 36px;
}

.payment-intro {
  margin-bottom: 26px;
  color: var(--body);
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.payment-summary,
.payment-bank {
  padding: 24px;
  border-radius: 8px;
}

.payment-summary {
  color: var(--white);
  background: var(--gradient-dark);
}

.payment-summary .payment-panel-label {
  color: var(--yellow);
}

.payment-bank {
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.payment-summary dl,
.payment-bank dl {
  margin: 0;
}

.payment-summary dl > div,
.payment-bank dl > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgb(113 113 122 / 24%);
}

.payment-summary dl > div:last-child,
.payment-bank dl > div:last-child {
  border-bottom: 0;
}

.payment-summary dt {
  color: #a8acb3;
}

.payment-bank dt {
  color: var(--muted);
}

.payment-summary dd,
.payment-bank dd {
  min-width: 0;
  margin: 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.payment-bank dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.payment-total dd,
.payment-bank [data-payment-amount] {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 24px;
}

.payment-qr {
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  margin: 14px auto 18px;
  overflow: hidden;
  border: 1px dashed var(--red-frame);
  border-radius: 8px;
  color: var(--red);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.payment-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-qr img[hidden] {
  display: none;
}

.payment-copy {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--red);
  background: var(--surface);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.payment-copy.is-copied {
  border-color: var(--green);
  color: var(--green);
}

.payment-confirm {
  margin-top: 22px;
  width: 100%;
}

.payment-note {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.payment-complete {
  display: grid;
  min-height: 440px;
  place-items: center;
  align-content: center;
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
}

.payment-success-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 42px;
  font-weight: 700;
}

.payment-complete > p:not(.payment-kicker) {
  max-width: 580px;
  color: var(--body);
  font-size: 17px;
}

.payment-support {
  margin-bottom: 28px;
}

.payment-finish {
  min-width: 220px;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  color: var(--white);
  background: #0f0f0f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 0.7fr;
  gap: 58px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.site-footer p,
.site-footer address {
  color: #a1a1aa;
  font-size: 13px;
  font-style: normal;
}

.footer-locations address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}

.footer-locations p {
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact p {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #71717a;
  font-size: 12px;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--gradient-red);
  box-shadow: 0 8px 24px rgb(185 28 28 / 28%);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 440ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) {
  .media-frame:hover img {
    transform: scale(1.018);
  }

  .audience-item:hover {
    border-color: #fca5a5;
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
  }
}

@media (max-width: 1023px) {
  :root {
    --section-space: 72px;
  }

  .hero-grid,
  .instructor-grid,
  .register-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .instructor-lead,
  .instructor-portrait-stage,
  .instructor-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .instructor-portrait-stage {
    justify-self: center;
    width: min(100%, 520px);
    height: 600px;
  }

  .pain .narrow {
    gap: 44px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .register h2 {
    font-size: 42px;
  }

  .hero-media {
    width: min(100%, 420px);
    justify-self: center;
  }

  .case-study,
  .curriculum-item {
    gap: 44px;
  }

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

  .guarantee-inner {
    grid-template-columns: 1fr;
  }

  .guarantee-inner .button {
    grid-column: auto;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --section-space: 56px;
    --header-height: 60px;
  }

  body {
    padding-bottom: var(--offer-bar-height);
    font-size: 16px;
    line-height: 1.65;
  }

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

  h1 {
    font-size: 34px;
  }

  .hero-course-label {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .hero-course-promise {
    font-size: 27px;
    line-height: 1.3;
  }

  h2,
  .pain h2,
  .register h2 {
    font-size: 30px;
  }

  h3,
  .case-copy h3,
  .curriculum-copy h3,
  .guarantee h2 {
    font-size: 22px;
  }

  .launch-bar-inner {
    justify-content: space-between;
    gap: 12px;
    min-height: var(--offer-bar-height);
    font-size: 11px;
  }

  .registration-toast {
    top: calc(var(--header-height) + 10px);
    right: 12px;
    left: 12px;
    width: auto;
  }

  .launch-offer-copy {
    gap: 10px;
    font-size: 13px;
  }

  .launch-offer-copy > strong {
    display: none;
  }

  .launch-offer-copy span {
    text-align: right;
  }

  .brand img {
    width: 84px;
    height: 42px;
  }

  .header-inner {
    gap: 12px;
  }

  .header-offer {
    gap: 8px;
    font-size: 14px;
    line-height: 1.25;
  }

  .header-offer > span {
    width: 7px;
    height: 7px;
  }

  .header-inner .button-small {
    display: none;
  }

  .button-large {
    width: 100%;
    min-height: 56px;
    padding-inline: 22px;
  }

  .button,
  .button-large {
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p:last-child,
  .hero-lead,
  .pain-lead,
  .instructor-intro {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy {
    padding: 26px 16px;
  }

  .hero-lower,
  .pain .narrow {
    grid-template-columns: 1fr;
  }

  .hero-lower {
    gap: 18px;
  }

  .pain .narrow {
    gap: 32px;
  }

  .pain-heading,
  .register-copy {
    position: static;
  }

  .hero-positioning {
    font-size: 15px;
  }

  .hero-offer {
    padding: 18px;
  }

  .countdown {
    justify-content: center;
    gap: 8px;
  }

  .countdown-value {
    width: 72px;
    height: 72px;
  }

  .countdown strong {
    font-size: 28px;
  }

  .price-line strong {
    font-size: 36px;
  }

  .hero-media {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-portrait-stage {
    height: 460px;
  }

  .capacity-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: calc(100% - 24px);
    margin: -42px auto 0;
  }

  .value-level,
  .case-state,
  .authority-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .value-level > span {
    font-size: 26px;
  }

  .case-study,
  .curriculum-item,
  .audience-grid,
  .guarantee-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-study {
    gap: 28px;
    padding-block: 46px;
  }

  .curriculum-item {
    gap: 28px;
    padding: 28px 20px;
  }

  .case-study:nth-child(even) .case-media,
  .curriculum-item:nth-child(even) .curriculum-copy {
    order: initial;
  }

  .case-number {
    font-size: 30px;
  }

  .audience-grid {
    gap: 16px;
    border-top: 0;
  }

  .audience-item,
  .audience-item:first-child,
  .audience-item:last-child {
    padding: 12px 12px 28px;
    border: 1px solid var(--red-frame-soft);
    border-radius: 8px;
  }

  .audience-item + .audience-item {
    padding-top: 12px;
  }

  .audience-media {
    border-radius: 6px;
  }

  .curriculum-copy > span {
    font-size: 22px;
  }

  .curriculum-copy p + p {
    padding: 14px 16px;
  }

  .bonus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 14px;
  }

  .bonus-close {
    align-items: stretch;
    flex-direction: column;
  }

  .instructor-grid {
    gap: 24px;
  }

  .instructor-portrait-stage {
    height: 480px;
  }

  .testimonial-track {
    grid-auto-columns: 82%;
  }

  .guarantee-inner {
    gap: 18px;
  }

  .guarantee-inner .button {
    grid-column: auto;
    width: 100%;
  }

  .register-grid {
    gap: 42px;
  }

  .register-price strong {
    display: block;
    margin-block: 6px;
  }

  .form-panel {
    padding: 26px 20px;
  }

  .payment-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }

  .payment-dialog-shell {
    padding: 22px 18px;
  }

  .payment-dialog-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .payment-steps {
    gap: 6px;
    margin: 0 40px 26px 0;
  }

  .payment-steps li {
    gap: 5px;
    font-size: 11px;
  }

  .payment-steps li > span {
    width: 24px;
    height: 24px;
  }

  .payment-view h2 {
    font-size: 30px;
  }

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

  .payment-summary,
  .payment-bank {
    padding: 20px 16px;
  }

  .payment-summary dl > div,
  .payment-bank dl > div {
    grid-template-columns: minmax(82px, 0.7fr) minmax(0, 1.3fr);
    gap: 10px;
  }

  .payment-total dd,
  .payment-bank [data-payment-amount] {
    font-size: 22px;
  }

  .payment-confirm {
    font-size: 16px;
  }

  .payment-complete {
    min-height: 500px;
  }

  .footer-locations address {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-cta {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }
}

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

  h1 {
    font-size: 31px;
  }

  h2,
  .pain h2,
  .register h2 {
    font-size: 28px;
  }

  h3,
  .case-copy h3,
  .curriculum-copy h3,
  .guarantee h2 {
    font-size: 21px;
  }

  .hero-course-label {
    font-size: 15px;
  }

  .hero-course-promise {
    font-size: 25px;
  }

  .capacity-card {
    left: 8px;
    right: 8px;
    width: auto;
  }

  .launch-bar-inner {
    font-size: 10px;
  }

  .launch-offer-copy {
    flex: 0 1 auto;
  }

  .countdown {
    gap: 5px;
  }

  .countdown-value {
    width: 64px;
    height: 64px;
  }

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

  .testimonial-track {
    grid-auto-columns: 92%;
  }
}

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

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

  .reveal,
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
