:root {
  color-scheme: dark;
  --ink: #07111f;
  --navy: #0a1630;
  --blue: #123f72;
  --teal: #3db7a7;
  --gold: #f6b743;
  --cream: #f7ead0;
  --paper: #fff7e6;
  --coral: #d94d3f;
  --muted: rgba(247, 234, 208, 0.72);
  --line: rgba(247, 234, 208, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  letter-spacing: 0;
}

.home-body {
  -webkit-user-select: none;
  user-select: none;
}

.home-body img {
  -webkit-user-drag: none;
}

main > section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  isolation: isolate;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header::before,
.site-header::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-header::before {
  z-index: -2;
  background-image: url("https://bl-1413587659.cos.ap-beijing.myqcloud.com/web/assets/images/hero-ai-comic-portrait.png");
  background-position: center 34%;
  background-size: cover;
}

.site-header::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 12, 23, 0.88), rgba(4, 12, 23, 0.62)),
    rgba(7, 17, 31, 0.46);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(247, 234, 208, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled::before,
.site-header.is-scrolled::after {
  opacity: 1;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 183, 67, 0.72);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.66);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.brand-text {
  color: #fff4dd;
  font-size: clamp(14px, 1.7vw, 18px);
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: rgba(255, 247, 230, 0.86);
  font-size: 14px;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.is-active {
  color: #fff4dd;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  cursor: none;
  --reveal-x: 50%;
  --reveal-y: 50%;
  --cursor-x: -200px;
  --cursor-y: -200px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("https://bl-1413587659.cos.ap-beijing.myqcloud.com/web/assets/images/hero-ai-comic-portrait.png");
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(4, 12, 23, 0.96) 0%, rgba(4, 12, 23, 0.82) 30%, rgba(4, 12, 23, 0.3) 68%, rgba(4, 12, 23, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.28) 0%, rgba(7, 17, 31, 0.18) 42%, rgba(7, 17, 31, 0.72) 84%, var(--ink) 100%);
}

.hero.is-flashlight-enabled.is-reveal-active .hero-overlay {
  -webkit-mask-image: radial-gradient(ellipse 230px 170px at var(--reveal-x) var(--reveal-y), rgba(0, 0, 0, 0) 0 42%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.66) 74%, rgba(0, 0, 0, 1) 100%);
  mask-image: radial-gradient(ellipse 230px 170px at var(--reveal-x) var(--reveal-y), rgba(0, 0, 0, 0) 0 42%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.66) 74%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.firefly-layer {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: saturate(1.55) brightness(1.55);
}

.firefly {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: #ffe08a;
  box-shadow:
    0 0 8px rgba(255, 226, 142, 1),
    0 0 22px rgba(246, 183, 67, 0.72),
    0 0 44px rgba(61, 183, 167, 0.32);
  opacity: var(--opacity, 0.62);
  transform: translate3d(var(--x), var(--y), 0) scale(var(--scale));
  will-change: transform, opacity;
}

.firefly::after {
  position: absolute;
  inset: -13px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 226, 142, 0.58), rgba(61, 183, 167, 0.2) 42%, transparent 72%);
  content: "";
  animation: fireflyGlow 2.8s ease-in-out var(--delay) infinite;
}

.flashlight-beam-canvas {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
  mix-blend-mode: screen;
}

.hero.is-flashlight-enabled.is-reveal-active .flashlight-beam-canvas {
  opacity: 0.95;
}

.flashlight-cursor {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 0;
  width: 82px;
  height: 82px;
  background-image: url("https://bl-1413587659.cos.ap-beijing.myqcloud.com/web/assets/flashlight/手电筒.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x) - 41px), calc(var(--cursor-y) - 41px), 0);
  transition: opacity 0.16s ease;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(246, 183, 67, 0.42));
}

.hero.is-pointer-inside .flashlight-cursor {
  opacity: 0.96;
}

.dream-entry {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: clamp(34px, 6vh, 70px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 12px 16px;
  background: transparent;
  color: rgba(255, 247, 230, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  opacity: 1;
  text-shadow: 0 0 18px rgba(7, 17, 31, 0.88);
  transform: translateX(-50%);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    color 0.2s ease;
}

.dream-entry:hover,
.dream-entry:focus-visible {
  color: #fff4dd;
  transform: translateX(-50%) translateY(-3px);
}

.dream-entry.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.dream-arrow {
  position: relative;
  width: 22px;
  height: 20px;
  animation: dreamArrowFloat 1.35s ease-in-out infinite;
}

.dream-arrow::before,
.dream-arrow::after {
  position: absolute;
  content: "";
}

.dream-arrow::before {
  left: 2px;
  top: 0;
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(255, 247, 230, 0.92);
  border-bottom: 2px solid rgba(255, 247, 230, 0.92);
  transform: rotate(45deg);
}

.dream-arrow::after {
  left: 2px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(255, 247, 230, 0.92);
  border-bottom: 2px solid rgba(255, 247, 230, 0.92);
  transform: rotate(45deg);
}

@keyframes dreamArrowFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.75;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes fireflyGlow {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.72);
  }

  48% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 247, 230, 0.22);
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.button.primary {
  border-color: rgba(246, 183, 67, 0.86);
  background: var(--gold);
  color: #1f1709;
}

.button.secondary {
  background: rgba(7, 17, 31, 0.48);
  color: var(--paper);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(61, 183, 167, 0.78);
  background: rgba(61, 183, 167, 0.16);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.intro,
.section[id],
.story-direction-screen,
.contact {
  scroll-margin-top: 0;
}

.intro {
  padding-top: clamp(92px, 10vw, 132px);
}

.drama-showcase {
  display: grid;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(118px, 11vw, 152px) 0 clamp(88px, 8vw, 126px);
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 86px);
  align-items: start;
  overflow: visible;
}

.drama-copy {
  display: grid;
  width: min(1440px, calc(100% - clamp(44px, 8vw, 152px)));
  max-width: none;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: 0 clamp(28px, 5.6vw, 96px);
  align-items: end;
}

.drama-copy .section-label {
  grid-column: 1;
}

.drama-copy h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 780px;
  margin: 14px 0 0;
}

.drama-copy p {
  grid-column: 2;
  grid-row: 2;
  max-width: 620px;
  margin: 0;
  justify-self: end;
}

.typewriter-copy {
  position: relative;
  color: rgba(247, 234, 208, 0.2);
}

.typewriter-char {
  color: rgba(247, 234, 208, 0.2);
  transition:
    color 0.24s ease,
    text-shadow 0.24s ease;
}

.typewriter-char.is-lit {
  color: var(--muted);
  text-shadow: 0 0 16px rgba(246, 183, 67, 0.14);
}

.typewriter-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  border-radius: 999px;
  background: rgba(246, 183, 67, 0.78);
  box-shadow: 0 0 14px rgba(246, 183, 67, 0.42);
  transform: translateY(0.16em);
  animation: typeCaretBlink 0.82s steps(2, start) infinite;
}

.typewriter-copy.is-complete .typewriter-caret {
  opacity: 0;
  animation: none;
}

.drama-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
  margin-top: clamp(24px, 3vw, 38px);
}

.drama-meta span {
  border: 1px solid rgba(246, 183, 67, 0.34);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 247, 230, 0.88);
  font-size: 14px;
}

.drama-carousel {
  --cover-gap: 24px;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 34px;
}

.drama-carousel::before,
.drama-carousel::after {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: clamp(52px, 8vw, 156px);
  content: "";
  pointer-events: none;
}

.drama-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), rgba(7, 17, 31, 0));
}

