:root {
  --ink: #241727;
  --muted: #746777;
  --paper: #fff8fa;
  --paper-deep: #fcecf2;
  --white: #ffffff;
  --line: rgba(64, 35, 66, 0.13);
  --purple: #7652ec;
  --purple-dark: #5530ca;
  --pink: #ed4fb5;
  --plum: #170b20;
  --plum-soft: #2a1238;
  --gold: #ffde82;
  --shadow: 0 24px 70px rgba(73, 35, 77, 0.18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid #ffb8e4;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  padding: 22px 0;
}

.header-inner,
.header-actions,
.brand,
.hero-actions,
.trust-list,
.drama-topline,
.footer-inner {
  display: flex;
  align-items: center;
}

.header-inner { justify-content: space-between; }
.brand { width: 118px; height: 44px; overflow: hidden; }
.brand img { width: 118px; height: 44px; object-fit: contain; }
.header-actions { gap: 10px; }

.age-chip,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.age-chip {
  min-width: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: #7a657d;
  font-size: 13px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(81, 44, 85, 0.11);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(68, 30, 73, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 128px 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(241, 91, 183, 0.14), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(126, 86, 242, 0.1), transparent 28%),
    linear-gradient(180deg, #fff9fb 0%, #fff3f7 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -11vw;
  bottom: -18vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  border: 1px solid rgba(121, 79, 165, 0.08);
  box-shadow: 0 0 0 60px rgba(121, 79, 165, 0.025), 0 0 0 120px rgba(121, 79, 165, 0.02);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #765b7a;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span { color: var(--pink); }

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: transparent;
  background: linear-gradient(105deg, #704de5 8%, #ee4eaf 90%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 0;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.button-primary {
  color: var(--white);
  background: linear-gradient(115deg, var(--purple) 5%, #9c54eb 50%, var(--pink) 100%);
  box-shadow: 0 14px 34px rgba(132, 71, 210, 0.28);
}

.button-primary:hover { box-shadow: 0 18px 42px rgba(132, 71, 210, 0.34); }

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #705a73;
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.trust-list {
  gap: 24px;
  margin: 25px 0 0;
  padding: 0;
  color: #7a6d7c;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: #7652ec;
  font-weight: 900;
}

.hero-stage {
  position: relative;
  min-height: 545px;
  display: grid;
  place-items: center;
}

.stage-glow {
  position: absolute;
  inset: 11% 3% 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 79, 181, 0.25), rgba(118, 82, 236, 0.11) 48%, transparent 70%);
  filter: blur(6px);
}

.character-poster {
  position: relative;
  width: min(390px, 88%);
  height: 520px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 46% 46% 26px 26px;
  background: #d8cadb;
  box-shadow: var(--shadow);
}

.character-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: opacity 160ms ease;
}

.poster-shade,
.role-shade,
.drama-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(24, 9, 31, 0.9) 100%);
}

.poster-label {
  position: absolute;
  inset: auto 24px 23px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 9px;
  color: var(--white);
}

.poster-label strong { font-size: 22px; }
.poster-label span:last-child { grid-column: 2; color: rgba(255, 255, 255, 0.72); font-size: 13px; }
.online-dot { width: 9px; height: 9px; border-radius: 50%; background: #57f1a5; box-shadow: 0 0 0 5px rgba(87, 241, 165, 0.15); }

.chat-bubble,
.mini-drama {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(67, 27, 72, 0.14);
  backdrop-filter: blur(16px);
}

.chat-bubble {
  top: 82px;
  left: -10px;
  width: 250px;
  padding: 17px 19px;
  border-radius: 18px 18px 18px 5px;
}

.bubble-label { color: #9d779f; font-size: 11px; font-weight: 850; }
.chat-bubble p { margin: 7px 0 0; font-size: 14px; line-height: 1.55; font-weight: 760; }

.mini-drama {
  right: -12px;
  bottom: 52px;
  width: 264px;
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.play-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.play-mark svg { width: 22px; fill: currentColor; }
.mini-drama div { min-width: 0; }
.mini-drama small, .mini-drama strong { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-drama small { margin-bottom: 3px; color: #957697; font-size: 10px; }
.mini-drama strong { font-size: 13px; }
.try-tag { padding: 5px 7px; border-radius: 99px; color: #6748d3; background: #eee9ff; font-size: 10px; font-weight: 900; }

/* V3: AI short drama is the first-screen product, not a supporting chip. */
.hero-stage { min-height: 580px; }

.hero-drama-player {
  position: relative;
  z-index: 1;
  width: min(430px, 94%);
  height: 560px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: #24122d;
  box-shadow: 0 30px 80px rgba(63, 28, 72, 0.28);
}

.hero-drama-player > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.01);
  transition: opacity 160ms ease, transform 400ms ease;
}

.hero-drama-player:hover > img { transform: scale(1.035); }

.hero-drama-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 7, 25, 0.44) 0%, transparent 31%),
    linear-gradient(180deg, transparent 43%, rgba(20, 7, 27, 0.94) 100%);
}

.hero-drama-topline {
  position: absolute;
  z-index: 2;
  inset: 20px 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero-drama-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(110deg, rgba(116, 73, 229, 0.94), rgba(237, 79, 181, 0.94));
  box-shadow: 0 8px 25px rgba(48, 14, 59, 0.24);
}

.hero-play {
  position: absolute;
  z-index: 3;
  top: 43%;
  left: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 8, 25, 0.44);
  box-shadow: 0 14px 38px rgba(12, 3, 18, 0.38);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-play:hover { background: rgba(118, 82, 236, 0.82); transform: translate(-50%, -50%) scale(1.06); }
.hero-play svg { width: 34px; fill: currentColor; transform: translateX(2px); }

.hero-drama-caption {
  position: absolute;
  z-index: 2;
  inset: auto 26px 30px;
  color: var(--white);
}

.hero-character-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  font-size: 13px;
}

