@font-face {
  font-family: "Wanted Sans Variable";
  src: url("./assets/fonts/WantedSansVariable-v1.0.3.woff2") format("woff2-variations");
  font-display: swap;
  font-style: normal;
  font-weight: 400 1000;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./assets/fonts/SpoqaHanSansNeo-Regular-v3.3.0.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./assets/fonts/SpoqaHanSansNeo-Medium-v3.3.0.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  src: url("./assets/fonts/SpoqaHanSansNeo-Bold-v3.3.0.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Pretendard MC";
  src: url("./assets/Pretendard-Regular.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Pretendard MC";
  src: url("./assets/Pretendard-SemiBold.otf") format("opentype");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Pretendard MC";
  src: url("./assets/Pretendard-Black.otf") format("opentype");
  font-display: swap;
  font-weight: 900;
}

:root {
  color-scheme: light;
  --ink: #11110f;
  --ink-soft: #24231f;
  --navy: #0b1726;
  --paper: #f1eee6;
  --paper-deep: #ded8ca;
  --white: #fffdf7;
  --gold: #dfb66e;
  --gold-light: #f1d59d;
  --red: #da3f2f;
  --teal: #0f6a67;
  --mist: #dbe7e1;
  --line-dark: rgba(255, 253, 247, 0.24);
  --line-light: rgba(17, 17, 15, 0.22);
  --muted-dark: rgba(255, 253, 247, 0.72);
  --muted-light: rgba(17, 17, 15, 0.68);
  --header-height: 72px;
  --shell: min(1320px, calc(100vw - 96px));
  --side: max(48px, calc((100vw - 1320px) / 2));
  --ease: cubic-bezier(0.2, 0.78, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Spoqa Han Sans Neo", "Pretendard MC", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

:where(.hero, .proof, .curriculum, .final-scene) :where(a, button, summary):focus-visible {
  outline-color: var(--gold-light);
}

.site-header :where(a, button):focus-visible,
.site-footer :where(a, button):focus-visible {
  outline-color: var(--gold-light);
}

[data-carousel-track]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.pricing :where(a, button, summary):focus-visible {
  outline-color: var(--ink);
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) var(--side) 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 17, 15, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 156px;
  height: auto;
}

.brand span {
  padding-left: 14px;
  color: var(--gold-light);
  border-left: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-header nav a {
  color: rgba(255, 253, 247, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--white);
}

.header-cta {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.scene-rail {
  position: fixed;
  z-index: 80;
  right: 20px;
  top: 50%;
  display: grid;
  grid-template-rows: auto 130px auto auto;
  justify-items: center;
  gap: 8px;
  color: var(--white);
  transform: translateY(-50%);
  mix-blend-mode: difference;
  pointer-events: none;
}

.scene-rail__current,
.scene-rail__total {
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
}

.scene-rail__line {
  position: relative;
  display: block;
  width: 1px;
  height: 130px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scene-rail__line i {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  height: 11.11%;
  background: var(--white);
  transition: height 360ms var(--ease);
}

.scene-rail__label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  writing-mode: vertical-rl;
}

.scene {
  position: relative;
  min-height: 100svh;
  padding-block: clamp(96px, 12vh, 150px);
  scroll-margin-top: var(--header-height);
}

.scene-kicker {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-kicker--gold {
  color: var(--gold-light);
}

.scene-kicker--red {
  color: var(--red);
}

.scene-kicker,
.scene-rail__index,
.scene-rail__label,
.dialogue p span,
.compare-copy > div > span,
.note-number,
.program-book__head,
.price-ticket__top,
.target-schedule span {
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
}

.scene-heading h2 {
  margin: 0;
  font-family: "Spoqa Han Sans Neo", "Pretendard MC", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.scene-heading h2 em {
  font-style: normal;
  color: var(--red);
}

.scene-heading > p:last-child {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted-light);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}

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

.scene-heading--split > p:last-child {
  margin: 0 0 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

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

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

.button--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-underline-offset: 5px;
}

.text-link--light {
  color: var(--white);
}

.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

/* 01 — Hero */

.hero {
  display: flex;
  align-items: stretch;
  min-height: 100svh;
  padding: calc(var(--header-height) + env(safe-area-inset-top)) 0 0;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.72) contrast(1.08) brightness(0.75);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.98) 0%, rgba(10, 10, 9, 0.9) 42%, rgba(10, 10, 9, 0.12) 76%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.85), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: block;
  padding-block: clamp(76px, 13vh, 150px) 118px;
}

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

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard MC", sans-serif;
  font-size: clamp(52px, 7.35vw, 112px);
  font-weight: 900;
  letter-spacing: -0.062em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
  margin-top: 0.16em;
  color: var(--gold-light);
  font-style: normal;
}

.hero-default {
  width: fit-content;
  margin: 34px 0 0;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-question {
  margin: 30px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.hero-question strong {
  color: var(--gold-light);
  font-weight: 950;
}

.hero-promise {
  max-width: 720px;
  margin: 18px 0 32px;
  color: var(--muted-dark);
  font-size: clamp(15px, 1.2vw, 18px);
}

.hero-promise b {
  color: var(--white);
}

.hero-caption {
  display: none;
}

.hero-caption span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-caption p {
  margin: 12px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
}

.hero-contract {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 58px;
  color: rgba(255, 253, 247, 0.74);
  background: rgba(17, 17, 15, 0.88);
  border-top: 1px solid var(--line-dark);
}

.hero-contract span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-right: 1px solid var(--line-dark);
  font-size: 12px;
  text-align: center;
}

.hero-contract span:last-child {
  border-right: 0;
}

.hero-contract b {
  margin-right: 5px;
  color: var(--white);
}

/* 02 — Diagnosis */

.diagnosis {
  color: var(--ink);
  background: var(--paper);
}

.diagnosis::before {
  content: "WHY?";
  position: absolute;
  top: 78px;
  right: 2vw;
  color: rgba(17, 17, 15, 0.035);
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard MC", sans-serif;
  font-size: clamp(130px, 25vw, 390px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  pointer-events: none;
}

.diagnosis-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: 64px 80px;
}

.diagnosis .scene-heading {
  padding-top: 8px;
}

.dialogue-board {
  display: grid;
  gap: 20px;
}

.dialogue {
  position: relative;
  padding: 18px 22px;
  background: rgba(255, 253, 247, 0.38);
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-light);
  box-shadow: none;
}

.dialogue::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: var(--teal);
}

.dialogue--one { margin-right: 12%; }
.dialogue--two { margin-left: 8%; margin-right: 4%; }
.dialogue--three { margin-left: 16%; }

.dialogue p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.1);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 780;
}

.dialogue p:last-child {
  border-bottom: 0;
}

