:root {
  --bg: #070707;
  --bg-soft: #111111;
  --bg-panel: rgba(16, 16, 16, 0.78);
  --bg-panel-strong: rgba(20, 20, 20, 0.92);
  --line: rgba(240, 198, 60, 0.14);
  --line-strong: rgba(247, 231, 176, 0.26);
  --text: #f4efe4;
  --muted: #b7ab93;
  --muted-strong: #e4d8bd;
  --accent: #f0c63c;
  --accent-2: #f7e7b0;
  --accent-3: #d54436;
  --glow: 0 30px 120px rgba(240, 198, 60, 0.14);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1220px;
  --header-offset: 126px;
  --section-x-desktop: clamp(48px, 4vw, 64px);
  --section-x-tablet: 32px;
  --section-x-mobile: 22px;
  --section-y-desktop: clamp(34px, 3.8vw, 48px);
  --section-y-tablet: clamp(30px, 4vw, 40px);
  --section-y-mobile: clamp(28px, 4.2vw, 36px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(213, 68, 54, 0.12), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(240, 198, 60, 0.14), transparent 20%),
    radial-gradient(circle at 56% 96%, rgba(247, 231, 176, 0.08), transparent 24%),
    linear-gradient(180deg, #070707 0%, #111111 42%, #050505 100%);
}

body,
p,
a,
button {
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(240, 198, 60, 0.35);
  outline-offset: 4px;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 22px rgba(240, 198, 60, 0.42);
}

.backdrop-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.orb-1 {
  top: 4%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(213, 68, 54, 0.24), transparent 68%);
  animation: floatOrb 16s ease-in-out infinite;
}

.orb-2 {
  right: -12%;
  top: 22%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(240, 198, 60, 0.18), transparent 68%);
  animation: floatOrb 18s ease-in-out infinite reverse;
}

.orb-3 {
  left: 34%;
  bottom: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(247, 231, 176, 0.12), transparent 68%);
  animation: floatOrb 20s ease-in-out infinite;
}

.backdrop-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(240, 198, 60, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 198, 60, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 82%);
}

.backdrop-scan {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(180deg, transparent 0%, rgba(213, 68, 54, 0.035) 44%, transparent 100%),
    linear-gradient(180deg, transparent 12%, rgba(240, 198, 60, 0.028) 54%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(240, 198, 60, 0.02) 18%, transparent 22%, transparent 100%);
  background-size: 100% 100%, 100% 100%, 180px 100%;
  animation: scanDrift 9s linear infinite;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 60px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px 20px;
  border: 1px solid rgba(240, 198, 60, 0.14);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(22px) saturate(135%);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button,
h1,
h2,
h3,
.mini-label,
.timeline-card span,
.trust-row strong {
  font-family: "Sora", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark img {
  display: block;
  width: auto;
  height: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 1.9vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.82rem, 0.86vw, 0.94rem);
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease;
}

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

.nav-cta {
  flex: 0 0 auto;
  padding: 12px 18px;
  margin-left: clamp(12px, 1.2vw, 18px);
  border: 1px solid rgba(240, 198, 60, 0.26);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(240, 198, 60, 0.14), rgba(213, 68, 54, 0.12));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.hero,
.summary-band,
.section,
.cinema-section,
.site-footer {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(0.2, 1, 0.22, 1), transform 800ms cubic-bezier(0.2, 1, 0.22, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  min-height: auto;
  margin-bottom: 20px;
  padding: clamp(52px, 6vw, 72px) var(--section-x-desktop) clamp(44px, 5vw, 60px);
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 46%, rgba(213, 68, 54, 0.18), transparent 34%),
    radial-gradient(circle at 88% 26%, rgba(240, 198, 60, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(12, 11, 10, 0.97), rgba(5, 5, 5, 0.99));
  box-shadow: var(--shadow);
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 28%, transparent 72%, rgba(240, 198, 60, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
  pointer-events: none;
}

.hero-copy,
.hero-stage,
.feature-card,
.split-panel,
.timeline-card,
.resource-card,
.faq-card,
.cta-panel {
  position: relative;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.84), rgba(8, 8, 8, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy,
.hero-stage {
  min-width: 0;
}

.hero-copy::before,
.hero-stage::before,
.feature-card::before,
.split-panel::before,
.timeline-card::before,
.resource-card::before,
.faq-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, transparent 70%, rgba(240, 198, 60, 0.04));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  border: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.hero-copy::before {
  display: none;
}

.hero-intro-line {
  color: #fff;
  font-weight: 900;
  opacity: 1;
  letter-spacing: 0.14em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-logo {
  margin-bottom: 18px;
}

.hero-logo img {
  display: block;
  width: min(520px, 100%);
  height: auto;
}

.eyebrow,
.card-kicker,
.mini-label {
  margin: 0 0 16px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 16.6ch;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
  overflow: visible;
  overflow-wrap: anywhere;
  padding-block: 0.03em 0.06em;
}

.homepage-hero-title {
  max-width: min(100%, 14.2ch);
  font-size: clamp(2.36rem, 4.05vw, 4.18rem);
  line-height: 0.95;
  letter-spacing: -0.058em;
  text-wrap: pretty;
  padding-block: 0.01em 0.03em;
}

.headline-line {
  display: block;
  margin-top: 2px;
  padding-block: 0 0.03em;
  line-height: 1;
  overflow: visible;
}

.homepage-hero-title .headline-line {
  margin-top: 0;
  padding-block: 0 0.02em;
  line-height: 0.94;
  white-space: normal;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.homepage-hero-title .headline-line + .headline-line {
  margin-top: 0.02em;
}

.headline-line-main {
  background: linear-gradient(
    110deg,
    #fffaf0 0%,
    #fff6dc 18%,
    #f5ead0 32%,
    rgba(255, 255, 255, 0.98) 44%,
    rgba(247, 231, 176, 0.98) 58%,
    var(--accent) 76%,
    var(--accent-2) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.headline-line-accent {
  background: linear-gradient(
    110deg,
    #f8f1e4 0%,
    #f5ead0 16%,
    rgba(255, 255, 255, 0.96) 32%,
    rgba(247, 231, 176, 0.98) 46%,
    rgba(240, 198, 60, 0.98) 70%,
    rgba(247, 231, 176, 0.96) 100%
  );
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(240, 198, 60, 0.08));
  padding-bottom: 0.05em;
}

.headline-line-tail {
  text-wrap: balance;
  padding-bottom: 0.07em;
}

.homepage-hero-title .headline-line-tail {
  text-wrap: pretty;
  padding-bottom: 0.04em;
}

.headline-line-accent {
  text-wrap: balance;
}

.homepage-hero-title .headline-line-accent {
  text-wrap: pretty;
}

.hero-text,
.section-intro,
.feature-card p,
.proof-copy p,
.testimonial-card p,
.timeline-card p,
.resource-card p,
.faq-card p,
.cta-panel p,
.glass-card p,
.footer-brand p,
.trust-row span {
  color: var(--muted);
  line-height: 1.7;
}

.trust-row > * {
  text-align: center;
}

.trust-row strong,
.trust-row span {
  display: block;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .eyebrow {
  max-width: 46ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-guidance {
  margin: 16px 0 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 34px;
}

.hero-proof-chip {
  padding: 16px 18px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
  text-align: left;
}

.hero-proof-chip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-proof-chip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.social-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  width: 100%;
  max-width: 980px;
}

.social-proof-item {
  padding: 14px 16px;
  border: 1px solid rgba(240, 198, 60, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
}

.social-proof-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.social-proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, rgba(240, 198, 60, 0.98), rgba(247, 231, 176, 0.92));
  color: #15120a;
  box-shadow: 0 18px 40px rgba(240, 198, 60, 0.2);
}

.button-secondary {
  border-color: rgba(240, 198, 60, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero-stage {
  display: none;
}

.hero-brand-bolt {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 132px;
  opacity: 0.78;
  filter: drop-shadow(0 0 28px rgba(255, 227, 122, 0.3));
}

.hero-brand-bolt img {
  display: block;
  width: 100%;
  height: auto;
}

.stage-sheen {
  position: absolute;
  inset: -20% -10% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 60%);
  transform: rotate(-14deg);
}

.hero-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 18px;
  background: rgba(22, 18, 14, 0.58);
  backdrop-filter: blur(18px) saturate(135%);
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-badge strong {
  font-size: 1rem;
}

.glass-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(240, 198, 60, 0.025));
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--glow);
}

.hero-main-card {
  left: 30px;
  right: 110px;
  bottom: 188px;
  padding: 32px;
}

.hero-main-card h2 {
  max-width: 12ch;
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.hero-side-card {
  width: 250px;
  padding: 22px;
}

.hero-side-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.22;
}

.hero-side-card:nth-of-type(2) {
  right: 26px;
  bottom: 148px;
}

.hero-side-card:nth-of-type(3) {
  left: 56px;
  bottom: 30px;
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 28px;
}

.summary-band article {
  padding: 22px 24px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
}

.summary-band h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.section {
  margin-bottom: 8px;
  padding: var(--section-y-desktop) var(--section-x-desktop);
}

main[id],
section[id] {
  scroll-margin-top: 8px;
}

.cinema-section {
  --cinema-progress: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 8px;
  padding: var(--section-y-desktop) var(--section-x-desktop);
}

.intro-priority {
  margin-bottom: 12px;
}

.course-video-section {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}

.video-preframe {
  margin-bottom: 0;
}

.video-preframe-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 16%, rgba(213, 68, 54, 0.12), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(240, 198, 60, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow);
}

.video-preframe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.video-preframe-list span,
.proof-scan-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(240, 198, 60, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.video-preframe-note {
  margin: 0;
  align-self: stretch;
  padding: 22px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.course-video-copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
}

.course-video-copy .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2.8vw, 2.9rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  background: linear-gradient(90deg, var(--text) 0%, var(--accent) 44%, var(--accent-2) 58%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: floatLabel 2.8s ease-in-out infinite;
}

.course-video-copy h2 {
  max-width: 11.5ch;
  font-size: clamp(2.32rem, 4.9vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -0.058em;
  margin-left: auto;
  margin-right: auto;
}

#results .section-heading {
  max-width: 740px;
  margin-bottom: 18px;
}

#results .section-heading h2 {
  --section-heading-line-height: 0.97;
  --section-heading-max: 15ch;
}

#story .section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

#story .section-heading h2 {
  --section-heading-line-height: 0.96;
  --section-heading-max: 15.7ch;
}

#story .section-intro,
#written-testimonials .section-intro,
#program .section-intro,
#interviews .section-intro {
  margin-top: 18px;
  max-width: 620px;
}

#program .section-heading {
  max-width: 740px;
  margin-bottom: 24px;
}