.drama-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), rgba(7, 17, 31, 0));
}

.cover-track {
  display: flex;
  width: max-content;
  gap: var(--cover-gap);
  animation: coverMarquee var(--marquee-duration, 24s) linear infinite;
  will-change: transform;
}

.cover-card {
  position: relative;
  flex: 0 0 clamp(214px, 16.5vw, 288px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(247, 234, 208, 0.2);
  border-radius: 8px;
  background: #0b1c2f;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.cover-card::before {
  position: absolute;
  z-index: 8;
  inset: 8px;
  border: 1px solid rgba(255, 247, 230, 0.18);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.cover-card::after {
  position: absolute;
  z-index: 8;
  right: 12px;
  bottom: 10px;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 62%, rgba(255, 247, 230, 0.38) 62%);
  content: "";
  box-shadow: 0 0 16px rgba(246, 183, 67, 0.36);
}

.cover-media,
.cover-bg,
.video-mosaic {
  position: absolute;
  inset: 0;
}

.cover-media {
  overflow: hidden;
  border-radius: 8px;
}

.cover-bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: blur(18px) saturate(1.28) brightness(0.72);
  transform: scale(1.14);
}

.cover-art {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: calc(100% - 28px);
  height: calc(100% - 50px);
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.06) contrast(1.02);
  transform: translate(-50%, -50%);
}

.video-mosaic {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.04), rgba(7, 17, 31, 0.3)),
    repeating-linear-gradient(0deg, rgba(255, 247, 230, 0.08) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(61, 183, 167, 0.07) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.video-mosaic::before {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f05a45;
  content: "";
  box-shadow:
    14px 0 0 rgba(246, 183, 67, 0.92),
    28px 0 0 rgba(61, 183, 167, 0.82);
}

.video-mosaic::after {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: rgba(255, 247, 230, 0.76);
  content: attr(data-duration);
  font-size: 11px;
  font-weight: 800;
}

@keyframes coverMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--marquee-shift, calc(-50% - 12px)));
  }
}

@keyframes typeCaretBlink {
  0%,
  46% {
    opacity: 1;
  }

  47%,
  100% {
    opacity: 0;
  }
}

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

.intro h2,
.section-heading h2,
.feature-copy h2,
.contact h2 {
  margin-bottom: 0;
  color: #fff4dd;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.12;
  text-wrap: balance;
}

.intro p,
.feature-copy p,
.contact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.85;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

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

.work-grid article,
.process-list li {
  border: 1px solid rgba(247, 234, 208, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 63, 114, 0.5), rgba(7, 17, 31, 0.86)),
    var(--navy);
}

.service-section {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(88px, 10svh, 118px) clamp(24px, 5vw, 82px) clamp(82px, 9svh, 112px);
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(217, 77, 63, 0.18), rgba(61, 183, 167, 0.12)),
    #0b1c2f;
}

.camera-hud {
  position: absolute;
  z-index: 4;
  inset: clamp(88px, 9svh, 116px) clamp(24px, 3vw, 54px) clamp(28px, 4svh, 56px);
  pointer-events: none;
}

.camera-corner {
  position: absolute;
  width: clamp(64px, 7vw, 138px);
  height: clamp(48px, 5vw, 96px);
  color: rgba(255, 247, 230, 0.92);
  filter: drop-shadow(0 0 12px rgba(61, 183, 167, 0.16));
}

.camera-corner-tl {
  top: 0;
  left: 0;
  border-top: 3px solid;
  border-left: 3px solid;
}

.camera-corner-tr {
  top: 0;
  right: 0;
  border-top: 3px solid;
  border-right: 3px solid;
}

.camera-corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 3px solid;
  border-left: 3px solid;
}

.camera-corner-br {
  right: 0;
  bottom: 0;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.camera-battery,
.camera-rec {
  position: absolute;
  top: clamp(24px, 3svh, 38px);
  display: inline-flex;
  align-items: center;
}

.camera-battery {
  left: clamp(30px, 4vw, 58px);
  width: clamp(72px, 6vw, 98px);
  height: clamp(28px, 2.5vw, 38px);
  border: 3px solid rgba(255, 247, 230, 0.92);
  border-radius: 2px;
  padding: 4px;
}

.camera-battery::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 6px;
  height: 54%;
  border: 3px solid rgba(255, 247, 230, 0.92);
  border-left: 0;
  border-radius: 0 2px 2px 0;
  content: "";
  transform: translateY(-50%);
}

.camera-battery span {
  display: block;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 247, 230, 0.94) 0 8px,
    transparent 8px 12px
  );
}

.camera-rec {
  right: clamp(30px, 4vw, 58px);
  gap: 14px;
  color: rgba(255, 247, 230, 0.95);
  font-size: clamp(24px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.camera-rec span {
  width: clamp(15px, 1.5vw, 25px);
  height: clamp(15px, 1.5vw, 25px);
  border-radius: 50%;
  background: #ff1f1f;
  box-shadow: 0 0 18px rgba(255, 31, 31, 0.62);
  animation: recPulse 1.4s ease-in-out infinite;
}

@keyframes recPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.48;
  }
}

.service-heading {
  display: grid;
  justify-items: center;
  width: min(1320px, 100%);
  margin: 0 auto clamp(26px, 4svh, 42px);
  text-align: center;
}

.service-heading h2 {
  max-width: min(980px, 100%);
}

.service-canvas-wrap {
  position: relative;
  width: min(1320px, 100%);
  height: clamp(460px, calc(100svh - 360px), 620px);
  min-height: 0;
  margin: 0 auto;
  isolation: isolate;
}

@media (max-width: 1500px) {
  .camera-rec {
    top: clamp(18px, 2.4svh, 30px);
    right: clamp(26px, 3vw, 48px);
    gap: 10px;
    font-size: clamp(20px, 1.8vw, 30px);
  }

  .camera-rec span {
    width: clamp(12px, 1.2vw, 18px);
    height: clamp(12px, 1.2vw, 18px);
  }
}

.service-canvas-wrap::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(rgba(247, 234, 208, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 234, 208, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: 0.82;
  pointer-events: none;
}

.service-canvas-wrap::after {
  position: absolute;
  z-index: 0;
  inset: clamp(26px, 4vw, 54px) 0;
  border-top: 1px solid rgba(246, 183, 67, 0.18);
  border-bottom: 1px solid rgba(61, 183, 167, 0.16);
  content: "";
  pointer-events: none;
}

.service-curve-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.service-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(188px, 18vw, 246px);
  min-height: clamp(122px, 12vw, 154px);
  place-content: center;
  border: 1px solid rgba(246, 183, 67, 0.46);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(246, 183, 67, 0.18), rgba(61, 183, 167, 0.13)),
    rgba(7, 17, 31, 0.88);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    inset 0 0 34px rgba(246, 183, 67, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
}

.service-core span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-core strong {
  margin-top: 8px;
  color: #fff4dd;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.14;
}

.service-node {
  position: absolute;
  z-index: 4;
  width: clamp(218px, 22vw, 318px);
  min-height: 152px;
  border: 1px solid rgba(247, 234, 208, 0.17);
  border-radius: 8px;
  padding: 20px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 247, 230, 0.055), rgba(7, 17, 31, 0.06)),
    rgba(8, 22, 39, 0.82);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 247, 230, 0.08);
  backdrop-filter: blur(10px);
}

.service-node::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
  box-shadow: 0 0 20px rgba(61, 183, 167, 0.68);
}

.service-node[data-node="story"] {
  top: 8%;
  left: 3%;
}