.dialogue p span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.dialogue .dialogue-stop {
  color: var(--red);
}

.diagnosis-verdict {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  padding: 25px 28px;
  color: var(--white);
  background: var(--ink);
}

.diagnosis-verdict p,
.diagnosis-verdict strong {
  margin: 0;
}

.diagnosis-verdict p {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.diagnosis-verdict strong {
  font-size: clamp(21px, 2.35vw, 34px);
  letter-spacing: -0.04em;
}

.diagnosis-verdict u {
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
}

.provocation-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.provocation-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  min-height: 104px;
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 760;
  line-height: 1.55;
}

.provocation-list li:nth-child(even) {
  padding-left: 28px;
  border-right: 0;
}

.provocation-list span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

/* 03 — Before / After */

.change {
  background: #e7e1d4;
}

.compare-carousel {
  position: relative;
}

.compare-track {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
}

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

.compare-carousel--single .compare-track {
  display: block;
  overflow: visible;
  scroll-snap-type: none;
  touch-action: auto;
}

.compare-slide {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: minmax(340px, 0.8fr) minmax(460px, 1.2fr);
  min-height: min(620px, 67vh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.compare-carousel--single .compare-slide {
  width: 100%;
}

.compare-slide figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.compare-slide figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 15, 0.85), transparent 46%);
  pointer-events: none;
}

.compare-slide figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-slide figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.compare-slide figcaption span {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.compare-copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(28px, 4vw, 58px);
}

.compare-copy > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.compare-copy > div:first-child {
  padding-top: 0;
}

.compare-copy span {
  padding-top: 6px;
  color: rgba(255, 253, 247, 0.58);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.after-copy > span {
  color: var(--gold-light);
}

.compare-copy blockquote {
  margin: 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.7;
}

.after-copy blockquote {
  color: var(--white);
  font-size: clamp(19px, 1.9vw, 27px);
  font-weight: 680;
  line-height: 1.62;
}

.after-copy blockquote b {
  color: var(--gold-light);
}

.compare-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.compare-copy li {
  padding: 6px 10px;
  color: var(--gold-light);
  border: 1px solid rgba(223, 182, 110, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr 48px 48px;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.carousel-controls p {
  display: flex;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.carousel-controls strong {
  color: var(--red);
}

.carousel-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(17, 17, 15, 0.18);
}

.carousel-line i {
  display: block;
  width: 33.33%;
  height: 100%;
  background: var(--ink);
  transition: width 300ms var(--ease);
}

.carousel-controls button {
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.carousel-controls button:hover:not(:disabled) {
  color: var(--white);
  background: var(--ink);
}

.carousel-controls button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.change-verdict {
  margin: 34px 0 0;
  font-size: clamp(21px, 2.3vw, 34px);
  font-weight: 680;
  letter-spacing: -0.04em;
}

.change-verdict strong {
  color: var(--red);
  font-weight: 950;
}

/* 04 — Free lesson proof */

.proof {
  color: var(--white);
  background: var(--navy);
}

.proof::before {
  content: "LESSON 03";
  position: absolute;
  top: 86px;
  right: 2vw;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard MC", sans-serif;
  font-size: clamp(90px, 16vw, 250px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(640px, 1.3fr);
  gap: 44px 72px;
  align-items: start;
}

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

.proof-heading h2 em {
  color: var(--gold-light);
}

.proof-heading > p:last-of-type {
  color: var(--muted-dark);
}

.proof-heading .button {
  margin-top: 32px;
}

.product-stage {
  position: relative;
  min-height: 690px;
  padding-bottom: 70px;
}

.product-shot {
  margin: 0;
  background: #07101b;
  border: 1px solid rgba(223, 182, 110, 0.4);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-shot__zoom {
  position: relative;
  display: block;
  background: #07101b;
  text-decoration: none;
}

.product-shot__zoom-label {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.05em;
  line-height: 1;
}

.product-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  color: rgba(255, 253, 247, 0.74);
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  line-height: 1.45;
}

.product-shot figcaption span {
  flex: none;
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-shot figcaption b {
  margin-left: auto;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.product-shot--main {
  position: relative;
  z-index: 2;
  width: 88%;
  margin-left: 0;
}

.product-shot--main img,
.product-shot--overview img {
  aspect-ratio: 16 / 9;
}

.product-shot--overview {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 12px;
  width: 55%;
  transform: translateY(4%);
}

.product-shot--mobile {
  position: absolute;
  z-index: 3;
  right: 3%;
  top: 31%;
  width: 22%;
  min-width: 148px;
  transform: rotate(1.2deg);
}

.product-shot--mobile img {
  aspect-ratio: 390 / 844;
}

.product-shot--mobile figcaption {
  display: block;
  padding: 8px;
  font-size: 9px;
}

.product-shot--mobile figcaption span {
  display: block;
  margin-bottom: 2px;
}

.proof-sequence {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.proof-sequence li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 104px;
  padding: 20px 18px;
  border-right: 1px solid var(--line-dark);
}

.proof-sequence li:last-child {
  border-right: 0;
}

.proof-sequence b {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.proof-sequence span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.proof-honesty {
  grid-column: 1 / -1;
  margin: -18px 0 0;
  color: rgba(255, 253, 247, 0.58);
  font-size: 11px;
}

/* 05 — Learning experience */

.experience {
  color: var(--ink);
  background: var(--mist);
}

.experience-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.42fr);
  align-items: end;
  gap: 76px;
}

.experience-heading h2 {
  grid-column: 1;
}

.experience-heading h2 del {
  color: rgba(17, 17, 15, 0.36);
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.08em;
}

.experience-heading h2 em {
  color: var(--teal);
}

.experience-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 6px;
}

.learning-loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 60px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.learning-loop li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 236px;
  padding: 20px;
  border-right: 1px solid var(--line-light);
}

.learning-loop li:last-child {
  border-right: 0;
}

.learning-loop li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -13px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--teal);
  background: var(--mist);
  font-size: 18px;
  font-weight: 500;
  transform: translateY(-50%);
}

.learning-loop b {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.learning-loop strong {
  margin-top: auto;
  font-size: clamp(24px, 2.7vw, 40px);
  letter-spacing: -0.05em;
}

.learning-loop span {
  margin-top: 6px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.5;
}

.experience-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  border-top: 1px solid var(--ink);
}

.experience-notes article {
  min-height: 330px;
  padding: 32px 44px 0 0;
}

.experience-notes article + article {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--line-light);
}

.note-number {
  margin: 0 0 28px;
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.experience-notes h3 {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 46px);
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.experience-notes article > p:not(.note-number, .planning-note) {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted-light);
}

.experience-notes dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 26px 0 0;
  border-top: 1px solid var(--line-light);
}