#program .section-heading h2 {
  --section-heading-max: 14.6ch;
}

#interviews .section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

#interviews .section-heading h2 {
  --section-heading-line-height: 0.95;
  --section-heading-max: 15.5ch;
}

#written-testimonials .section-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

#written-testimonials .section-heading h2 {
  --section-heading-max: 14.6ch;
}

#process .section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

#process .section-heading h2 {
  --section-heading-line-height: 0.96;
  --section-heading-max: 14.5ch;
}

#resources .section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

#resources .section-heading h2 {
  --section-heading-max: 13.5ch;
}

#faq .section-heading {
  max-width: 880px;
  margin-bottom: 18px;
}

#faq .section-heading h2 {
  --section-heading-line-height: 0.94;
  --section-heading-max: 15.8ch;
}

:is(.stacked-heading-lines, .program-heading, .interviews-heading, .resources-heading, .faq-heading).section-display-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.program-heading,
.interviews-heading,
.resources-heading,
.faq-heading,
.stacked-heading-lines {
  max-width: min(100%, var(--section-heading-max));
}

.program-heading-group,
.interviews-heading-group,
.resources-heading-group,
.faq-heading-group {
  display: none;
  flex-direction: column;
  align-items: flex-start;
}

.program-heading-group-desktop,
.interviews-heading-group-desktop,
.resources-heading-group-desktop,
.faq-heading-group-desktop {
  display: flex;
}

.program-heading-line,
.interviews-heading-line,
.resources-heading-line,
.faq-heading-line {
  display: block;
  white-space: nowrap;
}

.section-heading-flow-mobile {
  display: none;
}

.stacked-heading-line {
  display: block;
}

.course-video-copy .section-intro {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.course-video-section .cinema-media {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 12px;
  align-items: center;
}

.course-video-section .video-poster-copy {
  display: none;
}

.course-video-section .video-poster {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.16), rgba(8, 8, 8, 0.56)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.34) 0%, rgba(8, 8, 8, 0.12) 42%, rgba(8, 8, 8, 0.22) 100%),
    var(--poster-image),
    radial-gradient(circle at 18% 18%, rgba(213, 68, 54, 0.16), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(240, 198, 60, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.98), rgba(7, 7, 7, 0.99));
  background-position: center 46%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.9) contrast(1.02);
}

.course-video-section .video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 46%, rgba(240, 198, 60, 0.1), transparent 14%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.14) 38%, rgba(8, 8, 8, 0.28) 100%);
  pointer-events: none;
}

.course-video-section .video-poster-kicker {
  top: 34px;
  left: 34px;
  right: 34px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-transform: none;
  white-space: normal;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 248, 234, 0.96);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: none;
  box-shadow: none;
  z-index: 2;
}