.service-node[data-node="visual"] {
  top: 3%;
  right: 10%;
}

.service-node[data-node="shot"] {
  top: 38%;
  left: 0;
}

.service-node[data-node="motion"] {
  top: 39%;
  right: 0;
}

.service-node[data-node="promo"] {
  bottom: 7%;
  left: 15%;
}

.service-node[data-node="iterate"] {
  right: 18%;
  bottom: 5%;
}

.service-node span,
.process-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-node h3,
.work-grid h3,
.process-list h3 {
  margin: 18px 0 10px;
  color: #fff4dd;
  font-size: 22px;
  line-height: 1.24;
}

.service-node p,
.work-grid p,
.process-list p {
  margin-bottom: 0;
  color: rgba(247, 234, 208, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.service-download {
  display: flex;
  width: min(1320px, 100%);
  margin: clamp(18px, 3svh, 34px) auto 0;
  justify-content: center;
}

.app-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(176px, 15vw, 240px);
  min-height: 54px;
  border: 1px solid rgba(246, 183, 67, 0.84);
  border-radius: 8px;
  padding: 0 30px;
  background:
    linear-gradient(135deg, rgba(246, 183, 67, 0.96), rgba(255, 214, 118, 0.88)),
    var(--gold);
  box-shadow:
    0 18px 46px rgba(246, 183, 67, 0.2),
    inset 0 0 24px rgba(61, 183, 167, 0.16);
  color: #1f1709;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.app-download-button:hover,
.app-download-button:focus-visible {
  border-color: rgba(61, 183, 167, 0.9);
  box-shadow:
    0 22px 58px rgba(246, 183, 67, 0.26),
    0 0 34px rgba(61, 183, 167, 0.22),
    inset 0 0 28px rgba(255, 247, 230, 0.18);
  transform: translateY(-2px);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  min-height: 560px;
  margin: clamp(24px, 4vw, 44px) 0;
  background: #07111f;
}

.feature-image {
  position: relative;
  isolation: isolate;
  align-self: center;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  min-height: 0;
  background: #07111f;
}

.feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(217, 77, 63, 0.18), rgba(61, 183, 167, 0.12)),
    #0b1c2f;
}

.feature-copy h2 {
  margin: 14px 0 22px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-list span {
  border: 1px solid rgba(246, 183, 67, 0.36);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--paper);
  font-size: 14px;
}

.story-direction-screen {
  display: flex;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(82px, 8svh, 108px) clamp(18px, 4vw, 64px) clamp(34px, 5svh, 64px);
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.2svh, 24px);
  overflow: visible;
  background:
    radial-gradient(circle at 12% 16%, rgba(246, 183, 67, 0.12), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(61, 183, 167, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(217, 77, 63, 0.12), rgba(61, 183, 167, 0.08)),
    var(--ink);
}

.story-direction-screen .feature-band,
.direction-panel {
  width: min(2080px, 100%);
  margin: 0 auto;
}

.story-direction-screen .feature-band {
  min-height: 0;
  overflow: hidden;
  grid-template-columns: clamp(620px, 68svh, 820px) minmax(520px, 1fr);
  border: 1px solid rgba(247, 234, 208, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.story-direction-screen .feature-image {
  width: 100%;
}

.story-direction-screen .feature-copy {
  padding: clamp(28px, 4.2vw, 72px);
}

.story-direction-screen .feature-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(26px, 3.2vw, 42px);
}

.story-direction-screen .feature-copy p {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.72;
}

.story-direction-screen .feature-list {
  gap: 8px;
  margin-top: 16px;
}

.direction-panel .section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(10px, 1.7svh, 18px);
  text-align: center;
}

.direction-panel .section-heading h2 {
  max-width: 860px;
  font-size: clamp(24px, 3vw, 40px);
}

.direction-panel .work-grid {
  gap: clamp(12px, 1.1vw, 20px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.direction-panel .work-grid article {
  min-height: clamp(126px, 14.5svh, 176px);
  padding: clamp(18px, 1.7vw, 30px);
}

.direction-panel .work-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.6vw, 22px);
}

.direction-panel .work-grid p {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.58;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 210px;
  padding: 22px;
}

.works {
  padding-top: clamp(42px, 6vw, 72px);
}

.work-grid article {
  min-height: 180px;
  padding: 24px;
}

.work-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(246, 183, 67, 0.22), rgba(7, 17, 31, 0.84)),
    var(--navy);
}

.work-grid article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(61, 183, 167, 0.22), rgba(7, 17, 31, 0.86)),
    var(--navy);
}

.work-grid article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(217, 77, 63, 0.2), rgba(7, 17, 31, 0.86)),
    var(--navy);
}

.work-grid article:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(246, 183, 67, 0.18), rgba(217, 77, 63, 0.15), rgba(7, 17, 31, 0.86)),
    var(--navy);
}

.work-grid article:nth-child(6) {
  background:
    linear-gradient(135deg, rgba(61, 183, 167, 0.18), rgba(18, 63, 114, 0.5), rgba(7, 17, 31, 0.86)),
    var(--navy);
}

.contact {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(92px, 10svh, 128px) clamp(18px, 4vw, 64px) clamp(18px, 3svh, 34px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5svh, 28px);
  background:
    radial-gradient(circle at 16% 22%, rgba(217, 77, 63, 0.18), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(61, 183, 167, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(246, 183, 67, 0.08), rgba(7, 17, 31, 0.08)),
    var(--ink);
  overflow: visible;
  isolation: isolate;
}

.contact::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(246, 183, 67, 0.18), transparent 28%),
    radial-gradient(circle at 86% 48%, rgba(61, 183, 167, 0.16), transparent 34%);
  content: "";
  opacity: 0.82;
}

.platform-panel,
.contact-card {
  width: min(2080px, 100%);
}

.platform-panel {
  border: 1px solid rgba(246, 183, 67, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 2.7vw, 38px);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.72), rgba(10, 22, 48, 0.54)),
    rgba(7, 17, 31, 0.58);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.24);
}

.platform-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.platform-heading h3 {
  margin: 6px 0 0;
  color: #fff4dd;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
}

.platform-map {
  position: relative;
  display: flex;
  min-height: clamp(260px, 31svh, 360px);
  margin-top: clamp(16px, 2svh, 24px);
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2svh, 24px);
  border: 1px solid rgba(61, 183, 167, 0.28);
  border-radius: 8px;
  padding: clamp(20px, 2.6vw, 42px) 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 234, 208, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 234, 208, 0.028) 1px, transparent 1px),
    rgba(7, 17, 31, 0.36);
  background-size: 40px 40px;
}

.platform-map::before,
.platform-map::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(54px, 8vw, 150px);
  content: "";
  pointer-events: none;
}