.experience-notes dl div {
  padding: 14px 14px 0 0;
}

.experience-notes dt {
  color: var(--muted-light);
  font-size: 11px;
}

.experience-notes dd {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 900;
}

.planning-note {
  margin: 28px 0 0;
  padding-left: 12px;
  color: rgba(17, 17, 15, 0.62);
  border-left: 3px solid var(--teal);
  font-size: 11px;
  font-weight: 750;
}

/* 06 — Curriculum */

.curriculum {
  color: var(--white);
  background: #171511;
}

.curriculum-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(560px, 1.26fr);
  gap: 80px;
  align-items: start;
}

.curriculum-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  grid-column: 1;
  grid-row: 1;
}

.curriculum-heading h2 em {
  display: block;
  margin-top: 0.12em;
  color: var(--gold-light);
}

.curriculum-heading h2 {
  max-width: 690px;
  font-size: clamp(44px, 4.1vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.curriculum-heading > p:last-of-type {
  color: var(--muted-dark);
}

.outcome-stack {
  grid-column: 1;
  grid-row: 2;
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
}

.outcome-stack p {
  display: grid;
  grid-template-columns: 28px 140px 1fr;
  gap: 12px;
  align-items: baseline;
  margin: 0;
  padding: 16px 0;
  color: rgba(255, 253, 247, 0.62);
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
}

.outcome-stack span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
}

.outcome-stack b {
  color: var(--white);
  font-size: 14px;
}

.outcome-stack small {
  color: rgba(255, 253, 247, 0.62);
  font-size: inherit;
}

.program-book {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--gold);
}

.program-book__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 18px;
  color: var(--paper);
  background: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.program-book details {
  border-bottom: 1px solid var(--ink);
}

.program-book details:last-child {
  border-bottom: 0;
}

.program-book summary {
  display: grid;
  grid-template-columns: 74px 1fr auto 24px;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.program-book summary::-webkit-details-marker {
  display: none;
}

.program-book summary::after {
  content: "+";
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  font-size: 24px;
  font-weight: 400;
}

.program-book details[open] summary::after {
  content: "−";
}

.program-book summary span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.program-book summary b {
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: -0.025em;
}

.program-book summary i {
  grid-column: 3;
  grid-row: 1;
  color: var(--muted-light);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.program-book ol {
  margin: 0;
  padding: 0 18px 18px;
  list-style: none;
}

.program-book li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line-light);
}

.program-book li > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.program-book li b {
  font-size: 15px;
}

.program-book li p {
  margin: 3px 0 0;
  color: var(--muted-light);
  font-size: 12px;
}

/* 07 — Fit and FAQ */

.reassurance {
  background: #e0e4df;
}

.reassurance-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 90px;
  align-items: start;
}

.fit-panel h2 {
  margin: 0;
  font-family: "Spoqa Han Sans Neo", "Pretendard MC", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.fit-panel h2 em {
  color: var(--teal);
  font-style: normal;
}

.fit-panel > p:not(.scene-kicker, .not-for) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted-light);
  font-size: 18px;
}

.fit-panel ul {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.fit-panel li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid var(--line-light);
  font-size: 15px;
  font-weight: 850;
}

.fit-panel li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
}

.not-for {
  margin: 30px 0 0;
  padding-left: 14px;
  color: rgba(17, 17, 15, 0.62);
  border-left: 3px solid var(--red);
  font-size: 12px;
}

.faq-panel {
  background: transparent;
  border-top: 4px solid var(--red);
}

.faq-panel__title {
  margin: 0;
  padding: 18px 0;
  color: var(--red);
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.faq-panel details {
  border-bottom: 1px solid rgba(17, 17, 15, 0.25);
}

.faq-panel details:last-child {
  border-bottom: 0;
}

.faq-panel summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  list-style: none;
}

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

.faq-panel summary span {
  color: var(--red);
  font-size: 24px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-panel details[open] summary span {
  transform: rotate(45deg);
}

.faq-panel details p {
  margin: 0;
  padding: 0 0 24px;
  color: rgba(17, 17, 15, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

/* 08 — Pricing */

.pricing {
  color: var(--ink);
  background: var(--gold);
}

.pricing::after {
  content: "24";
  position: absolute;
  right: 0;
  bottom: -0.12em;
  color: rgba(17, 17, 15, 0.055);
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard MC", sans-serif;
  font-size: clamp(130px, 24vw, 360px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
  pointer-events: none;
}

.pricing-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  gap: 38px 88px;
  align-items: start;
}

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

.pricing-heading h2 em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.12em;
}

.pricing-heading .text-link {
  margin-top: 28px;
}

.price-ticket {
  padding: 0 28px 30px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}

.pricing-final {
  margin-top: clamp(38px, 6vw, 82px);
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

/* The sample proof never navigates away: it opens a local modal or fails inline. */
.movie-course-v4 .product-shot__zoom {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.movie-course-v4 .product-shot__zoom:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -5px;
}

.proof-lightbox {
  width: min(1100px, calc(100vw - 32px));
  max-height: min(900px, calc(100vh - 32px));
  padding: 0;
  color: var(--white);
  background: #07101b;
  border: 1px solid rgba(255, 253, 247, 0.4);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.64);
}

.proof-lightbox::backdrop { background: rgba(2, 4, 9, 0.84); }

.proof-lightbox__frame { display: grid; max-height: inherit; }

.proof-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 253, 247, 0.22);
}

.proof-lightbox__bar p { margin: 0; font-size: 13px; font-weight: 800; }

.proof-lightbox__bar button {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold-light);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.proof-lightbox__frame > img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(min(900px, 100vh - 32px) - 70px);
  margin: auto;
  object-fit: contain;
}

.proof-lightbox__error { margin: 24px; color: var(--gold-light); font-weight: 700; }