.course-video-section .video-poster-course-meta {
  position: absolute;
  top: 102px;
  left: 34px;
  right: 34px;
  z-index: 2;
  display: block;
  max-width: 34ch;
  color: rgba(255, 244, 219, 0.84);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.course-video-section .video-poster-play {
  left: 50%;
  top: 56%;
  width: auto;
  min-width: 0;
  height: auto;
  transform: translate(-50%, -50%);
  gap: 0;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-video-section .video-poster-play-ring {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 134px;
  height: 134px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  backdrop-filter: blur(8px) saturate(105%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: playFloat 3.8s ease-in-out infinite;
}

.course-video-section .video-poster-play-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  backdrop-filter: blur(12px) saturate(102%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.course-video-section .video-poster-play-icon {
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  border-top-width: 19px;
  border-bottom-width: 19px;
  border-left-width: 30px;
  border-left-color: #fff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
  z-index: 1;
}

.course-video-section .video-poster-play-text {
  max-width: 22ch;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 10px 14px 6px;
  border-radius: 18px;
  background: rgba(6, 6, 6, 0.56);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.course-video-section .video-poster-play-subtext {
  font-size: 0.82rem;
  margin-top: -2px;
  padding: 6px 12px 8px;
  border-radius: 14px;
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(10px);
}

.video-poster-play-subtext {
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.course-video-section .button-apply-video {
  animation: callPulse 2.6s ease-in-out infinite;
  margin-top: 2px;
}

.sticky-stage {
  position: sticky;
  top: 110px;
  align-self: start;
}

.cinema-copy {
  padding: 10px 8px 0 2px;
}

.intro-priority .cinema-copy h2 {
  max-width: 10.8ch;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  line-height: 0.96;
  text-wrap: balance;
}

.intro-priority .section-intro {
  max-width: 34ch;
  font-size: 1.06rem;
  line-height: 1.62;
}

.intro-guide {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 6px;
  padding: 14px 18px;
  border: 1px solid rgba(240, 198, 60, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.intro-guide-label,
.intro-guide-text {
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-guide-arrow {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, rgba(240, 198, 60, 0.2), var(--accent));
  animation: guideArrow 1.8s ease-in-out infinite;
}

.intro-guide-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.cinema-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding: 30px 36px 24px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 18%, rgba(213, 68, 54, 0.16), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(240, 198, 60, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.92), rgba(7, 7, 7, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateX(calc((0.5 - var(--cinema-progress)) * 5deg));
}

.video-frame {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  transform: scale(calc(0.96 + var(--cinema-progress) * 0.04));
  transform-origin: center center;
  background: linear-gradient(180deg, rgba(9, 12, 20, 0.96), rgba(8, 11, 18, 0.98));
}

.video-frame iframe,
.featured-interview-video iframe,
.interview-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  padding: 0;
  border: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(213, 68, 54, 0.16), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(240, 198, 60, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.98), rgba(7, 7, 7, 0.99));
}

.video-poster-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(240, 198, 60, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 198, 60, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.video-poster::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.video-poster-copy,
.video-poster-play {
  position: relative;
  z-index: 1;
}

.video-poster-copy {
  position: absolute;
  top: 146px;
  left: 40px;
  right: 40px;
  display: grid;
  gap: 10px;
  max-width: min(330px, 42%);
}

.video-poster-kicker {
  position: absolute;
  top: 34px;
  left: 40px;
  right: 40px;
  display: block;
  color: var(--accent);
  font-size: clamp(1.02rem, 1.55vw, 1.32rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  animation: floatLabel 2.6s ease-in-out infinite;
}

.video-poster-copy strong {
  font-family: "Sora", sans-serif;
  max-width: 7.8ch;
  font-size: clamp(1.95rem, 2.6vw, 2.85rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.video-poster-meta {
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.4;
  max-width: 18ch;
}

.video-poster-list {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  overflow: visible;
  scrollbar-width: none;
}

.video-poster-list::-webkit-scrollbar {
  display: none;
}

.video-poster-list span,
.story-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(240, 198, 60, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.video-poster-play {
  position: absolute;
  left: 74%;
  top: 48%;
  transform: translate(-50%, -50%);
  min-width: 0;
  width: 190px;
  height: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-right: 0;
}

.video-poster-play-ring {
  position: relative;
  display: grid;
  place-items: center;
  inset: auto;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(240, 198, 60, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 30% 30%, rgba(247, 231, 176, 0.28), rgba(240, 198, 60, 0.14) 38%, rgba(213, 68, 54, 0.08));
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow: 0 0 38px rgba(240, 198, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -18px 26px rgba(0, 0, 0, 0.14);
  animation: playPulse 2.8s ease-in-out infinite;
}

.video-poster-play-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.08), transparent 60%);
}

.video-poster-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-32%, -50%);
  margin-left: 0;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--text);
}

.video-poster-play-text {
  position: relative;
  z-index: 1;
  margin-left: 0;
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  max-width: 18ch;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
}

.video-frame.is-playing .video-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.video-float h3 {
  margin: 0;
}

.button-apply-video {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(460px, 100%);
  min-height: 50px;
  padding: 0 30px;
  border-color: rgba(240, 198, 60, 0.26);
  box-shadow: 0 16px 34px rgba(240, 198, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: none;
  align-self: center;
  backdrop-filter: blur(14px);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.button-apply-video:hover,
.button-apply-video:focus-visible {
  transform: translateY(-2px);
}

.video-next-step {
  margin: 2px auto 0;
  display: inline-block;
  width: fit-content;
  max-width: min(760px, 100%);
  align-self: center;
  color: var(--muted-strong);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
}

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

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.section-display-heading {
  --section-heading-size: clamp(2.4rem, 4.6vw, 4.4rem);
  --section-heading-size-tablet: clamp(2.2rem, 5vw, 3.45rem);
  --section-heading-size-mobile: clamp(2rem, 8vw, 3rem);
  --section-heading-line-height: 0.95;
  --section-heading-line-height-tablet: 0.96;
  --section-heading-line-height-mobile: 0.99;
  --section-heading-tracking: -0.05em;
  --section-heading-tracking-tablet: -0.047em;
  --section-heading-tracking-mobile: -0.042em;
  --section-heading-max: 14.5ch;
  margin: 0;
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line-height);
  letter-spacing: var(--section-heading-tracking);
  max-width: min(100%, var(--section-heading-max));
  text-wrap: balance;
}

.section-display-heading--short {
  --section-heading-size: clamp(2.54rem, 4.75vw, 4.1rem);
  --section-heading-size-tablet: clamp(2.22rem, 4.9vw, 3.08rem);
  --section-heading-size-mobile: clamp(1.96rem, 7.2vw, 2.32rem);
  --section-heading-max: 13.6ch;
}

.section-display-heading--medium {
  --section-heading-size: clamp(2.42rem, 4.4vw, 3.9rem);
  --section-heading-size-tablet: clamp(2.18rem, 4.8vw, 3.08rem);
  --section-heading-size-mobile: clamp(1.96rem, 7.35vw, 2.42rem);
  --section-heading-max: 14.8ch;
}

.section-display-heading--long {
  --section-heading-size: clamp(2.26rem, 4.05vw, 3.58rem);
  --section-heading-size-tablet: clamp(2.08rem, 4.55vw, 2.88rem);
  --section-heading-size-mobile: clamp(1.9rem, 7.05vw, 2.3rem);
  --section-heading-max: 15.8ch;
}

.section-intro {
  margin: 12px 0 0;
  max-width: 640px;
  line-height: 1.62;
}

.feature-grid,
.resource-grid,
.interview-grid,
.story-layout {
  display: grid;
  gap: 18px;
}

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

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

.story-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
}

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

.review-card {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(242, 238, 228, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(18, 18, 18, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  pointer-events: none;
}

.review-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.review-card-hidden {
  display: none;
}

.review-grid.is-expanded .review-card-hidden {
  display: block;
}

.story-media,
.story-copy {
  position: relative;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow);
}

.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.story-copy {
  padding: 34px;
}

.story-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.story-social-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.story-social-proof a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(240, 198, 60, 0.025));
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.story-social-proof strong {
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.story-social-proof a:hover,
.story-social-proof a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 198, 60, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(240, 198, 60, 0.04));
  color: var(--text);
}

.feature-card,
.resource-card,
.faq-card {
  padding: 30px;
}

.feature-card h3,
.resource-card h3,
.faq-card h3,
.timeline-card h3,
.glass-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.split-panel {
  padding: 30px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 36px;
  align-items: start;
}

.proof-copy {
  max-width: 560px;
}

.proof-copy p {
  margin: 0 0 16px;
}

.problem-bullets {
  margin-top: 22px;
}

.problem-bullets .mini-label {
  margin-bottom: 12px;
}

.problem-bullets ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted-strong);
}

.problem-bullets li {
  line-height: 1.6;
}

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

.diagnosis-card {
  padding: 22px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
}

.diagnosis-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  line-height: 1.16;
}

.diagnosis-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.diagnosis-card-accent {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 85% 16%, rgba(240, 198, 60, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(240, 198, 60, 0.04));
}

.proof-cards-stats {
  margin-top: 14px;
}

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

.stat-card,
.testimonial-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
  overflow: hidden;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
}

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

.testimonial-card {
  text-align: center;
}

.testimonial-card p {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card footer {
  margin-top: 16px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-strong);
  font-weight: 700;
}

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

.proof-scan-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 12px;
}