.platform-map::before {
  left: 0;
  background: linear-gradient(90deg, #07111f, rgba(7, 17, 31, 0));
}

.platform-map::after {
  right: 0;
  background: linear-gradient(270deg, #07111f, rgba(7, 17, 31, 0));
}

.platform-row {
  width: 100%;
  overflow: hidden;
}

.platform-track {
  display: flex;
  width: max-content;
  padding: 0 clamp(20px, 2.6vw, 42px);
  animation: platformMarquee var(--platform-speed, 34s) linear infinite;
  will-change: transform;
}

.platform-row:nth-child(2) .platform-track {
  --platform-speed: 42s;
}

.platform-row:nth-child(3) .platform-track {
  --platform-speed: 38s;
}

.platform-item {
  display: inline-flex;
  min-width: clamp(150px, 10.4vw, 230px);
  min-height: clamp(48px, 5.4svh, 64px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(61, 183, 167, 0.7);
  border-radius: 8px;
  margin-right: clamp(14px, 1.4vw, 24px);
  padding: 0 18px;
  background:
    linear-gradient(135deg, rgba(61, 183, 167, 0.16), rgba(246, 183, 67, 0.08)),
    rgba(7, 17, 31, 0.7);
  box-shadow:
    inset 0 0 28px rgba(61, 183, 167, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.2);
  color: #fff4dd;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 900;
}

.platform-item img {
  width: clamp(22px, 1.8vw, 30px);
  height: clamp(22px, 1.8vw, 30px);
  flex: 0 0 auto;
  object-fit: contain;
}

@keyframes platformMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.contact-card {
  position: relative;
  display: flex;
  min-height: clamp(210px, 22svh, 300px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 120px);
  border: 1px solid rgba(246, 183, 67, 0.28);
  border-radius: 8px;
  padding: clamp(34px, 4.4vw, 78px) clamp(32px, 5vw, 96px);
  background:
    linear-gradient(110deg, rgba(246, 183, 67, 0.2), rgba(61, 183, 167, 0.12) 50%, rgba(217, 77, 63, 0.14)),
    #0b1c2f;
  overflow: hidden;
}

.contact-copy {
  flex: 1 1 auto;
  max-width: none;
  min-width: 0;
}

.contact h2 {
  margin: 14px 0 16px;
  max-width: none;
  text-wrap: normal;
}

.contact p {
  max-width: 880px;
}

.contact-info {
  flex: 0 0 auto;
  min-width: clamp(250px, 18vw, 330px);
  border: 1px solid rgba(246, 183, 67, 0.32);
  border-radius: 8px;
  padding: clamp(24px, 2.4vw, 36px);
  background:
    linear-gradient(135deg, rgba(246, 183, 67, 0.1), rgba(7, 17, 31, 0.4)),
    rgba(7, 17, 31, 0.46);
  color: #fff4dd;
  text-align: left;
}

.contact-info h3 {
  margin: 0 0 26px;
  color: #fff7e6;
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 700;
  text-align: center;
}

.contact-info p {
  max-width: none;
  margin: 0;
  color: rgba(255, 247, 230, 0.9);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.7;
}

.contact-info span {
  display: inline-block;
  min-width: 4.4em;
}

.contact-info a {
  color: inherit;
}

.site-footer {
  display: flex;
  width: min(2080px, calc(100% - clamp(36px, 8vw, 128px)));
  margin: clamp(12px, 2svh, 22px) auto 0;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: clamp(14px, 2svh, 22px) 0 0;
  color: rgba(247, 234, 208, 0.58);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.contact .site-footer,
.download-screen .site-footer {
  width: min(2080px, 100%);
  margin-top: auto;
}

.download-body {
  min-height: 100svh;
}

.download-screen {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: clamp(108px, 11svh, 144px) clamp(18px, 4vw, 64px) clamp(18px, 3svh, 34px);
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.94)),
    url("https://bl-1413587659.cos.ap-beijing.myqcloud.com/web/assets/images/hero-ai-comic-portrait.png");
  background-position: center center;
  background-size: cover;
}

.download-screen::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(246, 183, 67, 0.18), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(61, 183, 167, 0.16), transparent 34%);
  content: "";
}

.download-heading,
.download-catalog {
  width: min(2080px, 100%);
  margin: 0 auto;
}

.download-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 96px);
  align-items: end;
  margin-bottom: clamp(30px, 5svh, 54px);
}

.download-heading h1 {
  margin: 12px 0 0;
  color: #fff4dd;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.05;
}

.download-heading p {
  margin: 0;
  color: rgba(247, 234, 208, 0.72);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.78;
}

.download-catalog {
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
  align-items: stretch;
  scroll-margin-top: 112px;
}

.featured-software {
  display: grid;
  min-height: clamp(430px, 47svh, 560px);
  align-content: space-between;
  gap: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(247, 234, 208, 0.16);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 46px);
  background:
    radial-gradient(circle at 20% 16%, rgba(246, 183, 67, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(18, 63, 114, 0.5), rgba(7, 17, 31, 0.84)),
    rgba(7, 17, 31, 0.76);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 247, 230, 0.06);
  backdrop-filter: blur(12px);
}

.software-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(246, 183, 67, 0.36);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-software h2 {
  margin: 16px 0 12px;
  color: #fff4dd;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.18;
}