.hero-character-meta strong { font-size: 15px; }
.hero-character-meta span:last-child { color: rgba(255, 255, 255, 0.68); }
.hero-drama-caption > small { color: #ffbde6; font-size: 11px; font-weight: 900; letter-spacing: 0.04em; }
.hero-drama-caption h2 { margin: 7px 0 10px; font-size: 32px; line-height: 1.1; letter-spacing: -0.035em; }
.hero-drama-caption > p:last-child { max-width: 330px; margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 13px; line-height: 1.65; }

.hero-choice-strip {
  position: absolute;
  z-index: 4;
  right: -6px;
  bottom: 5px;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  color: #806982;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 38px rgba(63, 28, 72, 0.18);
  backdrop-filter: blur(14px);
  font-size: 11px;
}

.hero-choice-strip strong { color: #6b48da; font-size: 13px; }

.proof-strip { background: var(--white); border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid p { margin: 0; padding: 24px 34px; text-align: center; }
.proof-grid p + p { border-left: 1px solid var(--line); }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { margin-bottom: 5px; font-size: 15px; }
.proof-grid span { color: var(--muted); font-size: 13px; }

.drama-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 87% 18%, rgba(231, 68, 190, 0.2), transparent 28%),
    radial-gradient(circle at 13% 76%, rgba(117, 82, 236, 0.17), transparent 34%),
    var(--plum);
}

.drama-section::before {
  content: "STORY";
  position: absolute;
  right: -25px;
  top: 10px;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 950;
  line-height: 1;
}

.drama-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.eyebrow-dark { color: #d7bce0; }
.drama-copy h2,
.section-heading h2,
.faq-heading h2,
.closing-section h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.drama-copy > p:not(.eyebrow):not(.fine-print) { max-width: 540px; margin: 0 0 30px; color: #c7b7cb; font-size: 17px; line-height: 1.75; }
.episode-list { display: grid; gap: 9px; margin: 0 0 25px; }

.episode {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  color: #d8c9dc;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
}

.episode:hover,
.episode.is-active { border-color: rgba(238, 79, 181, 0.48); background: rgba(237, 79, 181, 0.1); }
.episode-index { color: #ad91b5; font-size: 11px; font-weight: 900; letter-spacing: 0.08em; }
.episode strong, .episode small { display: block; }
.episode strong { margin-bottom: 5px; color: var(--white); font-size: 14px; }
.episode small { color: #9f8ba5; font-size: 11px; }
.episode-status { padding: 7px 9px; border-radius: 99px; color: #f0d9f5; background: rgba(255, 255, 255, 0.06); font-size: 10px; font-weight: 900; }
.episode.is-active .episode-status { color: #28142d; background: var(--gold); }
.button-light { color: #2b1532; background: var(--white); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }
.fine-print { margin: 13px 0 0; color: #8e7a94; font-size: 11px; line-height: 1.55; }

.drama-player {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: #2a1535;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.drama-player > img { width: 100%; height: 640px; object-fit: cover; object-position: center 18%; }
.drama-overlay { background: linear-gradient(180deg, rgba(16, 6, 23, 0.12) 28%, rgba(16, 6, 23, 0.94) 100%); }
.drama-topline { position: absolute; inset: 22px 22px auto; justify-content: space-between; color: rgba(255, 255, 255, 0.8); font-size: 11px; font-weight: 850; letter-spacing: 0.08em; }
.drama-topline span:first-child { padding: 7px 10px; border-radius: 99px; color: #2d182d; background: var(--gold); }
.drama-caption { position: absolute; inset: auto 32px 34px; max-width: 78%; }
.scene-kicker { color: #e2acd6; font-size: 11px; font-weight: 900; letter-spacing: 0.08em; }
.drama-caption h3 { margin: 9px 0; font-size: clamp(28px, 3.5vw, 46px); line-height: 1.08; }
.drama-caption p { margin: 0; color: #d1c2d5; font-size: 14px; line-height: 1.7; }

.round-play {
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.round-play:hover { background: var(--pink); }
.round-play svg { width: 26px; fill: currentColor; }

.roles-section { padding: 108px 0 116px; background: linear-gradient(180deg, #fff8fa, #fff2f6); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 360px; margin: 0 0 6px; color: var(--muted); line-height: 1.7; }
.role-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }

.role-card {
  position: relative;
  min-width: 0;
  height: 370px;
  padding: 0;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 22px;
  background: #dfd2e0;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(70, 35, 74, 0.1);
  transition: transform 180ms ease, border-color 180ms ease;
}

.role-card:hover { transform: translateY(-5px); }
.role-card.is-active { border-color: #d759c1; }
.role-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.role-shade { background: linear-gradient(180deg, transparent 43%, rgba(26, 10, 31, 0.94) 100%); }
.role-copy { position: absolute; inset: auto 18px 18px; color: var(--white); text-align: left; }
.role-copy strong, .role-copy small { display: block; }
.role-copy strong { margin-bottom: 5px; font-size: 20px; }
.role-copy small { color: rgba(255, 255, 255, 0.72); font-size: 12px; line-height: 1.5; }

.faq-section { padding: 100px 0; background: var(--white); }
.faq-shell { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(45px, 8vw, 120px); align-items: start; }
.faq-heading h2 { font-size: clamp(34px, 4vw, 54px); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 16px; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 24px; font-weight: 400; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 24px; padding-right: 50px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.closing-section { position: relative; padding: 110px 0 105px; color: var(--white); background: linear-gradient(135deg, #251031, #160a1e 60%, #301140); text-align: center; overflow: hidden; }
.closing-section::before, .closing-section::after { content: ""; position: absolute; border-radius: 50%; filter: blur(12px); }
.closing-section::before { width: 300px; height: 300px; left: -90px; top: -160px; background: rgba(126, 81, 239, 0.22); }
.closing-section::after { width: 330px; height: 330px; right: -100px; bottom: -190px; background: rgba(237, 79, 181, 0.18); }
.closing-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.closing-mark { width: 78px; height: 52px; object-fit: contain; margin-bottom: 18px; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2)); }
.closing-section h2 { max-width: 750px; margin-inline: auto; }
.closing-section .button { margin-top: 10px; min-width: 230px; }
.closing-download { min-height: 44px; display: inline-flex; align-items: center; margin-top: 10px; color: #bca9c3; font-size: 13px; text-underline-offset: 5px; }

.site-footer { padding: 24px 0; color: #8b7b90; background: #100717; font-size: 12px; }
.footer-inner { justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.mobile-sticky { display: none; }

@media (max-width: 940px) {
  .hero { min-height: auto; }
  .hero-grid, .drama-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-stage { min-height: 580px; }
  .drama-grid { gap: 48px; }
  .drama-player { max-width: 620px; width: 100%; margin-inline: auto; }
  .role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-shell { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 32px, 520px); }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .site-header { padding: 12px 0; }
  .brand { width: 92px; height: 44px; }
  .brand img { width: 92px; height: 44px; }
  .header-cta { display: none; }
  .age-chip { min-height: 36px; min-width: 38px; }
  .hero { padding: 84px 0 40px; }
  .hero-grid { gap: 26px; }
  .hero-copy { text-align: left; }
  .eyebrow { margin-bottom: 13px; font-size: 10px; }
  h1 { margin-bottom: 14px; font-size: clamp(34px, 9.8vw, 43px); line-height: 1.07; }
  .hero-lede { margin-bottom: 18px; font-size: 15px; line-height: 1.58; }
  .hero-actions { align-items: stretch; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .text-link { width: 100%; justify-content: center; font-size: 13px; }
  .trust-list { justify-content: flex-start; gap: 8px 13px; flex-wrap: wrap; margin-top: 12px; font-size: 11px; }
  .hero-stage { min-height: 448px; }
  .hero-drama-player { width: 100%; height: 440px; border-width: 5px; border-radius: 25px; }
  .hero-drama-topline { inset: 14px 14px auto; }
  .hero-drama-badge { min-height: 30px; padding-inline: 11px; font-size: 10px; }
  .hero-play { top: 42%; width: 62px; height: 62px; }
  .hero-play svg { width: 29px; }
  .hero-drama-caption { inset: auto 19px 22px; }
  .hero-character-meta { margin-bottom: 10px; font-size: 11px; }
  .hero-character-meta strong { font-size: 13px; }
  .hero-drama-caption h2 { margin: 5px 0 7px; font-size: 26px; }
  .hero-drama-caption > p:last-child { padding-right: 48px; font-size: 11px; line-height: 1.5; }
  .hero-choice-strip { right: 9px; bottom: -5px; min-height: 44px; padding-inline: 12px; border-radius: 13px; }
  .character-poster { width: 86%; height: 420px; border-width: 6px; border-radius: 45% 45% 22px 22px; }
  .poster-label { inset: auto 18px 18px; }
  .poster-label strong { font-size: 18px; }
  .chat-bubble { top: 50px; left: 0; width: 205px; padding: 13px 14px; }
  .chat-bubble p { font-size: 12px; }
  .mini-drama { right: 0; bottom: 24px; width: 230px; min-height: 66px; }
  .play-mark { width: 38px; height: 38px; }
  .proof-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .proof-grid p { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; padding: 12px 0; text-align: left; }
  .proof-grid p + p { border-left: 0; border-top: 1px solid var(--line); }
  .proof-grid strong { margin: 0; font-size: 13px; }
  .proof-grid span { font-size: 12px; }
  .drama-section { padding: 70px 0; }
  .drama-grid { gap: 32px; }
  .drama-player { min-height: 480px; border-radius: 24px; }
  .drama-player > img { height: 480px; }
  .drama-topline { inset: 16px 16px auto; }
  .drama-caption { inset: auto 22px 22px; max-width: calc(100% - 95px); }
  .drama-caption h3 { font-size: 30px; }
  .round-play { right: 18px; bottom: 20px; width: 52px; height: 52px; }
  .drama-copy h2, .section-heading h2, .faq-heading h2, .closing-section h2 { font-size: 36px; }
  .drama-copy > p:not(.eyebrow):not(.fine-print) { font-size: 15px; }
  .episode { min-height: 68px; grid-template-columns: 48px minmax(0, 1fr) auto; padding: 10px; }
  .episode small { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .roles-section { padding: 70px 0 76px; }
  .section-heading { display: block; margin-bottom: 23px; }
  .section-heading > p { margin-top: 12px; font-size: 14px; }
  .role-grid { gap: 10px; }
  .role-card { height: 255px; border-radius: 17px; }
  .role-copy { inset: auto 12px 13px; }
  .role-copy strong { font-size: 16px; }
  .role-copy small { font-size: 10px; }
  .faq-section { padding: 70px 0; }
  .faq-list summary { min-height: 70px; font-size: 14px; }
  .faq-list details p { padding-right: 16px; font-size: 13px; }
  .closing-section { padding: 75px 0 70px; }
  .footer-inner { display: block; text-align: center; line-height: 1.8; }
  .mobile-sticky {
    position: fixed;
    z-index: 50;
    inset: auto 0 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(72, 39, 75, 0.12);
    background: rgba(255, 250, 252, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 -10px 30px rgba(60, 26, 67, 0.08);
  }
  .mobile-sticky div { min-width: 0; }
  .mobile-sticky strong, .mobile-sticky span { display: block; }
  .mobile-sticky strong { font-size: 13px; }
  .mobile-sticky span { margin-top: 2px; color: var(--muted); font-size: 10px; }
  .mobile-sticky .button { min-height: 48px; padding: 0 22px; border-radius: 13px; font-size: 14px; }
}

@media (max-width: 370px) {
  :root { --shell: calc(100% - 28px); }
  h1 { font-size: 35px; }
  .trust-list { gap: 8px 10px; }
  .hero-drama-player { height: 420px; }
  .hero-stage { min-height: 426px; }
  .hero-choice-strip { gap: 6px; padding-inline: 10px; }
  .episode { grid-template-columns: 44px minmax(0, 1fr); }
  .episode-status { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