.proof-scan-row-wide {
  margin-bottom: 12px;
  justify-content: flex-start;
}

.featured-interview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  margin-bottom: 10px;
  padding: 20px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow);
}

.featured-interview-video {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
}

.featured-interview-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-interview-video iframe:not([src]),
.interview-video iframe:not([src]) {
  background:
    radial-gradient(circle at center, rgba(240, 111, 60, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(15, 20, 33, 0.95), rgba(8, 12, 21, 0.98));
}

.interview-poster {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.16)),
    var(--poster-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.interview-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.03) 44%, rgba(8, 8, 8, 0.18) 100%),
    radial-gradient(circle at 50% 46%, rgba(240, 198, 60, 0.06), transparent 18%);
  pointer-events: none;
}

.interview-poster .video-poster-kicker,
.interview-poster .video-poster-copy,
.interview-poster .video-poster-list,
.interview-poster .video-poster-play-text,
.interview-poster .video-poster-grid,
.interview-poster .video-poster-play {
  display: none;
}

.interview-poster-featured {
  background-position: center 22%;
}

.interview-poster-compact {
  background-position: center 18%;
}

.interview-poster-compact::before {
  inset: 14px;
  border-radius: 22px;
}

.featured-interview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px 8px 4px;
  max-width: 520px;
}

.featured-interview-copy h3 {
  margin: 0 0 12px;
}

.featured-interview-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.interview-carousel-shell {
  display: grid;
  gap: 18px;
}

.interview-more-mobile {
  display: none;
  margin: 12px 0 14px;
}

.interview-carousel-header {
  display: block;
}

.interview-carousel-header h3 {
  margin: 6px 0 0;
  max-width: 24ch;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(240, 198, 60, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(240, 198, 60, 0.04));
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 198, 60, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(240, 198, 60, 0.08));
}

.carousel-button span {
  font-size: 1.2rem;
  line-height: 1;
}

.interview-carousel-stage {
  position: relative;
  overflow: hidden;
  --interview-card-width: 320px;
}

.interview-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  padding-bottom: 8px;
  background: transparent;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.interview-carousel-track::-webkit-scrollbar {
  display: none;
}

.interview-carousel-track .interview-card {
  flex: 0 0 var(--interview-card-width);
}

.interview-card {
  position: relative;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.96));
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.interview-video {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.interview-copy {
  padding: 20px 22px 24px;
}

.testimonial-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 0;
  width: 100%;
}

.testimonial-more .button {
  justify-content: center;
  white-space: nowrap;
}

.testimonial-more .button-secondary {
  align-self: center;
  width: auto;
  min-width: 0;
  padding-inline: 20px;
}

.testimonial-more .button-primary {
  align-self: center;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  min-width: 0;
  padding-inline: 28px;
}

.timeline-card {
  padding: 30px;
  min-height: 232px;
  display: flex;
  flex-direction: column;
}

.timeline-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.5rem;
}

.timeline-card p {
  margin-top: auto;
}

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

.legal-section .section-heading {
  max-width: 900px;
}

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

.legal-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.82), rgba(8, 8, 8, 0.92));
  box-shadow: var(--shadow);
}

.legal-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.legal-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--accent-2);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px;
  background:
    radial-gradient(circle at 15% 15%, rgba(213, 68, 54, 0.12), transparent 24%),
    radial-gradient(circle at 78% 24%, rgba(240, 198, 60, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(17, 14, 12, 0.99), rgba(7, 7, 7, 0.99));
}

.cta-panel h2 {
  max-width: 11ch;
}

.cta-copy {
  max-width: 680px;
}

.cta-copy p {
  max-width: 660px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}

.cta-actions .button-primary {
  width: auto;
  min-height: 60px;
  padding-inline: 36px;
  font-size: 1.08rem;
}

.booking-nav {
  margin-left: auto;
}

.booking-hero {
  margin-bottom: 20px;
}

.booking-copy .hero-text {
  max-width: 48rem;
}

.booking-section {
  padding: 34px;
  overflow: visible;
}

.booking-section-simple {
  padding: 20px;
  overflow: visible;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: start;
}

.booking-info-panel,
.booking-calendar-panel,
.booking-point,
.booking-note {
  position: relative;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.84), rgba(8, 8, 8, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-info-panel::before,
.booking-calendar-panel::before,
.booking-point::before,
.booking-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, transparent 70%, rgba(240, 198, 60, 0.04));
  pointer-events: none;
}

.booking-info-panel,
.booking-calendar-panel {
  padding: 24px;
}

.booking-calendar-panel-simple {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-calendar-panel-simple::before {
  display: none;
}

.booking-shell {
  display: grid;
  gap: 18px;
  overflow: visible;
}

.booking-title-wrap {
  text-align: center;
  padding: 14px 0 42px;
  overflow: visible;
}

.booking-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 14px;
  align-items: stretch;
}

.booking-rules-column,
.booking-calendar-column {
  min-width: 0;
  overflow: visible;
}

.booking-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.booking-rules-side {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  height: 100%;
}

.booking-rule-card {
  position: relative;
  padding: 12px 14px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.03));
  overflow: hidden;
}

.booking-rule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, transparent 70%, rgba(240, 198, 60, 0.04));
  pointer-events: none;
}

.booking-rule-card > * {
  position: relative;
  z-index: 1;
}

.booking-rule-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.1;
}

.booking-rule-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.42;
}