.pricing-final h2 {
  margin: 0;
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard MC", sans-serif;
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.pricing-final h2 em {
  display: inline-block;
  margin-top: 0.1em;
  color: var(--gold-light);
  font-style: normal;
}

.pricing-final > p:not(.scene-kicker) {
  margin: 20px auto 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 650;
}

.pricing-final .button {
  margin-top: 24px;
  color: var(--ink);
  background: var(--gold-light);
}

@media (min-width: 761px) {
  .pricing-final {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 28px;
    padding-block: 28px;
    text-align: left;
  }

  .pricing-final .scene-kicker {
    grid-column: 1 / -1;
  }

  .pricing-final h2 {
    font-size: clamp(36px, 4.8vw, 62px);
  }

  .pricing-final h2 br {
    display: none;
  }

  .pricing-final > p:not(.scene-kicker) {
    margin: 4px 0 0;
  }

  .pricing-final .button {
    grid-column: 2;
    grid-row: 2 / span 2;
    margin-top: 0;
  }
}

.price-ticket__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 -28px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.price-main {
  display: grid;
  padding: 34px 0 30px;
  border-bottom: 2px solid var(--ink);
}

.price-main > span {
  color: var(--muted-light);
  font-size: 13px;
  font-weight: 700;
}

.price-main del {
  margin-left: 6px;
}

.price-main strong {
  font-family: "Spoqa Han Sans Neo", "Pretendard MC", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-main small {
  margin-left: 8px;
  font-size: 0.24em;
  letter-spacing: 0;
}

.price-main b {
  justify-self: end;
  margin-top: 10px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
}

.price-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.price-highlights p {
  margin: 0;
  padding: 14px 10px;
  border-right: 1px solid var(--line-light);
}

.price-highlights p:last-child {
  border-right: 0;
}

.price-highlights b,
.price-highlights span {
  display: block;
}

.price-highlights b {
  font-size: 13px;
}

.price-highlights span {
  margin-top: 3px;
  color: var(--muted-light);
  font-size: 10px;
  line-height: 1.35;
}

.price-contract-more {
  margin-top: 12px;
  border-top: 1px solid var(--line-light);
}

.price-contract-more summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 48px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  list-style: none;
}

.price-contract-more summary::-webkit-details-marker {
  display: none;
}

.price-contract-more summary span {
  color: var(--red);
  font-size: 20px;
  transition: transform 160ms ease;
}

.price-contract-more[open] summary span {
  transform: rotate(45deg);
}

.price-contract {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.price-contract div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  padding: 14px 14px 14px 0;
  border-bottom: 1px solid var(--line-light);
}

.price-contract div:nth-child(even) {
  padding-right: 0;
  padding-left: 14px;
  border-left: 1px solid var(--line-light);
}

.price-contract dt {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
}

.price-contract dd {
  margin: 0;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.5;
}

.button--checkout {
  width: 100%;
  margin-top: 26px;
}

.button--checkout.is-unavailable {
  color: rgba(255, 253, 247, 0.66);
  background: #47443d;
  border-color: #47443d;
  cursor: not-allowed;
}

.button--checkout.is-sample-fallback {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  cursor: pointer;
}

.button--checkout.is-unavailable:hover {
  transform: none;
}

.checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 11px 0 0;
  color: rgba(17, 17, 15, 0.66);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.checkout-note::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.price-policy-note {
  margin: 7px 0 0;
  color: rgba(17, 17, 15, 0.66);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.target-schedule {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  padding: 11px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.target-schedule p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.target-schedule p + p::before {
  content: "·";
  margin-right: 10px;
  color: rgba(17, 17, 15, 0.5);
}

.target-schedule span {
  font-size: 10px;
  font-weight: 850;
}

.target-schedule b {
  font-size: 14px;
}

.target-schedule small {
  flex-basis: 100%;
  padding: 2px 0 0;
  color: rgba(17, 17, 15, 0.68);
  border: 0;
  font-size: 9px;
  line-height: 1.4;
}

/* 09 — End title */

.final-scene {
  display: grid;
  place-items: center;
  min-height: 92svh;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
}

.final-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-content h2 {
  margin: 0;
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard MC", sans-serif;
  font-size: clamp(54px, 8.6vw, 128px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.final-content h2 em {
  display: inline-block;
  margin-top: 0.12em;
  color: var(--gold-light);
  font-style: normal;
}

.keep-word {
  white-space: nowrap;
}

.final-content > p:not(.scene-kicker) {
  margin: 32px 0 0;
  color: var(--muted-dark);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 650;
}

.action-row--center {
  justify-content: center;
  margin-top: 36px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 96px;
  padding: 18px var(--side) calc(18px + env(safe-area-inset-bottom));
  color: rgba(255, 253, 247, 0.62);
  background: #070706;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.site-footer img {
  width: 118px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  min-height: 44px;
  padding: 10px 0;
  color: var(--white);
  font-weight: 800;
}

@media (min-width: 1101px) and (min-height: 760px) {
  .hero-content {
    padding-block: clamp(52px, 7.5vh, 72px) 90px;
  }

  .diagnosis {
    padding-block: 76px 30px;
  }

  .change {
    padding-block: 72px 50px;
  }

  .diagnosis-layout {
    gap: 32px 72px;
  }

  .dialogue-board {
    gap: 14px;
  }

  .dialogue {
    padding-block: 12px;
  }

  .diagnosis-verdict {
    padding-block: 20px;
  }

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

  .provocation-list li,
  .provocation-list li:nth-child(even) {
    min-height: 94px;
    padding: 18px 20px;
    border-right: 1px solid var(--line-light);
  }

  .provocation-list li:first-child {
    padding-left: 0;
  }

  .provocation-list li:last-child {
    border-right: 0;
  }

  .change .scene-heading--split {
    gap: 12px;
    margin-bottom: 22px;
  }

  .change .scene-heading--split > p:last-child {
    font-size: 14px;
    line-height: 1.5;
  }

  .change .scene-heading h2 {
    font-size: clamp(42px, 4.8vw, 72px);
  }

  .compare-slide {
    min-height: min(430px, 48vh);
  }

  .compare-copy {
    padding-block: 24px;
  }

  .compare-copy > div {
    padding-block: 16px;
  }

  .compare-copy blockquote {
    font-size: 20px;
    line-height: 1.55;
  }

  .after-copy blockquote {
    font-size: 23px;
    line-height: 1.52;
  }

  .compare-copy ul {
    margin-top: 16px;
  }

  .change-verdict {
    margin-top: 18px;
    font-size: clamp(21px, 2vw, 29px);
  }

  .proof {
    padding-block: 82px 56px;
  }

  .product-stage {
    min-height: 610px;
  }

  .proof-layout {
    gap-block: 30px;
  }

  .proof-sequence li {
    min-height: 84px;
    padding-block: 16px;
  }

  .experience {
    padding-block: 78px 60px;
  }

  .experience-heading h2 {
    font-size: clamp(42px, 4.8vw, 70px);
    line-height: 1;
  }

  .learning-loop {
    margin-top: 36px;
  }

  .learning-loop li {
    min-height: 170px;
    padding-block: 16px;
  }

  .learning-loop strong {
    font-size: clamp(24px, 2.3vw, 34px);
  }

  .experience-notes {
    margin-top: 32px;
  }

  .experience-notes article {
    min-height: 230px;
    padding-top: 22px;
  }

  .note-number {
    margin-bottom: 14px;
  }

  .experience-notes h3 {
    font-size: clamp(27px, 2.7vw, 39px);
  }

  .experience-notes article > p:not(.note-number, .planning-note) {
    margin-top: 14px;
  }

  .experience-notes dl {
    margin-top: 14px;
  }

  .planning-note {
    margin-top: 16px;
  }

  .curriculum {
    padding-block: 78px 60px;
  }

  .curriculum-layout {
    grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
    gap: 64px;
  }

  .curriculum-heading h2 {
    font-size: clamp(44px, 4.1vw, 58px);
  }

  .outcome-stack {
    margin-top: 22px;
  }

  .outcome-stack p {
    padding-block: 10px;
  }

  .reassurance {
    padding-block: 78px 48px;
  }

  .fit-panel ul {
    margin-top: 30px;
  }

  .not-for {
    margin-top: 20px;
  }

  .faq-panel summary {
    min-height: 70px;
  }

  .pricing {
    padding-block: 78px 54px;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(calc(100% - 48px), 960px);
    --side: 24px;
  }

  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .movie-course-v4 .pricing {
    padding-block: 56px 52px;
  }

  .diagnosis-layout,
  .proof-layout,
  .curriculum-layout,
  .reassurance-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .curriculum-heading,
  .program-book,
  .outcome-stack {
    grid-column: 1;
    grid-row: auto;
  }

  .proof-heading,
  .curriculum-heading,
  .pricing-heading {
    position: static;
  }

  .proof-heading > p:last-of-type,
  .curriculum-heading > p:last-of-type,
  .pricing-heading > p:last-of-type {
    max-width: 760px;
  }

  .product-stage {
    min-height: 700px;
  }

  .proof-sequence,
  .proof-honesty {
    grid-column: 1;
  }

  .target-schedule {
    grid-column: 1;
  }

  .scene-rail {
    display: none;
  }
}

@media (max-width: 900px) {
  .scene {
    min-height: auto;
    padding-block: 104px;
  }

  .hero {
    min-height: 100svh;
    padding-block: calc(var(--header-height) + env(safe-area-inset-top)) 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 96px 138px;
  }

  .hero-caption {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 9, 0.96), rgba(10, 10, 9, 0.58)),
      linear-gradient(0deg, rgba(10, 10, 9, 0.88), transparent 48%);
  }

  .hero h1 {
    max-width: 800px;
  }

  .dialogue--one,
  .dialogue--two,
  .dialogue--three {
    margin-inline: 0;
  }

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

  .scene-heading--split > p:last-child,
  .experience-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .compare-slide {
    grid-template-columns: minmax(280px, 0.76fr) minmax(380px, 1.24fr);
    min-height: 600px;
  }

  .learning-loop {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .learning-loop li {
    scroll-snap-align: start;
  }

  .experience-notes {
    grid-template-columns: 1fr;
  }

  .experience-notes article,
  .experience-notes article + article {
    min-height: 0;
    padding: 34px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --shell: calc(100% - 32px);
    --side: 16px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: calc(var(--header-height) + env(safe-area-inset-top));
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 116px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .scene {
    min-height: auto;
    padding-block: 76px 40px;
  }

  .hero,
  .final-scene {
    min-height: 100svh;
  }

  .scene-heading h2,
  .fit-panel h2 {
    font-size: clamp(37px, 11vw, 58px);
    letter-spacing: -0.065em;
  }

  .scene-heading > p:last-child,
  .fit-panel > p:not(.scene-kicker, .not-for) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero {
    padding-block: calc(var(--header-height) + env(safe-area-inset-top)) 0;
  }

  .hero-image img {
    object-position: 68% center;
    filter: saturate(0.65) contrast(1.08) brightness(0.64);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 9, 0.96), rgba(10, 10, 9, 0.4)),
      linear-gradient(0deg, rgba(10, 10, 9, 0.95) 0%, rgba(10, 10, 9, 0.32) 65%);
  }

  .hero-content {
    padding-block: 74px 148px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 68px);
    line-height: 0.97;
  }

  .hero-default {
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-question {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-promise {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .action-row .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

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

  .hero-contract span {
    min-height: 42px;
    padding: 7px 8px;
    border-bottom: 0;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-contract span:last-child {
    border-right: 0;
  }

  .diagnosis-layout {
    gap: 26px;
  }

  .dialogue-board {
    display: flex;
    gap: 12px;
    width: calc(100% + var(--side));
    padding: 0 var(--side) 8px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .dialogue {
    flex: 0 0 calc(100% - 28px);
    margin-inline: 0;
    padding: 13px 15px;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .dialogue p {
    grid-template-columns: 24px 1fr;
    font-size: 14px;
  }

  .diagnosis-verdict {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .diagnosis-verdict strong {
    font-size: 20px;
    line-height: 1.4;
  }

  .provocation-list {
    display: flex;
    gap: 0;
    width: calc(100% + var(--side));
    padding-right: var(--side);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .provocation-list li,
  .provocation-list li:nth-child(even) {
    flex: 0 0 min(82%, 300px);
    min-height: 94px;
    padding: 16px 18px;
    border-right: 1px solid var(--line-light);
    font-size: 14px;
    scroll-snap-align: start;
  }

  .change .scene-heading--split {
    margin-bottom: 22px;
  }

  .compare-track {
    gap: 12px;
    margin-right: calc(var(--side) * -1);
    width: calc(100% + var(--side));
    padding-right: var(--side);
  }

  .compare-slide {
    flex-basis: calc(100% - 18px);
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .compare-slide figure {
    height: clamp(156px, 24svh, 210px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .compare-slide figcaption {
    right: 18px;
    bottom: 9px;
    left: 18px;
    font-size: 18px;
  }

  .compare-copy {
    padding: 14px 16px 16px;
  }

  .compare-copy > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 9px 0;
  }

  .compare-copy > div:first-child {
    padding-top: 0;
  }

  .compare-copy span {
    padding-top: 0;
  }

  .compare-copy blockquote {
    font-size: 14px;
    line-height: 1.4;
  }

  .after-copy blockquote {
    font-size: 15px;
    line-height: 1.45;
  }

  .compare-copy ul {
    margin-top: 8px;
  }

  .carousel-controls {
    grid-template-columns: auto 1fr 48px 48px;
    gap: 9px;
    margin-top: 12px;
  }

  .change-verdict {
    margin-top: 14px;
    font-size: 19px;
    line-height: 1.45;
  }

  .proof-layout {
    gap: 26px;
  }

  .proof-heading .button {
    width: 100%;
    margin-top: 20px;
  }

  .product-stage {
    display: flex;
    gap: 12px;
    width: calc(100% + var(--side));
    min-height: 0;
    padding: 0 var(--side) 8px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-shot--main,
  .product-shot--overview,
  .product-shot--mobile {
    position: static;
    flex: 0 0 calc(100% - 28px);
    width: auto;
    min-width: 0;
    transform: none;
    scroll-snap-align: start;
  }

  .product-shot img,
  .product-shot--main img,
  .product-shot--overview img,
  .product-shot--mobile img {
    width: 100%;
    height: clamp(188px, 28svh, 236px);
    aspect-ratio: auto;
    object-fit: contain;
    background: #07101b;
  }

  .product-shot--mobile figcaption,
  .product-shot--overview figcaption {
    display: flex;
  }

  .product-shot figcaption {
    display: flex;
    align-items: start;
    font-size: 10px;
  }

  .product-shot figcaption span {
    display: block;
    margin-bottom: 3px;
  }

  .product-shot figcaption b {
    display: none;
  }

  .proof-sequence {
    display: flex;
    width: calc(100% + var(--side));
    padding-right: var(--side);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .proof-sequence li {
    flex: 0 0 164px;
    min-height: 76px;
    padding: 13px 14px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .proof-sequence li:last-child {
    border-right: 0;
  }

  .proof-honesty {
    margin-top: -10px;
  }

  .learning-loop {
    grid-template-columns: repeat(4, minmax(132px, 1fr));
    margin-top: 28px;
    margin-right: calc(var(--side) * -1);
    padding-right: var(--side);
  }

  .learning-loop li {
    min-height: 142px;
    padding: 14px;
  }

  .experience-notes dl {
    grid-template-columns: 1fr 1fr;
  }

  .experience-notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
    padding: 0;
    overflow: visible;
    border-top: 0;
    scroll-snap-type: none;
  }

  .experience-notes article,
  .experience-notes article + article {
    width: 100%;
    min-height: 0;
    padding: 20px;
    border: 1px solid var(--line-light);
    scroll-snap-align: none;
  }

  .note-number {
    margin-bottom: 12px;
  }

  .experience-notes h3 {
    font-size: 26px;
  }

  .experience-notes article > p:not(.note-number, .planning-note) {
    margin-top: 14px;
  }

  .experience-notes dl {
    margin-top: 16px;
  }

  .planning-note {
    margin-top: 16px;
  }

  .curriculum-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .curriculum-heading,
  .program-book,
  .outcome-stack {
    position: static;
    width: 100%;
  }

  .program-book__head {
    padding: 10px 12px;
  }

  .program-book summary {
    min-height: 56px;
    padding: 10px 12px;
  }

  .program-book summary {
    grid-template-columns: 86px 1fr auto;
    gap: 10px;
  }

  .program-book summary span {
    font-size: 10px;
    white-space: nowrap;
  }

  .program-book summary i {
    display: none;
  }

  .program-book summary::after {
    position: static;
    grid-column: 3;
  }

  .program-book summary span::after {
    content: " · " attr(data-range);
  }

  .program-book ol {
    padding: 0 12px 12px;
  }

  .program-book li {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .outcome-stack {
    display: flex;
    gap: 0;
    width: calc(100% + var(--side));
    margin-top: 0;
    padding-right: var(--side);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .outcome-stack p {
    flex: 0 0 min(82%, 280px);
    grid-template-columns: 28px 1fr;
    min-height: 96px;
    padding: 14px;
    font-size: 11px;
    scroll-snap-align: start;
  }

  .outcome-stack p b,
  .outcome-stack p small {
    grid-column: 2;
  }

  .reassurance-layout {
    display: grid;
    gap: 36px;
    width: var(--shell);
    padding: 0;
    overflow: visible;
  }

  .fit-panel,
  .faq-panel {
    width: 100%;
  }

  .fit-panel ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 26px;
  }

  .fit-panel li {
    min-height: 66px;
    padding: 12px 8px 12px 24px;
  }

  .fit-panel li:nth-child(odd) {
    border-right: 1px solid var(--line-light);
  }

  .not-for {
    margin-top: 18px;
  }

  .pricing-layout {
    gap: 14px;
  }

  .fit-panel li {
    font-size: 14px;
  }

  .faq-panel summary {
    min-height: 62px;
    padding: 13px 0;
    font-size: 14px;
  }

  .faq-panel details p {
    padding: 0 0 20px;
    font-size: 14px;
  }

  .price-ticket {
    padding: 0 16px 14px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .price-ticket__top {
    margin-inline: -16px;
    padding-block: 9px;
  }

  .price-main strong {
    font-size: clamp(66px, 21vw, 100px);
  }

  .price-main {
    padding: 14px 0 12px;
  }

  .price-highlights p {
    padding: 8px 6px;
  }

  .price-highlights b {
    font-size: 12px;
  }

  .button--checkout {
    margin-top: 12px;
  }

  .price-contract {
    grid-template-columns: 1fr 1fr;
  }

  .price-contract div {
    grid-template-columns: 40px 1fr;
    padding: 10px 8px 10px 0;
  }

  .price-contract div:nth-child(even) {
    padding: 10px 0 10px 8px;
    border-left: 1px solid var(--line-light);
  }

  .target-schedule {
    gap: 4px 12px;
    padding-block: 9px;
  }

  .target-schedule p {
    gap: 6px;
    padding: 0;
    border: 0;
  }

  .target-schedule p + p::before {
    margin-right: 4px;
  }

  .target-schedule b {
    font-size: 12px;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .target-schedule small {
    padding: 2px 0 0;
    line-height: 1.35;
  }

  .final-scene {
    min-height: 100svh;
  }

  .final-content h2 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .final-content > p:not(.scene-kicker) {
    font-size: 16px;
  }

  .action-row--center {
    align-items: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }

}

@media (max-width: 760px) {
  .dialogue-board::-webkit-scrollbar,
  .provocation-list::-webkit-scrollbar,
  .product-stage::-webkit-scrollbar,
  .proof-sequence::-webkit-scrollbar,
  .learning-loop::-webkit-scrollbar,
  .experience-notes::-webkit-scrollbar,
  .outcome-stack::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 430px) {
  .scene {
    padding-block: 70px 34px;
  }

  .change,
  .proof {
    padding-bottom: 7px;
  }

  .experience,
  .pricing {
    padding-bottom: 0;
  }

  .hero-content {
    padding-block: 60px 150px;
  }

  .hero h1 {
    font-size: clamp(41px, 13.4vw, 58px);
  }

  .scene-kicker {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .scene-heading h2,
  .fit-panel h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.02;
  }

  .compare-slide {
    flex-basis: calc(100% - 10px);
  }

  .product-shot--overview img {
    min-height: 0;
    object-fit: contain;
  }

  .learning-loop {
    grid-template-columns: repeat(4, minmax(132px, 1fr));
  }

  .learning-loop li {
    min-height: 136px;
    padding: 13px;
  }

  .experience-notes h3 {
    font-size: 25px;
  }

  .experience-notes {
    margin-top: 10px;
  }

  .program-book summary b {
    font-size: 14px;
    line-height: 1.45;
  }

  .pricing-heading .text-link {
    margin-top: 10px;
  }

  .pricing {
    padding-top: 52px;
  }

  .pricing-heading h2 {
    font-size: 32px;
    line-height: 1;
  }

  .pricing-heading > p:last-of-type {
    margin-top: 10px;
    line-height: 1.45;
  }

  .price-main strong {
    font-size: 60px;
  }

  .price-ticket {
    padding-bottom: 8px;
  }

  .price-main {
    padding-block: 10px 8px;
  }

  .price-highlights p {
    padding-block: 5px;
  }

  .checkout-note {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.35;
  }

  .price-policy-note {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.35;
  }

  .price-contract-more {
    margin-top: 6px;
  }

  .price-contract-more summary {
    min-height: 44px;
    padding-block: 7px;
  }

  .final-content h2 {
    font-size: clamp(43px, 14vw, 64px);
  }
}

@media (max-width: 350px) {
  :root {
    --shell: calc(100% - 24px);
    --side: 12px;
  }

  .brand img {
    width: 102px;
  }

  .header-cta {
    padding-inline: 9px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-default {
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-question {
    font-size: 16px;
  }

  .hero-promise {
    font-size: 13px;
  }

  .hero-contract span {
    font-size: 9px;
  }

  .scene-heading h2,
  .fit-panel h2 {
    font-size: 33px;
  }

  .carousel-controls {
    grid-template-columns: auto 1fr 46px 46px;
  }

  .carousel-controls button {
    width: 46px;
    height: 46px;
  }

  .product-shot figcaption {
    font-size: 9px;
  }

  .price-main strong {
    font-size: 62px;
  }
}

@media (max-width: 430px) and (max-height: 650px) {
  .hero-content {
    padding-block: 30px 118px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-default {
    margin-top: 16px;
  }

  .hero-question {
    margin-top: 17px;
    font-size: 15px;
  }

  .hero-promise {
    margin: 10px 0 16px;
    font-size: 12px;
  }

  .action-row {
    gap: 8px;
  }
}

/* V4 — lesson 07 proof, tighter scene cuts, quieter navigation */

.movie-course-v4 {
  overflow-x: hidden;
}

.movie-course-v4 .hero,
.movie-course-v4 .final-scene {
  overflow: hidden;
}

.movie-course-v4 .scene-rail {
  right: 18px;
  grid-template-rows: auto 104px auto;
}

.movie-course-v4 .scene-rail__line {
  height: 104px;
}

.movie-course-v4 .scene-rail__label {
  display: none;
}

.movie-course-v4 .proof::before {
  content: "LESSON 07";
}

.movie-course-v4 .proof-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.movie-course-v4 .proof-heading,
.movie-course-v4 .curriculum-heading {
  position: static;
}

.movie-course-v4 .proof-heading > p:last-of-type {
  max-width: 620px;
}

.movie-course-v4 .swipe-hint {
  display: none;
  margin: -8px 0 10px;
  color: rgba(17, 17, 15, 0.58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.movie-course-v4 .swipe-hint--dark {
  color: rgba(255, 253, 247, 0.58);
}

.movie-course-v4 .product-shot {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.movie-course-v4 .product-shot__zoom {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.movie-course-v4 .product-shot img {
  object-position: top;
}

.movie-course-v4 .proof-sequence li {
  min-height: 82px;
  padding-block: 15px;
}

@media (min-width: 761px) {
  .movie-course-v4 .proof-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
    grid-template-rows: auto auto auto;
    column-gap: clamp(28px, 5vw, 72px);
    align-items: start;
  }

  .movie-course-v4 .proof-heading .scene-kicker {
    grid-column: 1 / -1;
  }

  .movie-course-v4 .proof-heading h2 {
    grid-column: 1;
    grid-row: 2 / span 2;
    font-size: clamp(50px, 6vw, 86px);
    line-height: 0.96;
  }

  .movie-course-v4 .proof-heading > p:last-of-type {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 0 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .movie-course-v4 .proof-heading .button {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    width: fit-content;
    margin-top: 22px;
  }

  .movie-course-v4 .product-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 12px;
    height: 560px;
    min-height: 0;
    padding: 0;
  }

  .movie-course-v4 .product-shot--main,
  .movie-course-v4 .product-shot--editing,
  .movie-course-v4 .product-shot--space,
  .movie-course-v4 .product-shot--final {
    position: static;
    width: auto;
    min-width: 0;
    margin: 0;
    transform: none;
  }

  .movie-course-v4 .product-shot--main {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .movie-course-v4 .product-shot--editing {
    grid-column: 2;
    grid-row: 1;
  }

  .movie-course-v4 .product-shot--space {
    grid-column: 2;
    grid-row: 2;
  }

  .movie-course-v4 .product-shot--final {
    grid-column: 2;
    grid-row: 3;
  }

  .movie-course-v4 .product-shot img,
  .movie-course-v4 .product-shot--main img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .movie-course-v4 .product-shot--main img {
    object-position: 50% 7%;
  }

  .movie-course-v4 .product-shot:not(.product-shot--main) figcaption {
    display: block;
    padding-block: 7px;
    font-size: 9px;
  }

  .movie-course-v4 .product-shot:not(.product-shot--main) figcaption span {
    display: block;
    margin-bottom: 2px;
  }
}

@media (min-width: 1101px) {
  .movie-course-v4 .diagnosis {
    padding-block: 64px 38px;
  }

  .movie-course-v4 .diagnosis-layout {
    gap: 24px 68px;
  }

  .movie-course-v4 .dialogue-board {
    gap: 12px;
  }

  .movie-course-v4 .diagnosis-verdict {
    padding-block: 18px;
  }

  .movie-course-v4 .change,
  .movie-course-v4 .proof,
  .movie-course-v4 .experience,
  .movie-course-v4 .curriculum,
  .movie-course-v4 .reassurance,
  .movie-course-v4 .pricing {
    padding-block: 68px 46px;
  }

  .movie-course-v4 .learning-loop {
    margin-top: 34px;
  }

  .movie-course-v4 .learning-loop li {
    min-height: 162px;
    padding-block: 16px;
  }

  .movie-course-v4 .experience-notes {
    margin-top: 30px;
  }

  .movie-course-v4 .experience-notes article {
    min-height: 220px;
    padding-top: 22px;
  }

  .movie-course-v4 .note-number {
    margin-bottom: 14px;
  }

  .movie-course-v4 .experience-notes article > p:not(.note-number, .planning-note) {
    margin-top: 14px;
  }

  .movie-course-v4 .experience-notes dl {
    margin-top: 14px;
  }

  .movie-course-v4 .curriculum-layout {
    grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
    gap: 52px;
  }

  .movie-course-v4 .outcome-stack {
    margin-top: 18px;
  }

  .movie-course-v4 .outcome-stack p {
    padding-block: 11px;
  }
}

@media (max-width: 760px) {
  .movie-course-v4 .swipe-hint {
    display: block;
  }

  .movie-course-v4 .dialogue-board {
    margin-top: -2px;
  }

  .movie-course-v4 .provocation-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .movie-course-v4 .provocation-list li,
  .movie-course-v4 .provocation-list li:nth-child(even) {
    min-height: 118px;
    padding: 15px 12px;
    border-right: 1px solid var(--line-light);
  }

  .movie-course-v4 .provocation-list li:nth-child(even) {
    border-right: 0;
  }

  .movie-course-v4 .product-stage {
    display: flex;
    gap: 12px;
    width: calc(100% + var(--side));
    min-height: 0;
    padding: 0 var(--side) 8px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .movie-course-v4 .product-stage .product-shot {
    position: static;
    flex: 0 0 calc(100% - 28px);
    width: auto;
    min-width: 0;
    margin: 0;
    transform: none;
    scroll-snap-align: start;
  }

  .movie-course-v4 .product-stage .product-shot__zoom {
    height: clamp(210px, 31svh, 280px);
    flex: none;
  }

  .movie-course-v4 .product-stage .product-shot img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: top;
  }

  .movie-course-v4 .product-stage .product-shot figcaption {
    display: block;
    min-height: 72px;
    font-size: 10px;
  }

  .movie-course-v4 .product-stage .product-shot figcaption span {
    display: block;
    margin-bottom: 3px;
  }

  .movie-course-v4 .proof-sequence {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding-right: 0;
    overflow: visible;
  }

  .movie-course-v4 .proof-sequence li {
    min-height: 92px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .movie-course-v4 .proof-sequence li:nth-child(even) {
    border-right: 0;
  }

  .movie-course-v4 .proof-sequence li:last-child {
    grid-column: 1 / -1;
    min-height: 76px;
    border-right: 0;
    border-bottom: 0;
  }

  .movie-course-v4 .learning-loop {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
  }

  .movie-course-v4 .learning-loop li {
    min-height: 124px;
    border-bottom: 1px solid var(--line-light);
  }

  .movie-course-v4 .learning-loop li:last-child {
    min-height: 124px;
    border-bottom: 0;
  }

  .movie-course-v4 .learning-loop li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .movie-course-v4 .learning-loop li:nth-child(even) {
    border-right: 0;
  }

  .movie-course-v4 .learning-loop li:nth-child(2)::after,
  .movie-course-v4 .learning-loop li:nth-child(4)::after {
    display: none;
  }

  .movie-course-v4 .outcome-stack {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding-right: 0;
    overflow: visible;
  }

  .movie-course-v4 .outcome-stack p {
    min-height: 82px;
    padding: 12px 0;
  }
}

@media (max-width: 350px) {
  .movie-course-v4 .diagnosis-layout,
  .movie-course-v4 .reassurance-layout,
  .movie-course-v4 .pricing-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .movie-course-v4 .scene-heading,
  .movie-course-v4 .dialogue-board,
  .movie-course-v4 .diagnosis-verdict,
  .movie-course-v4 .provocation-list {
    min-width: 0;
  }

  .movie-course-v4 .provocation-list li {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* V4 — typography rhythm: poster at the edges, readable through the middle */

.movie-course-v4 .scene-heading h2,
.movie-course-v4 .fit-panel h2 {
  font-family: "Spoqa Han Sans Neo", "Pretendard MC", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(38px, 4.35vw, 64px);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.08;
  text-wrap: balance;
}

.movie-course-v4 .proof-heading h2,
.movie-course-v4 .pricing-heading h2 {
  font-family: "Wanted Sans Variable", "Wanted Sans", "Pretendard MC", sans-serif;
  font-size: clamp(42px, 4.8vw, 70px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.05;
  text-wrap: balance;
}

.movie-course-v4 .final-content h2 {
  font-size: clamp(50px, 7.15vw, 108px);
  font-weight: 900;
  line-height: 0.95;
  text-wrap: balance;
}

.movie-course-v4 .dialogue p,
.movie-course-v4 .proof-sequence span,
.movie-course-v4 .learning-loop strong,
.movie-course-v4 .experience-notes h3,
.movie-course-v4 .program-book summary b,
.movie-course-v4 .fit-panel li,
.movie-course-v4 .faq-panel summary,
.movie-course-v4 .price-highlights b,
.movie-course-v4 .price-contract dd {
  font-weight: 500;
}

.movie-course-v4 .learning-loop strong {
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: -0.035em;
}

.movie-course-v4 .experience-notes h3 {
  font-size: clamp(25px, 2.65vw, 38px);
  letter-spacing: -0.042em;
  line-height: 1.18;
}

.movie-course-v4 .change-verdict,
.movie-course-v4 .diagnosis-verdict strong {
  font-weight: 500;
}

.movie-course-v4 .change-verdict strong {
  font-weight: 700;
}

@media (max-width: 760px) {
  .movie-course-v4 .hero h1 {
    text-wrap: balance;
  }

  .movie-course-v4 .scene-heading h2,
  .movie-course-v4 .fit-panel h2 {
    font-size: clamp(31px, 9.6vw, 43px);
    line-height: 1.1;
  }

  .movie-course-v4 .proof-heading h2,
  .movie-course-v4 .pricing-heading h2 {
    font-size: clamp(34px, 10.4vw, 47px);
    letter-spacing: -0.055em;
    line-height: 1.08;
  }

  .movie-course-v4 .final-content h2 {
    font-size: clamp(40px, 12.4vw, 64px);
    line-height: 1;
  }

  .movie-course-v4 .learning-loop strong {
    font-size: clamp(21px, 6.6vw, 29px);
  }

  .movie-course-v4 .experience-notes h3 {
    font-size: clamp(23px, 7vw, 30px);
  }
}

@media (max-width: 430px) {
  .movie-course-v4 .hero h1 {
    font-size: clamp(38px, 11.8vw, 48px);
    letter-spacing: -0.055em;
  }
}

@media (max-width: 350px) {
  .movie-course-v4 .hero h1 {
    font-size: 37px;
  }
}

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

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

  .compare-track,
  .learning-loop {
    scroll-snap-type: none;
  }
}

@media print {
  .site-header,
  .scene-rail,
  .carousel-controls {
    display: none !important;
  }

  .scene {
    min-height: 0;
    break-inside: avoid;
  }

  .compare-track {
    display: block;
    overflow: visible;
  }

  .compare-slide {
    margin-bottom: 16px;
  }
}