.featured-software p,
.software-row p {
  margin: 0;
  color: rgba(247, 234, 208, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.featured-software dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.featured-software dl div {
  display: grid;
  gap: 3px;
}

.featured-software dt {
  color: rgba(247, 234, 208, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.featured-software dd {
  margin: 0;
  color: rgba(255, 247, 230, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.download-list-panel {
  display: grid;
  height: clamp(430px, 47svh, 560px);
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
}

.license-help {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(246, 183, 67, 0.34);
  border-radius: 8px;
  padding: 14px 18px;
  background:
    radial-gradient(circle at 92% 26%, rgba(246, 183, 67, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(246, 183, 67, 0.12), rgba(61, 183, 167, 0.08)),
    rgba(7, 17, 31, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 230, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.18);
}

.license-help span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.license-help strong {
  display: block;
  margin-top: 4px;
  color: #fff4dd;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.2;
}

.license-help p {
  margin: 0;
  color: rgba(247, 234, 208, 0.72);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  white-space: nowrap;
}

.license-help b {
  color: #fff4dd;
  font-size: clamp(17px, 1.25vw, 21px);
}

.software-table {
  display: grid;
  max-height: clamp(430px, 47svh, 560px);
  gap: 10px;
  overflow-y: auto;
  padding-right: 8px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(246, 183, 67, 0.58) rgba(7, 17, 31, 0.45);
  scrollbar-width: thin;
}

.download-list-panel .software-table {
  max-height: none;
  min-height: 0;
}

.software-row {
  display: grid;
  min-height: 78px;
  grid-template-columns: 54px minmax(0, 1fr) 100px 126px auto;
  gap: clamp(12px, 1.2vw, 22px);
  align-items: center;
  border: 1px solid rgba(247, 234, 208, 0.14);
  border-radius: 8px;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(18, 63, 114, 0.32), rgba(7, 17, 31, 0.78)),
    rgba(7, 17, 31, 0.68);
  backdrop-filter: blur(10px);
}

.software-index {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.software-row h2 {
  margin: 0 0 5px;
  color: #fff4dd;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.2;
}

.software-row > span:not(.software-index) {
  color: rgba(255, 247, 230, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.software-action {
  display: inline-flex;
  min-width: 92px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 183, 67, 0.76);
  border-radius: 8px;
  background: var(--gold);
  color: #1f1709;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.software-action:hover,
.software-action:focus-visible {
  border-color: rgba(61, 183, 167, 0.9);
  box-shadow:
    0 16px 38px rgba(246, 183, 67, 0.24),
    0 0 28px rgba(61, 183, 167, 0.18);
  transform: translateY(-2px);
}

.software-action.is-unavailable {
  border-color: rgba(255, 247, 230, 0.24);
  background: rgba(255, 247, 230, 0.07);
  color: rgba(255, 247, 230, 0.62);
  box-shadow: none;
}

.software-action.is-unavailable:hover,
.software-action.is-unavailable:focus-visible {
  border-color: rgba(255, 247, 230, 0.34);
  box-shadow: none;
  transform: none;
}

.software-action:disabled,
.software-action.is-loading {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .drama-showcase,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .drama-showcase {
    align-items: start;
    min-height: auto;
    padding: clamp(110px, 12vw, 136px) 0 clamp(78px, 9vw, 108px);
    gap: 38px;
  }

  .drama-copy {
    display: block;
    width: min(760px, calc(100% - 40px));
    max-width: none;
  }

  .drama-copy p {
    max-width: none;
    margin-top: 18px;
  }

  .drama-meta {
    margin-top: 24px;
  }

  .cover-card {
    flex-basis: clamp(184px, 25vw, 236px);
  }

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

  .service-section {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 108px;
  }

  .camera-hud {
    inset: 94px 18px 26px;
  }

  .camera-corner {
    width: 54px;
    height: 42px;
  }

  .camera-battery {
    top: 20px;
    left: 26px;
    width: 68px;
    height: 27px;
    border-width: 2px;
  }

  .camera-battery::after {
    right: -8px;
    border-width: 2px;
  }

  .camera-rec {
    top: 18px;
    right: 24px;
    gap: 8px;
    font-size: 19px;
  }

  .camera-rec span {
    width: 12px;
    height: 12px;
  }

  .service-canvas-wrap {
    display: grid;
    height: auto;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-canvas-wrap::after,
  .service-curve-canvas {
    display: none;
  }

  .service-core,
  .service-node,
  .service-node[data-node] {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }

  .service-core {
    grid-column: 1 / -1;
  }

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

  .feature-copy {
    padding-top: 46px;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .brand-text {
    white-space: normal;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-bg {
    background-position: center center;
  }

  .firefly-layer {
    opacity: 0.72;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 12, 23, 0.92) 0%, rgba(4, 12, 23, 0.62) 38%, rgba(4, 12, 23, 0.18) 78%, rgba(4, 12, 23, 0.1) 100%),
      linear-gradient(180deg, rgba(7, 17, 31, 0.32) 0%, rgba(7, 17, 31, 0.14) 42%, rgba(7, 17, 31, 0.74) 84%, var(--ink) 100%);
  }

  .section {
    width: min(100% - 32px, 1180px);
  }

  .intro {
    padding-top: 118px;
  }

  .drama-showcase {
    padding-top: 118px;
    padding-bottom: 70px;
    gap: 30px;
  }

  .drama-copy {
    width: min(100% - 32px, 680px);
  }

  .drama-carousel {
    --cover-gap: 12px;
    margin-inline: 0;
    padding-bottom: 28px;
  }

  .cover-card {
    flex-basis: clamp(154px, 48vw, 190px);
  }

  .cover-art {
    width: calc(100% - 20px);
    height: calc(100% - 36px);
  }

  @keyframes coverMarquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(var(--marquee-shift, calc(-50% - 6px)));
    }
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 10px;
  }

  .work-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-canvas-wrap {
    grid-template-columns: 1fr;
  }

  .service-node,
  .work-grid article,
  .process-list li {
    min-height: auto;
  }

  .feature-image {
    min-height: 320px;
  }

  .contact {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 112px 16px 30px;
    align-items: center;
    gap: 18px;
  }

  .platform-panel,
  .contact-card {
    width: 100%;
  }

  .platform-panel {
    padding: 18px;
  }

  .platform-heading {
    display: block;
    text-align: center;
  }

  .platform-map {
    display: flex;
    min-height: 230px;
    padding: 16px 0;
    gap: 12px;
  }

  .platform-track {
    padding: 0 16px;
  }

  .platform-item {
    min-width: 138px;
    min-height: 44px;
    gap: 8px;
    margin-right: 10px;
    font-size: 14px;
  }

  .platform-item img {
    width: 22px;
    height: 22px;
  }

  .contact-card {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 24px;
  }

  .contact-info {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    width: min(100% - 32px, 2080px);
    flex-direction: column;
  }

  .download-heading,
  .download-catalog {
    grid-template-columns: 1fr;
  }

  .download-heading {
    gap: 18px;
  }

  .featured-software {
    min-height: auto;
  }

  .download-list-panel {
    height: auto;
  }

  .license-help {
    align-items: flex-start;
  }

  .software-table {
    max-height: min(52svh, 520px);
  }

  .software-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .license-help {
    display: grid;
    gap: 10px;
  }

  .license-help p {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .story-direction-screen {
    padding: clamp(90px, 11svh, 116px) clamp(16px, 4vw, 34px) clamp(24px, 4svh, 42px);
    gap: clamp(12px, 1.8svh, 18px);
  }

  .story-direction-screen .feature-band {
    grid-template-columns: clamp(360px, 48vw, 560px) minmax(320px, 1fr);
  }

  .story-direction-screen .feature-image {
    width: 100%;
    min-height: 0;
  }

  .story-direction-screen .feature-copy {
    padding: clamp(20px, 3.5vw, 38px);
  }

  .direction-panel .section-heading {
    display: grid;
    justify-items: center;
    margin-bottom: 12px;
    text-align: center;
  }

  .direction-panel .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .direction-panel .work-grid article {
    min-height: clamp(104px, 13svh, 132px);
    padding: 15px;
  }
}

@media (max-width: 700px) {
  .story-direction-screen {
    min-height: 100svh;
    padding: 106px 14px 18px;
    gap: 10px;
  }

  .story-direction-screen .feature-band {
    grid-template-columns: minmax(112px, 0.7fr) minmax(0, 1fr);
  }

  .story-direction-screen .feature-image {
    width: 100%;
    min-height: 0;
  }

  .story-direction-screen .feature-copy {
    padding: 12px;
  }

  .story-direction-screen .section-label {
    font-size: 10px;
  }

  .story-direction-screen .feature-copy h2 {
    margin: 7px 0 7px;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.12;
  }

  .story-direction-screen .feature-copy p {
    font-size: 11px;
    line-height: 1.42;
  }

  .story-direction-screen .feature-list {
    gap: 5px;
    margin-top: 8px;
  }

  .story-direction-screen .feature-list span {
    padding: 4px 6px;
    font-size: 10px;
  }

  .direction-panel .section-heading {
    display: grid;
    justify-items: center;
    gap: 6px;
    margin-bottom: 8px;
    text-align: center;
  }

  .direction-panel .section-heading h2 {
    margin-top: 0;
    font-size: clamp(20px, 5.8vw, 28px);
  }

  .direction-panel .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .direction-panel .work-grid article {
    min-height: 0;
    padding: 9px;
  }

  .direction-panel .work-grid h3 {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .direction-panel .work-grid p {
    font-size: 11px;
    line-height: 1.36;
  }
}

.service-section > .service-heading {
  position: relative;
  z-index: 5;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-inline: clamp(160px, 12vw, 260px);
  text-align: center;
}

.service-section > .service-heading .section-label {
  justify-self: center;
}

.service-section > .service-heading h2 {
  width: min(980px, 100%);
  max-width: 100%;
  margin-inline: auto;
  font-size: clamp(34px, 3.6vw, 56px);
  text-align: center;
}

@media (max-width: 1500px) {
  .service-section > .service-heading {
    padding-inline: clamp(112px, 14vw, 190px);
  }

  .service-section > .service-heading h2 {
    width: min(760px, 100%);
    font-size: clamp(32px, 4vw, 50px);
  }
}

@media (max-width: 980px) {
  .service-section > .service-heading {
    padding-inline: 82px;
  }

  .service-section > .service-heading h2 {
    width: min(560px, 100%);
    font-size: clamp(30px, 5vw, 44px);
  }
}

@media (max-width: 700px) {
  .service-section > .service-heading {
    padding-inline: 56px;
  }

  .service-section > .service-heading h2 {
    width: min(440px, 100%);
    font-size: clamp(24px, 7.5vw, 34px);
    line-height: 1.14;
  }

  .camera-rec {
    top: 16px;
    right: 18px;
    gap: 7px;
    font-size: 17px;
  }

  .camera-rec span {
    width: 11px;
    height: 11px;
  }
}

@media (min-width: 981px) and (max-height: 1120px) {
  .drama-showcase {
    min-height: 100svh;
    padding: clamp(96px, 10svh, 122px) 0 clamp(62px, 6svh, 82px);
    gap: clamp(36px, 4.8svh, 56px);
  }

  .drama-copy {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.5fr);
  }

  .cover-card {
    flex-basis: clamp(204px, 14.2vw, 252px);
  }

  .service-section {
    padding-top: clamp(82px, 8.5svh, 106px);
    padding-bottom: clamp(62px, 6svh, 82px);
  }

  .service-canvas-wrap {
    height: clamp(430px, calc(100svh - 380px), 560px);
  }

  .story-direction-screen {
    padding-top: clamp(78px, 7.6svh, 98px);
    padding-bottom: clamp(28px, 3.4svh, 46px);
  }

  .contact {
    min-height: 100svh;
    padding: clamp(82px, 8svh, 102px) clamp(18px, 4vw, 64px) clamp(18px, 2.6svh, 32px);
    justify-content: flex-start;
    gap: clamp(14px, 1.8svh, 22px);
  }

  .platform-panel {
    padding: clamp(20px, 2.3vw, 32px);
  }

  .platform-map {
    min-height: clamp(220px, 27svh, 300px);
    margin-top: clamp(14px, 1.7svh, 20px);
    padding: clamp(16px, 2svh, 28px) 0;
  }

  .contact-card {
    min-height: clamp(176px, 20svh, 250px);
    padding: clamp(26px, 3.3vw, 54px) clamp(30px, 4vw, 72px);
  }

  .contact-info {
    padding: clamp(20px, 2vw, 30px);
  }

  .contact-info h3 {
    margin-bottom: 18px;
  }

  .site-footer {
    padding-top: clamp(10px, 1.5svh, 16px);
  }

  .featured-software {
    align-content: start;
    gap: clamp(10px, 1.2svh, 14px);
    padding: clamp(20px, 2vw, 30px);
  }

  .featured-software h2 {
    margin: 10px 0 7px;
    font-size: clamp(28px, 3vw, 42px);
  }

  .featured-software p {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .featured-software dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .featured-software > .software-action {
    width: 100%;
    min-height: 42px;
  }
}

@media (min-width: 981px) and (max-height: 960px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 600px;
  }

  .dream-entry {
    bottom: clamp(24px, 4svh, 46px);
  }

  .drama-showcase {
    min-height: 100svh;
    padding: clamp(86px, 10svh, 116px) 0 clamp(52px, 6svh, 76px);
    gap: clamp(28px, 4svh, 48px);
  }

  .drama-copy {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.52fr);
  }

  .intro h2,
  .section-heading h2,
  .feature-copy h2,
  .contact h2 {
    font-size: clamp(30px, 3.4vw, 48px);
  }

  .intro p,
  .feature-copy p,
  .contact p {
    font-size: clamp(14px, 1.3vw, 17px);
    line-height: 1.64;
  }

  .drama-carousel {
    padding-bottom: 24px;
  }

  .cover-card {
    flex-basis: clamp(184px, 14.5vw, 244px);
  }

  .service-section {
    min-height: 100svh;
    padding: clamp(72px, 8svh, 94px) clamp(24px, 4vw, 68px) clamp(46px, 5.4svh, 66px);
    justify-content: flex-start;
  }

  .service-section > .service-heading {
    padding-inline: clamp(96px, 10vw, 180px);
  }

  .service-heading {
    margin-bottom: clamp(14px, 2svh, 24px);
  }

  .service-section > .service-heading h2 {
    font-size: clamp(30px, 3.3vw, 48px);
  }

  .service-canvas-wrap {
    height: clamp(390px, calc(100svh - 360px), 520px);
  }

  .service-core {
    width: clamp(178px, 15vw, 226px);
    min-height: 126px;
    padding: 20px;
  }

  .service-core strong {
    font-size: clamp(20px, 1.8vw, 26px);
  }

  .service-node {
    width: clamp(194px, 18vw, 282px);
    min-height: 120px;
    padding: 16px;
  }

  .service-node h3,
  .work-grid h3 {
    margin: 11px 0 6px;
    font-size: 19px;
  }

  .service-node p,
  .work-grid p {
    font-size: 13px;
    line-height: 1.5;
  }

  .service-download {
    margin-top: clamp(10px, 1.8svh, 20px);
  }

  .app-download-button {
    min-height: 46px;
  }

  .story-direction-screen {
    min-height: 100svh;
    padding: clamp(72px, 8svh, 96px) clamp(18px, 3vw, 54px) clamp(24px, 3.6svh, 42px);
    justify-content: flex-start;
    gap: clamp(10px, 1.6svh, 18px);
  }

  .story-direction-screen .feature-band {
    grid-template-columns: clamp(500px, 58svh, 650px) minmax(430px, 1fr);
  }

  .story-direction-screen .feature-copy {
    padding: clamp(20px, 3vw, 44px);
  }

  .story-direction-screen .feature-copy h2 {
    margin: 10px 0 10px;
    font-size: clamp(24px, 2.8vw, 38px);
  }

  .story-direction-screen .feature-copy p {
    font-size: clamp(13px, 1.08vw, 15px);
    line-height: 1.5;
  }

  .story-direction-screen .feature-list {
    margin-top: 12px;
  }

  .direction-panel .section-heading {
    margin-bottom: 10px;
  }

  .direction-panel .section-heading h2 {
    font-size: clamp(22px, 2.5vw, 34px);
  }

  .direction-panel .work-grid {
    gap: 10px;
  }

  .direction-panel .work-grid article {
    min-height: clamp(94px, 11svh, 118px);
    padding: 14px;
  }

  .direction-panel .work-grid h3 {
    margin-bottom: 6px;
    font-size: clamp(17px, 1.35vw, 20px);
  }

  .direction-panel .work-grid p {
    font-size: clamp(12px, 0.96vw, 14px);
    line-height: 1.42;
  }

  .contact {
    min-height: 100svh;
    padding: clamp(72px, 8svh, 96px) clamp(18px, 3vw, 54px) clamp(18px, 2.8svh, 30px);
    justify-content: flex-start;
    gap: clamp(12px, 1.8svh, 20px);
  }

  .platform-panel {
    padding: clamp(18px, 2.2vw, 30px);
  }

  .platform-heading h3 {
    font-size: clamp(25px, 2.7vw, 36px);
  }

  .platform-map {
    min-height: clamp(190px, 24svh, 250px);
    margin-top: 14px;
    padding: clamp(14px, 2svh, 24px) 0;
    gap: clamp(12px, 1.7svh, 18px);
  }

  .platform-item {
    min-height: clamp(44px, 4.8svh, 58px);
  }

  .contact-card {
    min-height: clamp(166px, 19svh, 220px);
    padding: clamp(24px, 3vw, 46px) clamp(26px, 4vw, 68px);
  }

  .contact-info {
    padding: clamp(18px, 2vw, 28px);
  }

  .contact-info h3 {
    margin-bottom: 18px;
  }

  .site-footer {
    padding-top: 10px;
    font-size: 13px;
  }

  .download-screen {
    min-height: 100svh;
    padding: clamp(84px, 9svh, 106px) clamp(18px, 3vw, 54px) clamp(16px, 2.6svh, 28px);
    justify-content: flex-start;
  }

  .download-heading {
    margin-bottom: clamp(18px, 2.8svh, 30px);
  }

  .download-heading h1 {
    font-size: clamp(36px, 4.8vw, 66px);
  }

  .download-heading p {
    font-size: clamp(14px, 1.18vw, 17px);
    line-height: 1.52;
  }

  .featured-software,
  .download-list-panel {
    min-height: 0;
    height: clamp(340px, 40svh, 440px);
  }

  .featured-software {
    padding: clamp(22px, 2.4vw, 34px);
    gap: 10px;
  }

  .featured-software h2 {
    margin: 12px 0 8px;
    font-size: clamp(28px, 3vw, 44px);
  }

  .featured-software p,
  .software-row p {
    font-size: 14px;
    line-height: 1.5;
  }

  .featured-software p {
    -webkit-line-clamp: 1;
  }

  .featured-software dl {
    gap: 6px;
  }

  .license-help {
    min-height: 64px;
  }

  .software-row {
    min-height: 76px;
    padding: 10px 12px;
  }
}

@media (min-width: 981px) and (max-height: 860px) {
  .hero {
    min-height: 560px;
  }

  .dream-entry {
    bottom: clamp(20px, 4svh, 38px);
  }

  .drama-showcase {
    min-height: 100svh;
    padding: clamp(78px, 10svh, 104px) 0 clamp(44px, 6svh, 70px);
    gap: clamp(24px, 4svh, 42px);
  }

  .intro h2,
  .section-heading h2,
  .feature-copy h2,
  .contact h2 {
    font-size: clamp(28px, 3.3vw, 46px);
  }

  .intro p,
  .feature-copy p,
  .contact p {
    font-size: clamp(14px, 1.25vw, 17px);
    line-height: 1.62;
  }

  .drama-carousel {
    padding-bottom: 22px;
  }

  .cover-card {
    flex-basis: clamp(176px, 14.5vw, 240px);
  }

  .service-section {
    min-height: 100svh;
    padding: clamp(68px, 8svh, 88px) clamp(24px, 4vw, 64px) clamp(52px, 6svh, 72px);
    justify-content: flex-start;
  }

  .service-heading {
    margin-bottom: clamp(14px, 2svh, 22px);
  }

  .service-section > .service-heading h2 {
    font-size: clamp(28px, 3.2vw, 46px);
  }

  .service-canvas-wrap {
    height: clamp(320px, calc(100svh - 360px), 430px);
  }

  .service-core {
    width: clamp(166px, 14vw, 210px);
    min-height: 116px;
    padding: 16px;
  }

  .service-core strong {
    font-size: clamp(20px, 1.8vw, 26px);
  }

  .service-node {
    width: clamp(184px, 17vw, 260px);
    min-height: 108px;
    padding: 14px;
  }

  .service-node h3,
  .work-grid h3 {
    margin: 12px 0 7px;
    font-size: 19px;
  }

  .service-node p,
  .work-grid p {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .service-download {
    margin-top: clamp(12px, 2svh, 22px);
  }

  .app-download-button {
    min-height: 44px;
  }

  .story-direction-screen {
    min-height: 100svh;
    padding: clamp(70px, 8svh, 92px) clamp(18px, 3vw, 48px) clamp(28px, 4svh, 44px);
    justify-content: flex-start;
    gap: clamp(10px, 1.8svh, 18px);
  }

  .story-direction-screen .feature-band {
    grid-template-columns: clamp(410px, 54svh, 560px) minmax(400px, 1fr);
  }

  .story-direction-screen .feature-copy {
    padding: clamp(20px, 3vw, 42px);
  }

  .story-direction-screen .feature-copy h2 {
    font-size: clamp(24px, 2.8vw, 36px);
  }

  .story-direction-screen .feature-copy p {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.52;
  }

  .direction-panel .section-heading {
    margin-bottom: 10px;
  }

  .direction-panel .section-heading h2 {
    font-size: clamp(22px, 2.5vw, 34px);
  }

  .direction-panel .work-grid {
    gap: 10px;
  }

  .direction-panel .work-grid article {
    min-height: clamp(86px, 11.5svh, 112px);
    padding: 12px;
  }

  .contact {
    min-height: 100svh;
    padding: clamp(70px, 8svh, 92px) clamp(18px, 3vw, 48px) clamp(22px, 3svh, 34px);
    justify-content: flex-start;
    gap: clamp(12px, 2svh, 20px);
  }

  .platform-panel {
    padding: clamp(18px, 2.2vw, 28px);
  }

  .platform-map {
    min-height: clamp(170px, 23svh, 230px);
    margin-top: 14px;
    padding: clamp(14px, 2svh, 24px) 0;
  }

  .platform-item {
    min-height: clamp(44px, 5svh, 58px);
  }

  .contact-card {
    min-height: clamp(150px, 18svh, 200px);
    padding: clamp(24px, 3vw, 46px) clamp(26px, 4vw, 64px);
  }

  .contact-info {
    padding: clamp(18px, 2vw, 28px);
  }

  .contact-info h3 {
    margin-bottom: 18px;
  }

  .site-footer {
    padding-top: 12px;
    font-size: 13px;
  }

  .download-screen {
    min-height: 100svh;
    padding: clamp(84px, 10svh, 110px) clamp(18px, 3vw, 48px) clamp(18px, 3svh, 30px);
    justify-content: flex-start;
  }

  .download-heading {
    margin-bottom: clamp(18px, 3svh, 30px);
  }

  .download-heading h1 {
    font-size: clamp(36px, 5vw, 64px);
  }

  .download-heading p {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.55;
  }

  .featured-software,
  .download-list-panel {
    min-height: 0;
    height: clamp(300px, 38svh, 390px);
  }

  .featured-software {
    padding: clamp(22px, 2.4vw, 34px);
    gap: 20px;
  }

  .featured-software h2 {
    font-size: clamp(28px, 3vw, 42px);
  }

  .license-help {
    min-height: 64px;
  }

  .software-row {
    min-height: 68px;
    padding: 10px 12px;
  }
}

@media (min-width: 981px) and (max-height: 780px) {
  .hero {
    min-height: 520px;
  }

  .drama-showcase {
    padding-top: clamp(72px, 9svh, 86px);
    padding-bottom: clamp(38px, 5svh, 52px);
    gap: 22px;
  }

  .cover-card {
    flex-basis: clamp(156px, 12.5vw, 210px);
  }

  .service-section {
    padding-top: clamp(58px, 7.2svh, 70px);
    padding-bottom: clamp(34px, 4.5svh, 46px);
  }

  .service-canvas-wrap {
    height: clamp(300px, calc(100svh - 390px), 360px);
  }

  .service-core {
    min-height: 104px;
    padding: 14px;
  }

  .service-node {
    width: clamp(172px, 16vw, 242px);
    min-height: 98px;
    padding: 12px;
  }

  .service-node h3 {
    margin: 7px 0 4px;
    font-size: 17px;
  }

  .service-node p {
    font-size: 12px;
    line-height: 1.36;
  }

  .story-direction-screen {
    padding-top: clamp(58px, 7.2svh, 72px);
    padding-bottom: clamp(18px, 3svh, 30px);
    gap: 9px;
  }

  .story-direction-screen .feature-band {
    grid-template-columns: clamp(350px, 47svh, 460px) minmax(360px, 1fr);
  }

  .story-direction-screen .feature-copy {
    padding: 16px;
  }

  .story-direction-screen .feature-copy h2 {
    margin: 7px 0 7px;
    font-size: clamp(21px, 2.2vw, 30px);
  }

  .story-direction-screen .feature-copy p {
    font-size: 12px;
    line-height: 1.38;
  }

  .story-direction-screen .feature-list {
    margin-top: 8px;
  }

  .story-direction-screen .feature-list span {
    padding: 6px 9px;
    font-size: 12px;
  }

  .direction-panel .section-heading h2 {
    font-size: clamp(20px, 2.2vw, 30px);
  }

  .direction-panel .work-grid article {
    min-height: 76px;
    padding: 10px;
  }

  .direction-panel .work-grid h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .direction-panel .work-grid p {
    font-size: 11.5px;
    line-height: 1.32;
  }

  .contact {
    padding-top: clamp(58px, 7.2svh, 72px);
    padding-bottom: 16px;
    gap: 10px;
  }

  .platform-panel {
    padding: 16px;
  }

  .platform-heading h3 {
    font-size: clamp(22px, 2.4vw, 30px);
  }

  .platform-map {
    min-height: 150px;
    margin-top: 10px;
    padding: 12px 0;
    gap: 10px;
  }

  .platform-item {
    min-height: 40px;
  }

  .contact-card {
    min-height: 138px;
    padding: 20px 26px;
  }

  .contact h2 {
    margin: 10px 0 10px;
  }

  .contact-info {
    padding: 16px;
  }

  .contact-info h3 {
    margin-bottom: 12px;
  }

  .download-screen {
    padding-top: clamp(70px, 9svh, 86px);
    padding-bottom: 14px;
  }

  .download-heading {
    margin-bottom: 14px;
  }

  .download-heading h1 {
    margin-top: 8px;
    font-size: clamp(32px, 4.4vw, 54px);
  }

  .download-heading p {
    line-height: 1.42;
  }

  .featured-software,
  .download-list-panel {
    height: clamp(280px, 36svh, 330px);
  }

  .featured-software {
    padding: 18px;
  }

  .featured-software h2 {
    margin: 8px 0 6px;
    font-size: clamp(24px, 2.6vw, 34px);
  }

  .license-help {
    min-height: 58px;
  }
}

@media (min-width: 981px) and (max-height: 720px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 500px;
  }

  .drama-showcase {
    padding-top: 72px;
    padding-bottom: 42px;
    gap: 22px;
  }

  .drama-meta {
    margin-top: 18px;
  }

  .cover-card {
    flex-basis: clamp(150px, 12vw, 200px);
  }

  .service-section {
    padding-top: 62px;
    padding-bottom: 42px;
  }

  .service-canvas-wrap {
    height: 340px;
  }

  .service-core {
    min-height: 116px;
    padding: 16px;
  }

  .service-node {
    width: clamp(188px, 18vw, 260px);
    min-height: 112px;
    padding: 14px;
  }

  .service-node h3 {
    margin: 8px 0 5px;
    font-size: 18px;
  }

  .service-node p {
    font-size: 12px;
    line-height: 1.45;
  }

  .story-direction-screen {
    padding-top: 62px;
    padding-bottom: 26px;
  }

  .story-direction-screen .feature-copy {
    padding: 18px;
  }

  .story-direction-screen .feature-copy h2 {
    margin: 8px 0 8px;
  }

  .story-direction-screen .feature-list {
    margin-top: 10px;
  }

  .direction-panel .work-grid article {
    min-height: 96px;
    padding: 12px;
  }

  .direction-panel .work-grid h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .direction-panel .work-grid p {
    font-size: 12px;
    line-height: 1.42;
  }

  .contact {
    padding-top: 62px;
    padding-bottom: 18px;
  }

  .platform-heading h3 {
    font-size: clamp(24px, 2.6vw, 34px);
  }

  .platform-map {
    min-height: 174px;
    gap: 12px;
  }

  .contact-card {
    min-height: 154px;
    padding: 22px 30px;
  }

  .download-screen {
    padding-top: 78px;
    padding-bottom: 16px;
  }

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

  .featured-software,
  .download-list-panel {
    height: clamp(310px, 40svh, 370px);
  }

  .featured-software h2 {
    margin: 10px 0 8px;
  }
}

@media (min-width: 981px) and (max-width: 1500px) {
  .download-heading {
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
    gap: clamp(18px, 3vw, 48px);
  }

  .download-catalog {
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
    gap: 16px;
  }

  .featured-software {
    align-content: start;
    gap: 12px;
    overflow: hidden;
    padding: 18px;
  }

  .featured-software h2 {
    margin: 10px 0 7px;
    font-size: clamp(24px, 2.6vw, 32px);
  }

  .featured-software p {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.36;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .featured-software dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .featured-software dd {
    font-size: 13px;
  }

  .featured-software > .software-action {
    width: 100%;
    min-height: 42px;
  }

  .software-row {
    min-height: 96px;
    grid-template-columns: 34px minmax(0, 1fr) minmax(92px, auto) 92px;
    grid-template-areas:
      "index copy copy action"
      "index version platform action";
    gap: 7px 10px;
    align-items: center;
    padding: 10px 12px;
  }

  .software-index {
    grid-area: index;
  }

  .software-row > div {
    grid-area: copy;
    min-width: 0;
  }

  .software-row > span:nth-of-type(2) {
    grid-area: version;
  }

  .software-row > span:nth-of-type(3) {
    grid-area: platform;
  }

  .software-row > span:not(.software-index) {
    min-width: 0;
    font-size: 12px;
  }

  .software-row h2 {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 4px;
    font-size: clamp(17px, 1.35vw, 20px);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .software-row p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .software-row .software-action {
    grid-area: action;
    justify-self: stretch;
    min-width: 88px;
    min-height: 42px;
    padding: 0 10px;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .download-heading {
    grid-template-columns: minmax(0, 0.72fr) minmax(250px, 0.58fr);
  }

  .download-heading h1 {
    font-size: clamp(32px, 4.8vw, 52px);
  }

  .download-catalog {
    grid-template-columns: minmax(270px, 0.36fr) minmax(0, 1fr);
    gap: 14px;
  }

  .featured-software {
    padding: 16px;
    gap: 8px;
  }

  .featured-software .software-tag {
    min-height: 24px;
  }

  .featured-software h2 {
    margin: 6px 0 4px;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.1;
  }

  .featured-software p {
    line-height: 1.32;
    -webkit-line-clamp: 1;
  }

  .featured-software dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .featured-software dl div {
    grid-template-columns: 3.4em minmax(0, 1fr);
    align-items: baseline;
  }

  .featured-software dt,
  .featured-software dd {
    font-size: 12px;
  }

  .featured-software > .software-action {
    min-height: 38px;
  }

  .software-row {
    grid-template-columns: 30px minmax(0, 1fr) minmax(82px, auto) 86px;
    min-height: 98px;
    gap: 6px 8px;
    padding: 9px 10px;
  }

  .software-row > span:not(.software-index) {
    font-size: 11.5px;
  }

  .software-row p {
    font-size: 12px;
    line-height: 1.36;
  }

  .software-row .software-action {
    min-width: 82px;
    font-size: 12px;
  }
}

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

  main > section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .firefly-layer {
    display: none;
  }

  .dream-arrow {
    animation: none;
  }

  .cover-track,
  .platform-track {
    animation: none;
  }

  .camera-rec span {
    animation: none;
  }
}