.booking-warning-title {
  margin: 0 auto;
  max-width: none;
  font-size: clamp(3.2rem, 6.25vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.072em;
  padding: 0 0 56px 0;
  overflow: visible;
}

.booking-warning-title .headline-line {
  margin-top: 0;
  white-space: nowrap;
  display: block;
}

.booking-warning-title .headline-line + .headline-line {
  margin-top: 2px;
}

.booking-warning-title .headline-line:last-child {
  padding-bottom: 0.14em;
}

.booking-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.booking-point {
  padding: 18px;
}

.booking-point h3,
.booking-note p {
  margin-bottom: 8px;
}

.booking-note {
  margin-top: 16px;
  padding: 18px;
}

.booking-calendar-panel h2 {
  margin-bottom: 16px;
}

.booking-calendly {
  min-width: 320px;
  height: 760px;
  border-radius: 22px;
  overflow: hidden;
}

.booking-calendar-panel-simple .booking-calendly {
  width: 100%;
  height: 100%;
  min-height: 760px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(240, 198, 60, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.booking-calendar-panel-simple .booking-calendly iframe {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  transform: none;
}

.qualification-next-step {
  margin-top: -28px;
}

.qualification-standards {
  margin-top: -14px;
}

.qualification-thanks-hero .hero-copy {
  padding-top: 20px;
  padding-bottom: 40px;
}

.qualification-thanks-flow {
  margin-top: 8px;
}

.qualification-thanks-panel {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 16%, rgba(213, 68, 54, 0.09), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(240, 198, 60, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(8, 8, 8, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.qualification-thanks-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, transparent 70%, rgba(240, 198, 60, 0.04));
  pointer-events: none;
}

.qualification-thanks-panel > * {
  position: relative;
  z-index: 1;
}

.qualification-thanks-heading {
  max-width: 880px;
  margin-bottom: 20px;
}

.qualification-thanks-heading h2 {
  max-width: 16ch;
}

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

.qualification-process-card,
.qualification-note-panel {
  position: relative;
  padding: 24px 24px 22px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
  overflow: hidden;
}

.qualification-process-card::before,
.qualification-note-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, transparent 70%, rgba(240, 198, 60, 0.04));
  pointer-events: none;
}

.qualification-process-card > *,
.qualification-note-panel > * {
  position: relative;
  z-index: 1;
}

.qualification-process-card h3,
.qualification-note-panel h3 {
  margin: 0 0 14px;
  max-width: 14ch;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.qualification-process-card .card-kicker,
.qualification-note-panel .eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.qualification-process-card p,
.qualification-note-panel p {
  margin: 0 0 12px;
  color: var(--muted-strong);
  font-size: 1.01rem;
  line-height: 1.76;
  text-wrap: pretty;
}

.qualification-process-card a,
.qualification-note-panel a {
  color: var(--text);
  text-decoration-color: rgba(240, 198, 60, 0.42);
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.qualification-process-card a:hover,
.qualification-process-card a:focus-visible,
.qualification-note-panel a:hover,
.qualification-note-panel a:focus-visible {
  color: var(--accent-soft);
  text-decoration-color: rgba(240, 198, 60, 0.82);
}

.qualification-process-card p:last-child,
.qualification-note-panel p:last-child {
  margin-bottom: 0;
}

.qualification-note-panel {
  margin-top: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 198, 60, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(240, 198, 60, 0.03));
}

.qualification-cta-compact {
  padding-block: 30px;
}

.lead-capture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 20px;
  align-items: stretch;
}

.lead-copy-panel,
.lead-form-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.84), rgba(8, 8, 8, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-copy-panel::before,
.lead-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, transparent 70%, rgba(240, 198, 60, 0.04));
  pointer-events: none;
}

.lead-copy-panel > *,
.lead-form-panel > * {
  position: relative;
  z-index: 1;
}

.lead-copy-panel h2,
.lead-form-panel h2 {
  margin-bottom: 14px;
}

.lead-form-title {
  max-width: 12ch;
}

.lead-form-title-compact {
  max-width: 9ch;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.98;
}

.lead-form-note {
  margin: -2px 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.signal-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted-strong);
  line-height: 1.65;
}

.signal-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.signal-mark-negative {
  background: rgba(213, 68, 54, 0.14);
  color: #ff978e;
}

.signal-mark-positive {
  background: rgba(240, 198, 60, 0.14);
  color: var(--accent-2);
}

.statement-block {
  padding: 24px 26px;
  border: 1px solid rgba(240, 198, 60, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
}

.statement-block p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.75;
}

.micro-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.custom-lead-form {
  display: grid;
  gap: 12px;
}

.custom-lead-form .kajabi-form__form-item {
  margin: 0;
}

.custom-lead-form input[type="text"],
.custom-lead-form input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(240, 198, 60, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  appearance: none;
}

.custom-lead-form .kajabi-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 198, 60, 0.98), rgba(247, 231, 176, 0.92));
  color: #15120a;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(240, 198, 60, 0.2);
  cursor: pointer;
  appearance: none;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted-strong);
  line-height: 1.65;
}

.guide-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(240, 198, 60, 0.22);
}

.lead-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.kajabi-embed-shell {
  display: grid;
  gap: 16px;
  min-height: 320px;
  padding: 22px;
  border: 1px solid rgba(240, 198, 60, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 68, 54, 0.07), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(240, 198, 60, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(240, 198, 60, 0.02));
  align-content: start;
}

.kajabi-embed-shell p {
  margin: 0;
}

.kajabi-embed-label {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kajabi-embed-code {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--muted-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.pdf-hero .hero-copy {
  padding-top: 14px;
  padding-bottom: 30px;
}

.pdf-hero h1 {
  max-width: 15.35ch;
  line-height: 1.12;
  padding-inline: 0.08em 0.18em;
  padding-bottom: 0.16em;
}

.pdf-hero .headline-line-main,
.pdf-hero .headline-line-accent {
  display: inline-block;
  padding-right: 0.12em;
}

.free-pdf-hero-title .headline-line-tail {
  display: inline-block;
  padding-right: 0.08em;
  word-spacing: 0.05em;
}

.verbs-200-hero-title .headline-line-tail {
  display: inline-block;
  padding-inline: 0.08em;
  word-spacing: 0.04em;
}

.words-250-hero-title .headline-line-tail {
  display: inline-block;
  padding-inline: 0.08em;
  word-spacing: 0.04em;
}

.words-100-hero-title .headline-line-tail,
.phrases-50-hero-title .headline-line-tail {
  display: inline-block;
  padding-inline: 0.08em;
  word-spacing: 0.04em;
}

.phrases-50-hero-title {
  max-width: 15.95ch;
}

.pdf-hero .headline-line {
  margin-top: 12px;
}

.page-shell:has(.pdf-hero) {
  width: min(calc(100% - 20px), 1380px);
}

.pdf-hero + .section {
  margin-top: 18px;
}

body.resource-page-compact .page-shell {
  gap: 18px;
}

body.resource-page-compact main {
  display: grid;
  gap: 18px;
}

body.resource-page-compact main > .section {
  margin: 0;
}

body.resource-page-compact .pdf-hero .hero-copy {
  padding-top: 8px;
  padding-bottom: 22px;
}

body.resource-page-compact .hero-text {
  max-width: 44rem;
}

body.resource-page-compact .lead-capture-layout {
  gap: 16px;
}

body.resource-page-compact .lead-copy-panel,
body.resource-page-compact .lead-form-panel {
  padding: 26px;
}

body.resource-page-compact .signal-list {
  margin-top: 16px;
  gap: 10px;
}

body.resource-page-compact .lead-note {
  margin-top: 14px;
}

body.resource-page-compact .section-heading {
  margin-bottom: 16px;
}

body.resource-page-compact .resource-grid {
  gap: 14px;
}

body.resource-page-compact .resource-card {
  min-height: 0;
  padding: 22px 20px;
}

body.resource-page-compact .split-panel {
  padding: 30px;
}

body.resource-page-compact .cta-panel {
  padding: 30px 32px;
}

#kajabi-form-embed #kajabi-form {
  width: 100%;
}

#kajabi-form-embed .kajabi-form__content {
  display: grid;
  gap: 12px;
}

#kajabi-form-embed fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

#kajabi-form-embed .kajabi-form__form-item {
  margin-bottom: 12px;
}

#kajabi-form-embed input[type="text"],
#kajabi-form-embed input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(240, 198, 60, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

#kajabi-form-embed .kajabi-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 198, 60, 0.98), rgba(247, 231, 176, 0.92));
  color: #15120a;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(240, 198, 60, 0.2);
  cursor: pointer;
}

#kajabi-250-embed #kajabi-form {
  width: 100%;
}

#kajabi-250-embed .kajabi-form__content {
  display: grid;
  gap: 12px;
}

#kajabi-250-embed fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

#kajabi-250-embed .kajabi-form__form-item {
  margin-bottom: 12px;
}

#kajabi-250-embed input[type="text"],
#kajabi-250-embed input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(240, 198, 60, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

#kajabi-250-embed .kajabi-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 198, 60, 0.98), rgba(247, 231, 176, 0.92));
  color: #15120a;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(240, 198, 60, 0.2);
  cursor: pointer;
}

.lead-form-only {
  width: min(100%, 620px);
  margin: 0 auto;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 4px 0;
  color: var(--muted);
}

.footer-links a {
  font-family: "Sora", sans-serif;
}

.footer-logo {
  display: block;
  width: auto;
  height: 22px;
}

.footer-brand p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 28px, 0);
  }
}

@keyframes scanDrift {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

@keyframes playPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 34px rgba(240, 198, 60, 0.26);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 54px rgba(240, 198, 60, 0.34);
  }
}

@keyframes playFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes callPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 34px rgba(240, 198, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(240, 198, 60, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

@keyframes floatLabel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes guideArrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.75;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-wordmark img {
    height: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 4px 4px;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
    align-self: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 320px);
    max-width: calc(100% - 16px);
  }

  .site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero,
  .cinema-section,
  .summary-band,
  .proof-layout,
  .feature-grid,
  .timeline,
  .proof-cards,
  .featured-interview,
  .interview-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-proof-strip,
  .diagnosis-grid,
  .video-preframe-panel {
    grid-template-columns: 1fr;
  }

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

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

  .sticky-stage {
    position: static;
  }

  .cinema-copy {
    padding: 0;
  }

  .video-poster-copy {
    top: 126px;
    left: 34px;
    right: 34px;
    max-width: min(280px, calc(100% - 220px));
  }

  .video-poster-kicker {
    top: 34px;
    left: 36px;
    right: 36px;
    font-size: clamp(0.94rem, 1.28vw, 1.12rem);
    letter-spacing: 0.16em;
  }

  .video-poster-copy strong {
    max-width: 7.4ch;
    font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  }

  .video-poster-meta {
    max-width: 16ch;
    font-size: 0.84rem;
  }

  .video-poster-play {
    left: 74%;
    width: 156px;
  }

  .video-poster-play-ring {
    width: 108px;
    height: 108px;
  }

  .video-poster-play-icon {
    top: 54px;
    left: 58px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .button-apply-video {
    width: min(320px, 100%);
  }

  .hero-stage {
    min-height: 640px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 7vw, 5rem);
  }

  .hero-main-card {
    right: 30px;
    bottom: 156px;
  }

  .hero-main-card h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 4vw, 2.2rem);
  }

  .hero-side-card:nth-of-type(2) {
    right: 30px;
    bottom: 86px;
  }

  .hero-side-card:nth-of-type(3) {
    left: 30px;
    bottom: 30px;
  }

  .hero-side-card {
    width: 220px;
  }

  .cta-panel,
  .site-footer {
    align-items: flex-start;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .proof-scan-row {
    justify-content: flex-start;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-two-col {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 24px;
  }

  .booking-section-simple {
    padding: 14px;
  }

  .booking-rules,
  .booking-rules-side {
    grid-template-columns: 1fr;
  }

  .qualification-process-grid {
    grid-template-columns: 1fr;
  }

  .qualification-thanks-panel {
    padding: 24px;
  }

  .booking-warning-title {
    max-width: none;
    font-size: clamp(1.95rem, 7vw, 2.85rem);
    line-height: 1;
  }

  .booking-calendly {
    min-width: 100%;
    height: 760px;
  }

  .booking-calendar-panel-simple .booking-calendly {
    min-height: 760px;
    height: 760px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

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

  .interview-carousel-track {
    gap: 16px;
  }

  .interview-carousel-track .interview-card {
    flex-basis: calc((100% - 32px) / 3);
  }

}

@media (max-width: 1240px) {
  .site-header {
    gap: 18px;
    padding: 12px 16px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 11px 16px;
  }
}

@media (max-width: 900px) {
  .section-display-heading {
    font-size: var(--section-heading-size-tablet);
    line-height: var(--section-heading-line-height-tablet);
    letter-spacing: var(--section-heading-tracking-tablet);
  }

  #program .section-heading {
    max-width: 520px;
    margin-bottom: 22px;
  }

  .program-heading {
    max-width: 100%;
  }

  .program-heading-group-desktop {
    display: none;
  }

  .program-heading-group-tablet {
    display: flex;
  }

  .program-heading-group-mobile {
    display: none;
  }

  #interviews .section-heading {
    max-width: 520px;
    margin-bottom: 22px;
  }

  .interviews-heading {
    max-width: 100%;
  }

  .interviews-heading-group-desktop {
    display: none;
  }

  .interviews-heading-group-tablet {
    display: flex;
  }

  .interviews-heading-group-mobile {
    display: none;
  }

  #resources .section-heading {
    max-width: 520px;
    margin-bottom: 24px;
  }

  .resources-heading {
    max-width: 100%;
  }

  .resources-heading-group-desktop {
    display: none;
  }

  .resources-heading-group-tablet {
    display: flex;
  }

  .resources-heading-group-mobile {
    display: none;
  }

  #faq .section-heading {
    max-width: 720px;
  }

  .faq-heading {
    max-width: 100%;
  }

  .faq-heading-group-desktop {
    display: none;
  }

  .faq-heading-group-tablet {
    display: flex;
  }

  .faq-heading-group-mobile {
    display: none;
  }

  .video-float {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-float .mini-label {
    margin-bottom: 0;
  }

  .course-video-copy .eyebrow {
    font-size: clamp(1.08rem, 2.2vw, 2rem);
  }

  .course-video-section .video-poster-kicker {
    top: 34px;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  }

  .course-video-section .video-poster-course-meta {
    top: 86px;
    font-size: 0.92rem;
    max-width: 30ch;
  }

  .course-video-section .video-poster-play {
    top: 57%;
    width: auto;
    gap: 0;
  }

  .course-video-section .video-poster-play-ring {
    width: 118px;
    height: 118px;
    border-radius: 999px;
  }

  .course-video-section .video-poster-play-ring::before {
    inset: 8px;
    border-radius: 999px;
  }

  .course-video-section .video-poster-play-icon {
    transform: translate(-30%, -50%);
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }

  .course-video-section .video-poster-play-text {
    max-width: 20ch;
    font-size: 0.78rem;
    padding: 8px 12px 5px;
  }

  .video-poster-play-subtext {
    font-size: 0.7rem;
  }

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

  .interview-carousel-track {
    gap: 14px;
  }

  .interview-carousel-track .interview-card {
    flex-basis: calc((100% - 14px) / 2);
  }

}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 12% 10%, rgba(213, 68, 54, 0.08), transparent 24%),
      radial-gradient(circle at 88% 12%, rgba(240, 198, 60, 0.10), transparent 20%),
      radial-gradient(circle at 54% 96%, rgba(247, 231, 176, 0.05), transparent 22%),
      linear-gradient(180deg, #040404 0%, #070707 40%, #020202 100%);
  }

  .backdrop-orb {
    opacity: 0.36;
  }

  .backdrop-grid {
    opacity: 0.16;
  }

  .backdrop-scan {
    opacity: 0.24;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .section,
  .cinema-section {
    padding: var(--section-y-mobile) var(--section-x-mobile);
  }

  .nav-cta,
  .button {
    width: 100%;
    text-align: center;
  }

  .interview-carousel-stage {
    --interview-card-width: 78vw;
  }

  .hero-guidance {
    max-width: 28ch;
    text-align: center;
  }

  .interview-carousel-track {
    gap: 12px;
  }

  .interview-carousel-track .interview-card {
    flex: 0 0 var(--interview-card-width);
  }

  .course-video-section .video-poster-kicker {
    left: 18px;
    right: 18px;
    top: 20px;
    font-size: clamp(1.18rem, 4.9vw, 1.5rem);
    letter-spacing: -0.035em;
    white-space: nowrap;
    line-height: 1;
  }

  .interview-copy {
    padding: 16px 16px 18px;
  }

  .interview-copy h3 {
    font-size: 1.4rem;
  }

  .interview-more-mobile {
    display: block;
  }

  .interview-more-mobile {
    display: grid;
    gap: 12px;
  }

  .interview-more-mobile .button {
    width: 100%;
  }

  .interview-carousel-shell {
    display: none;
  }

  .interview-carousel-shell.is-expanded {
    display: grid;
    margin-top: 10px;
  }

  .interview-carousel-shell.is-expanded .interview-carousel-track {
    display: grid;
    width: 100%;
    gap: 14px;
    transform: none !important;
  }

  .interview-carousel-shell.is-expanded .interview-carousel-track .interview-card {
    flex: none;
    width: 100%;
  }

  .interview-carousel-shell.is-expanded .interview-carousel-track .interview-card[aria-hidden="true"] {
    display: none;
  }

  .interview-carousel-shell.is-expanded .interview-carousel-header {
    display: none;
  }

  .testimonial-more {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
  }

  .testimonial-more .button-secondary,
  .testimonial-more .button-primary {
    justify-self: stretch;
    width: 100%;
  }

  .hero-copy,
  .cinema-media,
  .feature-card,
  .resource-card,
  .faq-card,
  .legal-card,
  .split-panel,
  .timeline-card,
  .cta-panel,
  .featured-interview,
  .story-copy {
    padding: 20px;
  }

  .video-preframe-panel {
    padding: 20px;
  }

  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .site-nav {
    gap: 12px;
    padding: 12px 4px 4px;
  }

  .lead-capture-layout {
    grid-template-columns: 1fr;
  }

  .lead-form-only {
    width: 100%;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10.2vw, 3.4rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    overflow-wrap: normal;
  }

  .homepage-hero-title {
    max-width: none;
    font-size: clamp(2.06rem, 8.8vw, 2.92rem);
    line-height: 0.95;
    letter-spacing: -0.054em;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .headline-line {
    margin-top: 8px;
    padding-bottom: 0.05em;
  }

  .homepage-hero-title .headline-line {
    margin-top: 8px;
    padding-bottom: 0.05em;
    white-space: normal;
  }

  .headline-line-main,
  .headline-line-accent {
    white-space: normal;
  }

  .free-pdf-hero-title {
    font-size: clamp(2.16rem, 9.5vw, 3.1rem);
  }

  .free-pdf-hero-title .headline-line-tail {
    letter-spacing: -0.052em;
    word-spacing: 0.07em;
    padding-right: 0.12em;
  }

  .verbs-200-hero-title {
    font-size: clamp(2.02rem, 8.85vw, 2.88rem);
  }

  .verbs-200-hero-title .headline-line-tail {
    letter-spacing: -0.05em;
    padding-inline: 0.12em;
  }

  .words-250-hero-title {
    font-size: clamp(2.04rem, 8.9vw, 2.92rem);
  }

  .words-250-hero-title .headline-line-tail {
    letter-spacing: -0.05em;
    padding-inline: 0.14em;
  }

  .words-100-hero-title {
    font-size: clamp(2rem, 8.7vw, 2.84rem);
  }

  .words-100-hero-title .headline-line-tail {
    letter-spacing: -0.048em;
    padding-inline: 0.12em;
  }

  .phrases-50-hero-title {
    font-size: clamp(2rem, 8.7vw, 2.84rem);
  }

  .phrases-50-hero-title .headline-line-tail {
    letter-spacing: -0.048em;
    padding-inline: 0.12em;
  }

  .hero-text {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-proof-strip {
    gap: 14px;
  }

  .hero-proof-chip {
    padding: 14px 16px;
  }

  h2 {
    font-size: clamp(1.7rem, 8.4vw, 2.45rem);
  }

  .section {
    margin-bottom: 20px;
  }

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

  .section-display-heading {
    font-size: var(--section-heading-size-mobile);
    line-height: var(--section-heading-line-height-mobile);
    letter-spacing: var(--section-heading-tracking-mobile);
  }

  #program .section-heading {
    max-width: 320px;
    margin-bottom: 18px;
  }

  #program .section-intro {
    margin-top: 16px;
  }

  .program-heading {
    max-width: 100%;
  }

  #program .section-heading h2 {
    --section-heading-size-mobile: clamp(1.8rem, 6.8vw, 2.14rem);
  }

  .program-heading-group-tablet {
    display: none;
  }

  .program-heading-group-mobile {
    display: flex;
  }

  #interviews .section-heading {
    max-width: 340px;
    margin-bottom: 18px;
  }

  #interviews .section-intro {
    margin-top: 16px;
  }

  .interviews-heading {
    max-width: 100%;
  }

  #interviews .section-heading h2 {
    --section-heading-size-mobile: clamp(1.82rem, 6.9vw, 2.18rem);
  }

  .interviews-heading-group-tablet {
    display: none;
  }

  .interviews-heading-group-mobile {
    display: flex;
  }

  #resources .section-heading {
    max-width: 320px;
    margin-bottom: 20px;
  }

  .resources-heading {
    max-width: 100%;
  }

  .resources-heading-group-tablet {
    display: none;
  }

  .resources-heading-group-mobile {
    display: flex;
  }

  #faq .section-heading {
    max-width: 380px;
  }

  .faq-heading {
    max-width: 100%;
  }

  .faq-heading-group-tablet {
    display: none;
  }

  .faq-heading-group-mobile {
    display: flex;
  }

  :is(.program-heading, .interviews-heading, .resources-heading, .faq-heading).section-display-heading {
    display: block;
    width: auto;
  }

  .program-heading-group-mobile,
  .interviews-heading-group-mobile,
  .resources-heading-group-mobile,
  .faq-heading-group-mobile {
    display: none;
  }

  .section-heading-flow-mobile {
    display: block;
  }

  .stacked-heading-lines.section-display-heading {
    display: block;
    width: auto;
  }

  .stacked-heading-line {
    display: inline;
  }

  .stacked-heading-line + .stacked-heading-line::before {
    content: " ";
  }

  .proof-layout,
  .proof-cards-stats,
  .timeline,
  .faq-grid {
    gap: 18px;
  }

  .stat-card,
  .diagnosis-card,
  .timeline-card,
  .faq-card {
    padding: 22px;
  }

  .proof-scan-row-wide {
    margin-bottom: 20px;
  }

  .video-next-step {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    display: none;
  }

  .hero-logo img {
    width: min(280px, 100%);
  }

  .brand-wordmark img,
  .footer-logo {
    height: 16px;
  }

  .cinema-media {
    min-height: auto;
    padding: 22px;
  }

  .video-frame,
  .button-apply-video {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .video-frame {
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 16px;
  }

  .video-poster {
    padding: 0;
  }

  .video-poster-copy {
    top: 92px;
    left: 22px;
    right: 22px;
    max-width: min(172px, calc(100% - 112px));
  }

  .video-poster-kicker {
    top: 22px;
    left: 22px;
    right: 22px;
    font-size: 0.84rem;
    letter-spacing: 0.14em;
    text-align: center;
  }

  .video-poster-copy strong {
    max-width: 6.4ch;
    font-size: clamp(1.28rem, 4.8vw, 1.62rem);
    line-height: 0.96;
  }

  .video-poster-meta {
    font-size: 0.78rem;
  }

  .video-poster-list {
    left: 22px;
    right: 22px;
    bottom: 18px;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .video-poster-list span,
  .story-points span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .intro-guide {
    display: none;
  }

  .video-poster-play {
    top: 50%;
    left: 74%;
    width: 102px;
    gap: 8px;
    padding: 0;
  }

  .video-poster-play-ring {
    width: 76px;
    height: 76px;
  }

  .video-poster-play-icon {
    top: 38px;
    left: 40px;
    transform: translate(-40%, -50%);
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .video-poster-play-text {
    display: block;
    max-width: 11ch;
    font-size: 0.56rem;
    letter-spacing: 0.04em;
  }

  .button-apply-video {
    margin-top: 8px;
    width: min(320px, 100%);
    min-height: 48px;
    font-size: 0.86rem;
  }

  .course-video-copy .eyebrow {
    font-size: clamp(0.98rem, 7vw, 1.42rem);
    letter-spacing: 0.12em;
  }

  .course-video-copy h2 {
    max-width: 13ch;
    font-size: clamp(1.92rem, 6.4vw, 2.66rem);
    line-height: 1.04;
  }

  .video-preframe-note {
    padding: 18px;
    font-size: 0.95rem;
  }

  .video-preframe-list,
  .proof-scan-row {
    gap: 10px;
  }

  .video-preframe-list span,
  .proof-scan-row span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

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

  .interview-carousel-track {
    gap: 14px;
  }

  .interview-carousel-track .interview-card {
    flex-basis: 100%;
  }

  .course-video-section .video-poster-kicker {
    top: 24px;
    left: 16px;
    right: 16px;
    font-size: 1.06rem;
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
    text-align: center;
    padding: 0;
  }

  .course-video-section .video-poster-course-meta {
    top: 74px;
    left: 20px;
    right: 20px;
    max-width: 26ch;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .course-video-section .video-poster-play {
    top: 56%;
    width: auto;
    gap: 0;
  }

  .course-video-section .video-poster-play-ring {
    width: 52px;
    height: 52px;
    border-radius: 999px;
  }

  .course-video-section .video-poster-play-ring::before {
    inset: 5px;
    border-radius: 999px;
  }

  .course-video-section .video-poster-play-icon {
    transform: translate(-30%, -50%);
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
  }

  .course-video-section .video-poster {
    background-position: center center;
  }

  .hero-badge,
  .glass-card,
  .hero-main-card,
  .hero-side-card:nth-of-type(2),
  .hero-side-card:nth-of-type(3) {
    position: relative;
    inset: auto;
    width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-main-card,
  .hero-side-card {
    padding: 20px;
  }

  .hero-main-card h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 9vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .hero-side-card h3 {
    font-size: 1rem;
    line-height: 1.24;
  }

  .hero-badge {
    min-width: 0;
  }

  .hero-badge strong {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .glass-card p,
  .hero-badge span {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .story-media img {
    aspect-ratio: 4 / 4.5;
  }

  .resource-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 26px;
    gap: 18px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .cta-actions .button-primary {
    width: auto;
    max-width: 100%;
    min-height: 58px;
    padding-inline: 24px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(calc(100% - 12px), var(--max-width));
  }

  .hero {
    padding: 24px 8px 20px;
  }

  body {
    background:
      radial-gradient(circle at 10% 9%, rgba(213, 68, 54, 0.07), transparent 22%),
      radial-gradient(circle at 90% 11%, rgba(240, 198, 60, 0.08), transparent 18%),
      linear-gradient(180deg, #030303 0%, #050505 42%, #010101 100%);
  }

  .backdrop-orb {
    opacity: 0.28;
  }

  .backdrop-grid {
    opacity: 0.12;
  }

  .backdrop-scan {
    opacity: 0.18;
  }

  .hero-copy {
    padding: 18px 8px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.82rem, 8.25vw, 2.24rem);
    line-height: 0.92;
    letter-spacing: -0.068em;
  }

  .homepage-hero-title {
    max-width: none;
    font-size: clamp(1.72rem, 7.8vw, 2.02rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .headline-line-main,
  .headline-line-accent {
    max-width: 100%;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .headline-line-tail {
    white-space: nowrap;
  }

  .homepage-hero-title .headline-line {
    margin-top: 6px;
    padding-bottom: 0.04em;
    white-space: normal;
  }

  .free-pdf-hero-title {
    font-size: clamp(1.66rem, 7.35vw, 1.98rem);
    line-height: 0.98;
  }

  .free-pdf-hero-title .headline-line-tail {
    letter-spacing: -0.042em;
    word-spacing: 0.04em;
    padding-inline: 0;
    transform: translateX(-0.16em);
  }

  .pdf-hero .hero-text {
    max-width: 31ch;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .verbs-200-hero-title {
    font-size: clamp(1.56rem, 6.95vw, 1.92rem);
    line-height: 0.98;
  }

  .verbs-200-hero-title .headline-line-tail {
    letter-spacing: -0.042em;
    word-spacing: 0.06em;
    padding-inline: 0.14em;
  }

  .words-250-hero-title {
    font-size: clamp(1.62rem, 7.15vw, 1.96rem);
    line-height: 0.98;
  }

  .words-250-hero-title .headline-line-tail {
    letter-spacing: -0.04em;
    word-spacing: 0.05em;
    padding-inline: 0;
    transform: translateX(-0.12em);
  }

  .words-100-hero-title {
    font-size: clamp(1.58rem, 6.95vw, 1.92rem);
    line-height: 0.98;
  }

  .words-100-hero-title .headline-line-tail {
    letter-spacing: -0.038em;
    word-spacing: 0.04em;
    padding-inline: 0;
    transform: translateX(-0.06em);
  }

  .phrases-50-hero-title {
    font-size: clamp(1.58rem, 6.95vw, 1.92rem);
    line-height: 0.98;
  }

  .phrases-50-hero-title .headline-line-tail {
    letter-spacing: -0.038em;
    word-spacing: 0.04em;
    padding-inline: 0;
    transform: translateX(-0.04em);
  }

  .hero-intro-line {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .hero-text {
    max-width: 31ch;
    font-size: 0.91rem;
    line-height: 1.56;
    text-wrap: pretty;
  }

  .lead-copy-panel,
  .lead-form-panel,
  .kajabi-embed-shell {
    padding: 18px;
  }

  .booking-section {
    padding: 18px;
  }

  .booking-section-simple {
    padding: 10px;
  }

  .booking-info-panel,
  .booking-calendar-panel {
    padding: 18px;
  }

  .booking-calendar-panel-simple {
    padding: 8px;
  }

  .booking-calendly {
    height: 700px;
  }

  .booking-calendar-panel-simple .booking-calendly {
    min-height: 700px;
    height: 700px;
  }

  .booking-title-wrap {
    padding: 2px 0 0;
  }

  h2 {
    font-size: clamp(1.45rem, 6.6vw, 1.86rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .course-video-copy h2 {
    max-width: 14ch;
    font-size: clamp(1.78rem, 7.65vw, 2.24rem);
    line-height: 1.05;
  }

  .course-video-section .video-poster-kicker {
    left: 14px;
    right: 14px;
    top: 18px;
    font-size: 0.9rem;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  .course-video-section .video-poster-play {
    top: 55%;
  }

  .course-video-section .video-poster-play-ring {
    width: 44px;
    height: 44px;
  }

  .course-video-section .video-poster-play-ring::before {
    inset: 4px;
  }

  .course-video-section .video-poster-play-icon {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero,
  .summary-band,
  .section,
  .cinema-section,
  .site-footer {
    opacity: 1;
    transform: none;
  }
}
