:root {
  color-scheme: dark;
  --bg: #000;
  --ink: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.68);
  --faint: rgba(245, 245, 247, 0.14);
  --violet: #8d7cff;
  --cyan: #42d8ff;
  --lime: #bbff5e;
  --coral: #ff6e8f;
  --amber: #ffd166;
  --emerald: #18d49a;
  --section-accent: var(--violet);
  --section-accent-2: var(--cyan);
  --panel: rgba(7, 10, 22, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --header-h: 68px;
  --page-progress: 0;
  --page-progress-pct: 0%;
  font-family:
    "PingFang SC", "PingFang HK", "SF Pro Display", "SF Pro Text",
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34vh),
    linear-gradient(180deg, #030306 0%, #000 44%, #04030a 100%);
  background-attachment: fixed;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

body.entry-loading {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.field-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  mix-blend-mode: lighten;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
}

.entry-loader {
  --badge-x: 0px;
  --badge-y: 0px;
  --badge-rotate-x: 0deg;
  --badge-rotate-y: 0deg;
  --badge-rotate-z: 0deg;
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #1d1d1d;
  opacity: 1;
  visibility: visible;
  transition: opacity 720ms ease, visibility 720ms ease;
}

.entry-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-loader.is-revealing {
  pointer-events: none;
}

.entry-loader-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 18vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04) 36%, transparent 68%),
    #1d1d1d;
  filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.04);
  transform-origin: center;
  pointer-events: none;
}

.entry-loader.is-revealing .entry-loader-reveal {
  animation: entryRevealMask 920ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.entry-badge-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(172px, 18vw, 252px);
  aspect-ratio: 0.68;
  cursor: grab;
  perspective: 1100px;
  overflow: visible;
  transform:
    translate(-50%, -50%)
    translate3d(var(--badge-x), var(--badge-y), 0);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: none;
}

.entry-badge-strap,
.entry-badge-ring,
.entry-badge-hook {
  position: absolute;
  left: 50%;
  z-index: 1;
  pointer-events: none;
}

.entry-badge-strap {
  top: calc(-68vh - 72px);
  width: clamp(30px, 3vw, 44px);
  height: calc(68vh + 92px);
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 22% 78%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, #030303, #090909 74%, #000);
  box-shadow:
    inset 5px 0 8px rgba(255, 255, 255, 0.035),
    inset -6px 0 10px rgba(0, 0, 0, 0.74),
    0 18px 46px rgba(0, 0, 0, 0.66);
  transform: translateX(-50%);
}

.entry-badge-ring {
  top: -96px;
  width: 72px;
  height: 58px;
  border: 9px solid #050505;
  border-top-width: 11px;
  border-radius: 42% 42% 46% 46%;
  box-shadow:
    inset 0 4px 7px rgba(255, 255, 255, 0.18),
    inset 0 -8px 10px rgba(0, 0, 0, 0.92),
    0 16px 26px rgba(0, 0, 0, 0.6);
  transform: translateX(-50%) rotate(-2deg);
}

.entry-badge-ring::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 46px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #040404;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

.entry-badge-hook {
  top: -52px;
  width: 28px;
  height: 96px;
  border: 9px solid #050505;
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 0 0 22px 16px;
  box-shadow:
    inset -3px -2px 5px rgba(255, 255, 255, 0.16),
    8px 12px 18px rgba(0, 0, 0, 0.48);
  transform: translateX(-52%) rotate(-7deg);
}

.entry-badge-hook::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -6px;
  width: 17px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #050505;
  box-shadow:
    inset 3px 3px 4px rgba(255, 255, 255, 0.12),
    0 9px 14px rgba(0, 0, 0, 0.44);
}

.entry-loader.is-dragging .entry-badge-wrap {
  cursor: grabbing;
  transition: none;
}

.entry-badge {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: #050505;
  background: transparent;
  cursor: inherit;
  transform:
    rotateX(var(--badge-rotate-x))
    rotateY(var(--badge-rotate-y))
    rotateZ(var(--badge-rotate-z));
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.entry-loader.is-dragging .entry-badge {
  transition: none;
}

.entry-loader:not(.is-dragging):not(.is-ready) .entry-badge {
  animation: entryBadgeIdle 4.8s ease-in-out infinite;
}

.entry-loader.is-flying .entry-badge-wrap {
  transition: transform 820ms cubic-bezier(0.55, 0.02, 0.76, 0.32);
}

.entry-loader.is-flying .entry-badge {
  transition: transform 820ms cubic-bezier(0.55, 0.02, 0.76, 0.32);
}

.entry-badge-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background-color: #f5f5f1;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.94), transparent 22%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(239, 239, 234, 0.96) 58%, rgba(214, 214, 206, 0.98)),
    radial-gradient(circle, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 0.8px, transparent 1.6px);
  background-position: 0 0, 0 0, 0 0, 3px 4px;
  background-size: auto, auto, 8px 8px, 9px 9px;
  box-shadow:
    0 34px 90px rgba(255, 255, 255, 0.08),
    0 18px 56px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    inset 0 20px 36px rgba(255, 255, 255, 0.72),
    inset 0 -16px 30px rgba(0, 0, 0, 0.035);
  backface-visibility: hidden;
}

.entry-badge-face::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 24px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #1d1d1d 0 43%, transparent 45%),
    linear-gradient(145deg, #050505, #1c1c1c 52%, #000);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.12),
    0 4px 7px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.entry-badge-face::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 26% 72%, rgba(0, 0, 0, 0.035));
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
}

.entry-badge-back {
  transform: rotateY(180deg);
}

.entry-badge-number {
  display: block;
  font-family:
    "SF Mono", "Roboto Mono", "Cascadia Mono", ui-monospace, Menlo, Consolas,
    monospace;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: #030303;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
  transform: translateY(6px);
}

.entry-badge-number.is-counting {
  animation: entryNumberPulse 280ms ease both;
}

.entry-badge-clip {
  position: absolute;
  left: 50%;
  top: 17px;
  z-index: 4;
  width: 24px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #1d1d1d 0 42%, transparent 44%),
    linear-gradient(145deg, #050505, #202020 52%, #000);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.14),
    0 5px 9px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) translateZ(14px);
}

.entry-badge-clip::after {
  display: none;
}

.entry-loader-status {
  position: absolute;
  left: 50%;
  bottom: clamp(38px, 8vh, 76px);
  z-index: 4;
  color: rgba(255, 255, 255, 0.78);
  font-family:
    "SF Mono", "Roboto Mono", "Cascadia Mono", ui-monospace, Menlo, Consolas,
    monospace;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  transform: translateX(-50%);
  animation: entryLoadingBlink 1.9s ease-in-out infinite;
}

.entry-loader.is-ready .entry-loader-status {
  color: #fff;
  text-transform: none;
  animation-duration: 1.25s;
}

@keyframes entryBadgeIdle {
  0%,
  100% {
    transform: rotateX(0deg) rotateY(-8deg) rotateZ(-1.2deg);
  }

  48% {
    transform: rotateX(4deg) rotateY(8deg) rotateZ(1.2deg);
  }
}

@keyframes entryNumberPulse {
  0% {
    filter: blur(7px);
    opacity: 0.54;
    transform: translateY(12px) scale(0.96);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(6px) scale(1);
  }
}

@keyframes entryLoadingBlink {
  0%,
  100% {
    opacity: 0.36;
  }

  50% {
    opacity: 1;
  }
}

@keyframes entryRevealMask {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.04);
  }

  32% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.intro-gate.is-complete {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.intro-video,
.intro-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-video {
  object-fit: cover;
}

.intro-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 48%, rgba(0, 0, 0, 0.36)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
}

.intro-ui {
  position: relative;
  width: min(84vw, 1120px);
  align-self: end;
  padding-bottom: clamp(72px, 11vh, 130px);
}

.intro-kicker,
.stage-label,
.eyebrow,
.model-chip,
.rail-label,
.video-index,
.hero-meta,
.scroll-cue,
.intro-status,
.brand,
.top-nav,
.page-kind {
  font-family:
    "SF Mono", "Roboto Mono", "Cascadia Mono", ui-monospace, Menlo, Consolas,
    monospace;
}

.intro-kicker,
.stage-label,
.eyebrow {
  color: var(--lime);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-ui h1 {
  max-width: 900px;
  margin: 18px 0 10px;
  font-size: clamp(54px, 8.8vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(141, 124, 255, 0.56);
}

.intro-ui p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(21px, 2.4vw, 38px);
  font-weight: 700;
}

.intro-start {
  display: none;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.intro-start.is-visible {
  display: inline-flex;
}

.intro-progress {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 38px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.intro-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--coral));
  transition: width 180ms linear;
}

.intro-status {
  position: absolute;
  right: 8vw;
  bottom: 54px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.intro-player-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, calc(100vw - 40px));
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.66);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.intro-player-shell .intro-video {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  max-height: calc(100svh - 190px);
  border-radius: 6px;
  object-fit: contain;
  background: #000;
}

.intro-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.intro-copy p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 650;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100vw - 32px));
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.62);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px) saturate(1.32);
  pointer-events: auto;
  transform: translateX(-50%);
}

.brand,
.top-nav a {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--cyan), var(--violet), var(--coral), var(--cyan));
  box-shadow: 0 0 22px rgba(141, 124, 255, 0.46);
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: rgba(245, 245, 247, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.top-nav a {
  transition: color 220ms ease;
}

.top-nav a:hover {
  color: #fff;
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(107, 86, 255, 0.92), rgba(66, 216, 255, 0.82));
  box-shadow: 0 12px 34px rgba(66, 216, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-action:hover {
  filter: brightness(1.08);
  box-shadow: 0 15px 42px rgba(141, 124, 255, 0.28);
  transform: translateY(-1px);
}

.page-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: calc(var(--page-progress) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--coral));
  transform-origin: left;
  display: none;
}

.section-rail {
  position: fixed;
  left: clamp(18px, 2.2vw, 34px);
  top: 50%;
  z-index: 45;
  width: 38px;
  height: min(440px, 54vh);
  transform: translateY(-50%);
  --rail-active: 0;
}

.rail-item {
  position: absolute;
  left: 50%;
  top: calc(var(--rail-pos, 0) * 100%);
  z-index: 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}

.rail-liquid {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045),
    0 18px 56px rgba(0, 0, 0, 0.42),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.rail-liquid::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42% 58%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.rail-liquid-fill {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  height: var(--page-progress-pct);
  min-height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 16%),
    linear-gradient(180deg, var(--cyan), var(--lime) 36%, var(--violet) 68%, var(--coral));
  background-size: 100% 180%;
  box-shadow:
    0 0 18px rgba(66, 216, 255, 0.38),
    0 0 34px rgba(141, 124, 255, 0.26);
  animation: railLiquidFlow 3.4s ease-in-out infinite;
  transition: height 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rail-liquid-fill::before,
.rail-liquid-fill::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(3px);
  transform: translateX(-50%);
  animation: railBubble 4.6s ease-in-out infinite;
}

.rail-liquid-fill::before {
  top: 16%;
}

.rail-liquid-fill::after {
  top: 58%;
  width: 13px;
  height: 13px;
  opacity: 0.7;
  animation-delay: -1.8s;
}

.rail-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.rail-label {
  position: absolute;
  left: 28px;
  top: 50%;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 10, 14, 0.56);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translate(-7px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.rail-item.is-active {
  color: #fff;
}

.rail-item.is-active .rail-dot,
.rail-item:hover .rail-dot,
.rail-item:focus-visible .rail-dot {
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(66, 216, 255, 0.12),
    0 0 18px rgba(66, 216, 255, 0.62);
  opacity: 1;
  transform: scale(1.38);
}

.rail-item.is-active .rail-label,
.rail-item:hover .rail-label,
.rail-item:focus-visible .rail-label {
  opacity: 1;
  transform: translate(0, -50%);
}

@keyframes railLiquidFlow {
  0%,
  100% {
    background-position: 0% 0%;
    filter: hue-rotate(0deg);
  }

  50% {
    background-position: 0% 100%;
    filter: hue-rotate(18deg);
  }
}

@keyframes railBubble {
  0%,
  100% {
    opacity: 0.18;
    transform: translate(-50%, 18px) scale(0.62);
  }

  48% {
    opacity: 0.64;
    transform: translate(-50%, -10px) scale(1.05);
  }
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: clip;
}

.hero-section,
.story-section,
.demo-carousel-section {
  scroll-margin-top: calc(var(--header-h) + 32px);
}

.story-section {
  position: relative;
  overflow: visible;
}

.hero-section {
  display: grid;
  align-items: stretch;
  isolation: isolate;
  padding: clamp(94px, 11vh, 132px) clamp(20px, 6vw, 96px) clamp(58px, 7vh, 90px);
}

.hero-background-video,
.hero-background-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-background-video {
  z-index: -3;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(1.1) contrast(1.03) brightness(0.88);
}

.hero-background-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.54) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.72) 78%, #000 100%);
}

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

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.84) 0%, rgba(2, 4, 10, 0.28) 54%, rgba(2, 4, 10, 0.6)),
    linear-gradient(180deg, transparent, rgba(2, 4, 10, 0.86));
}

.hero-content {
  position: absolute;
  left: 0;
  top: clamp(132px, 27vh, 260px);
  bottom: auto;
  z-index: 4;
  max-width: min(560px, 34vw);
}

.hero-content h1 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 3.25vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  color: #f5f5f7;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line:last-child {
  color: #dbefff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
}

.hero-subtitle {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(245, 245, 247, 0.76);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 600;
  line-height: 1.45;
}

.hero-layout {
  position: relative;
  width: min(1480px, 100%);
  min-height: calc(100svh - clamp(168px, 18vh, 222px));
  margin: 0 auto;
}

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

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-cta {
  color: #fff;
  background: linear-gradient(135deg, #695cff, #56d6ff);
  box-shadow: 0 20px 56px rgba(86, 214, 255, 0.24);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(245, 245, 247, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.secondary-cta:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(245, 245, 247, 0.74);
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
}

.hero-laptop-shell {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: start center;
  width: min(1420px, 92vw);
  min-height: clamp(440px, 48vw, 760px);
  margin: 0 auto;
}

.hero-laptop-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 82%;
  height: 22%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18), rgba(86, 214, 255, 0.1) 34%, transparent 70%);
  filter: blur(20px);
  transform: translateX(-50%);
}

.hero-laptop {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 43vw, 690px);
  cursor: pointer;
  perspective: 2400px;
  transform-style: preserve-3d;
}

.laptop-screen {
  position: absolute;
  left: 50%;
  bottom: clamp(112px, 9.4vw, 150px);
  width: min(1200px, 91%);
  aspect-ratio: 16 / 9;
  border-radius: clamp(18px, 1.55vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 8%, transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035) 26%, rgba(0, 0, 0, 0.82)),
    #050507;
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.72),
    inset 0 0 0 2px rgba(255, 255, 255, 0.16),
    inset 0 0 0 12px rgba(0, 0, 0, 0.82),
    inset 0 -18px 38px rgba(0, 0, 0, 0.58);
  transform: translateX(-50%) rotateX(-35deg) scaleY(0.74);
  transform-origin: center bottom;
  transition:
    bottom 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 760ms ease;
  transform-style: preserve-3d;
}

.laptop-screen::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.28) 5%, rgba(0, 0, 0, 0.82) 10% 90%, rgba(255, 255, 255, 0.2) 96%, rgba(0, 0, 0, 0.86)),
    #111;
  filter: blur(0.2px);
}

.laptop-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 8% 92%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 10% 86%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.hero-laptop.is-open .laptop-screen {
  bottom: clamp(118px, 10.8vw, 172px);
  box-shadow:
    0 48px 136px rgba(0, 0, 0, 0.78),
    0 0 70px rgba(86, 214, 255, 0.12),
    inset 0 0 0 2px rgba(255, 255, 255, 0.18),
    inset 0 0 0 12px rgba(0, 0, 0, 0.88);
  transform: translateX(-50%) rotateX(-4deg) scaleY(1);
}

.laptop-bezel {
  position: absolute;
  inset: clamp(18px, 1.45vw, 28px);
  overflow: hidden;
  border-radius: clamp(10px, 0.9vw, 18px);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 7px),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 20%),
    #000;
}

.laptop-bezel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  z-index: 7;
  width: min(132px, 14%);
  height: 16px;
  border-radius: 0 0 11px 11px;
  background: #000;
  transform: translateX(-50%);
}

.laptop-bezel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  z-index: 8;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 216, 255, 0.45), #02050b 58%, #000 100%);
  box-shadow: 0 0 10px rgba(66, 216, 255, 0.16);
  transform: translateX(-50%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0.38;
  pointer-events: none;
  transition: opacity 480ms ease, filter 480ms ease;
  filter: grayscale(1) brightness(0.52) contrast(1.32) blur(0.2px);
}

.hero-laptop.is-open .hero-video {
  opacity: 1;
  pointer-events: auto;
  filter: none;
}

.laptop-open-button {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transform: translateX(-50%);
  transition: opacity 240ms ease, transform 240ms ease, background 180ms ease;
}

.laptop-open-button:hover {
  background: rgba(66, 216, 255, 0.24);
}

.hero-laptop.is-open .laptop-open-button {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

.laptop-hinge {
  position: absolute;
  left: 50%;
  bottom: clamp(104px, 9.15vw, 144px);
  z-index: 4;
  width: min(1040px, 84%);
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28) 18%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.28) 82%, transparent),
    #090a0d;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.laptop-base {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: min(1360px, 100%);
  height: clamp(132px, 10.4vw, 170px);
  overflow: hidden;
  border-radius: 18px 18px 46px 46px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 7% 93%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, #303135 0%, #16171a 42%, #050506 100%);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.82),
    inset 0 2px 0 rgba(255, 255, 255, 0.18),
    inset 0 -12px 26px rgba(0, 0, 0, 0.9);
  transform: translateX(-50%) perspective(1200px) rotateX(55deg);
  transform-origin: center top;
}

.laptop-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  width: min(250px, 19%);
  height: 20px;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    #202124;
  box-shadow:
    inset 0 -4px 12px rgba(0, 0, 0, 0.46),
    0 8px 18px rgba(0, 0, 0, 0.38);
  transform: translateX(-50%);
}

.laptop-base::after {
  content: "";
  position: absolute;
  left: 1.2%;
  right: 1.2%;
  bottom: 0;
  height: 34px;
  border-radius: 0 0 42px 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 12% 88%, rgba(255, 255, 255, 0.14));
}

.keyboard-grid {
  position: absolute;
  left: 11.5%;
  right: 11.5%;
  top: 18px;
  height: 58px;
  opacity: 0.42;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0 44px, transparent 44px 52px),
    repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0 13px, transparent 13px 21px);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.34);
}

.trackpad {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 26%;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  transform: translateX(-50%);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.story-section {
  --section-accent: var(--violet);
  --section-accent-2: var(--cyan);
  width: min(1320px, calc(100vw - clamp(48px, 10vw, 176px)));
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: center;
  padding: clamp(64px, 7vw, 108px) 0;
  background: transparent;
}

.story-section:nth-of-type(even) {
  grid-template-columns: minmax(520px, 1.18fr) minmax(340px, 0.82fr);
}

.story-section:nth-of-type(even) .section-copy {
  order: 2;
}

.story-section:nth-of-type(even) .section-visual {
  order: 1;
}

.story-section-tilt-safe {
  content-visibility: visible;
  contain: none;
  overflow: visible;
}

.story-section-centered,
.story-section-centered:nth-of-type(even) {
  width: min(1500px, calc(100vw - clamp(48px, 8vw, 144px)));
  min-height: clamp(660px, 88svh, 920px);
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: clamp(92px, 9vw, 142px) 0;
}

.story-section-centered .section-copy {
  width: 100%;
  max-width: none;
  text-align: center;
}

.story-section-centered .page-kind {
  justify-content: center;
  margin: 0 auto clamp(28px, 3vw, 42px);
  padding: 10px 18px;
  border: 1px solid rgba(24, 212, 154, 0.28);
  border-radius: 10px;
  color: #55e0b5;
  background:
    linear-gradient(145deg, rgba(24, 212, 154, 0.14), rgba(141, 124, 255, 0.08)),
    rgba(8, 16, 22, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 42px rgba(0, 0, 0, 0.24),
    0 0 32px rgba(24, 212, 154, 0.08);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.story-section-centered .page-kind::before {
  display: none;
}

.story-section-centered .section-copy h2 {
  max-width: 1320px;
  margin-inline: auto;
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.story-section-centered .split-title-manual-line {
  white-space: normal;
}

.story-section-centered .split-title-manual-line:nth-child(2) {
  margin-top: 8px;
}

#stage-06 .split-title-manual-line:nth-child(2) .split-title-word {
  color: #f5f5f7;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
  filter: none;
}

.story-section-statement .section-copy {
  display: grid;
  justify-items: center;
}

.statement-check {
  width: clamp(64px, 6vw, 94px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: clamp(40px, 5vw, 70px);
  border: 1px solid rgba(24, 212, 154, 0.24);
  border-radius: 50%;
  color: #28d7a4;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.12), transparent 42%),
    rgba(24, 212, 154, 0.08);
  box-shadow:
    inset 0 0 0 10px rgba(24, 212, 154, 0.025),
    0 0 42px rgba(24, 212, 154, 0.12);
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.story-section-statement .section-copy h2 {
  max-width: 1240px;
  font-size: clamp(44px, 4.8vw, 76px);
  line-height: 1.14;
}

.story-section-statement .split-title-manual-line:nth-child(2) {
  margin-top: 12px;
}

.story-section-statement .split-title-manual-line:nth-child(2) .split-title-word {
  color: #f5f5f7;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
  filter: none;
}

.centered-feature-modules {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  margin: clamp(38px, 4vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.4vw, 56px);
}

.centered-feature-modules::before {
  content: "";
  position: absolute;
  inset: -42% 8% -52%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(126, 78, 255, 0.16), transparent 68%);
  filter: blur(32px);
  pointer-events: none;
}

.centered-feature-module {
  position: relative;
  aspect-ratio: 500 / 145;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.26));
}

.centered-feature-module img {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
}

.centered-feature-module[data-panel="1"] img {
  left: 0;
}

.centered-feature-module[data-panel="2"] img {
  left: -111.2%;
}

.centered-feature-module[data-panel="3"] img {
  left: -222.4%;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 10vh 4vw;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  opacity: calc(0.08 + var(--local, 0) * 0.24);
  transform: scale(calc(1.03 - var(--local, 0) * 0.03));
  transition: border-color 280ms ease, opacity 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.story-section::after {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 110px);
  bottom: clamp(32px, 6vw, 92px);
  z-index: -1;
  width: min(44vw, 650px);
  height: min(44vw, 650px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
  opacity: 0.3;
  transition: opacity 280ms ease, border-color 280ms ease, filter 280ms ease;
}

.hero-section::after,
.story-section::before,
.story-section::after,
.demo-carousel-section::before {
  display: none;
}

.story-section[data-tone="insight"]::after {
  background: linear-gradient(135deg, rgba(66, 216, 255, 0.12), rgba(141, 124, 255, 0.04));
}

.story-section[data-tone="insight"] {
  --section-accent: var(--cyan);
  --section-accent-2: var(--violet);
}

.story-section[data-tone="stage"]::after {
  background: linear-gradient(135deg, rgba(24, 212, 154, 0.14), rgba(141, 124, 255, 0.05));
}

.story-section[data-tone="stage"] {
  --section-accent: var(--emerald);
  --section-accent-2: var(--violet);
}

#stage-02 {
  isolation: isolate;
}

#stage-02::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -64px;
  z-index: 0;
  display: block;
  width: 100vw;
  height: clamp(380px, 52vh, 660px);
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.48) 22%, rgba(0, 0, 0, 0.28) 58%, transparent 100%);
  filter: blur(10px);
  pointer-events: none;
  transform: translateX(-50%);
}

.story-section[data-tone="demo"]::after {
  background: linear-gradient(135deg, rgba(255, 110, 143, 0.16), rgba(255, 209, 102, 0.04));
}

.story-section[data-tone="demo"] {
  --section-accent: var(--coral);
  --section-accent-2: var(--amber);
}

.story-section[data-tone="future"]::after {
  background: linear-gradient(135deg, rgba(24, 212, 154, 0.14), rgba(66, 216, 255, 0.04));
}

.story-section[data-tone="future"] {
  --section-accent: var(--emerald);
  --section-accent-2: var(--cyan);
}

#future-24 {
  grid-template-columns: minmax(460px, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(28px, 4.6vw, 72px);
}

#future-24 .section-copy {
  max-width: 780px;
}

#future-24 .section-copy h2 {
  max-width: 780px;
  font-size: clamp(34px, 3vw, 52px);
}

#future-24 .split-title-manual-line:nth-child(2) {
  white-space: nowrap;
}

#future-24 .section-visual {
  display: grid;
  place-items: center;
}

#future-24 .slide-frame-transparent,
#future-24 .slide-frame-transparent:hover {
  width: 100%;
  max-width: 720px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

#future-24 .slide-frame-transparent::after {
  display: none;
}

#future-24 .slide-frame-transparent img,
#future-24 .slide-frame-transparent:hover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(680px, 72svh);
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.34));
  transform: none;
}

#future-24 .content-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#future-24 .content-lines li {
  position: relative;
  min-height: 72px;
  padding: 14px 16px;
}

#future-24 .content-lines li:last-child {
  padding-right: 92px;
}

#future-24 .content-lines li:last-child::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 66px;
  aspect-ratio: 1;
  background: url("assets/visuals/codex-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 8px 18px rgba(70, 105, 255, 0.26));
  pointer-events: none;
}

.section-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 720px;
}

:where(
  .hero-content h1,
  .hero-subtitle,
  .section-copy h2,
  .section-copy .lead,
  .content-lines li,
  .summary-item strong,
  .summary-item span,
  .model-chip,
  .demo-head h2,
  .page-kind,
  .eyebrow
) {
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
  hanging-punctuation: none;
}

.page-kind {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.page-kind::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 880;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
  color: #f5f5f7;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
  text-shadow: 0 0 28px rgba(141, 124, 255, 0.24);
  transition: filter 260ms ease, text-shadow 260ms ease;
}

.section-copy .lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.28vw, 20px);
  line-height: 1.76;
}

.content-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

#insight-09 .content-lines {
  grid-template-columns: 1fr;
}

#insight-09 .content-lines li {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding-inline: 16px;
}

#insight-10 .content-lines {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  max-width: 520px;
}

#insight-10 .content-lines li {
  width: max-content;
  min-height: 0;
  padding: 9px 14px;
  white-space: nowrap;
}

#insight-13 .content-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#insight-13 .content-lines li {
  min-height: 58px;
  padding: 12px 14px;
  text-align: center;
  justify-content: center;
}

#insight-13 .section-visual {
  display: grid;
  place-items: center;
  min-width: 0;
}

#insight-13 .slide-frame,
#insight-13 .slide-frame:hover {
  --tilt-rotate-x: 0deg;
  --tilt-rotate-y: 0deg;
  --tilt-scale: 1;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform:
    perspective(900px)
    rotateX(var(--tilt-rotate-x))
    rotateY(var(--tilt-rotate-y))
    scale(var(--tilt-scale));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

#insight-13 .slide-frame.is-tilting,
#insight-13 .slide-frame.is-tilting:hover {
  transition: transform 100ms linear;
}

#insight-13 .slide-frame::after {
  display: none;
}

#insight-13 .slide-frame img,
#insight-13 .slide-frame:hover img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(650px, 66svh);
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  filter: none;
  transform: none;
}

.content-lines li {
  opacity: 0;
  max-width: 100%;
  min-height: 52px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 18, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.48;
  transition:
    opacity 520ms ease,
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.story-section.is-visible .content-lines li,
.case-modal[aria-hidden="false"] .content-lines li {
  opacity: 1;
  animation: blurTextIn 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 42ms + 160ms);
}

.content-lines li:hover,
.content-lines li:focus-within {
  color: #fff;
  border-color: color-mix(in srgb, var(--section-accent) 66%, rgba(255, 255, 255, 0.28));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent) 18%, transparent), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--section-accent) 18%, transparent),
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 26px color-mix(in srgb, var(--section-accent) 18%, transparent);
  transform: translateY(-2px);
}

.section-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  transform: translate3d(0, calc((1 - var(--local, 0)) * 22px), 0);
  transition: transform 180ms linear, filter 220ms ease;
}

.section-visual::before {
  content: "";
  position: absolute;
  inset: 12% 6% -4%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--section-accent) 22%, transparent), transparent 62%),
    radial-gradient(circle at 54% 62%, color-mix(in srgb, var(--section-accent-2) 14%, transparent), transparent 68%);
  filter: blur(34px);
  opacity: 0.6;
  pointer-events: none;
}

.slide-frame,
.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(5, 8, 16, 0.48);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.slide-frame {
  isolation: isolate;
}

.slide-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter: saturate(1.07) contrast(1.03);
  background: rgba(0, 0, 0, 0.36);
  transition: filter 240ms ease, transform 360ms ease;
}

.slide-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(0deg, rgba(2, 4, 10, 0.1), rgba(2, 4, 10, 0));
  pointer-events: none;
}

.slide-frame:hover,
.video-card:hover {
  border-color: color-mix(in srgb, var(--section-accent) 58%, rgba(255, 255, 255, 0.22));
  background: color-mix(in srgb, var(--section-accent) 8%, rgba(255, 255, 255, 0.04));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 44px color-mix(in srgb, var(--section-accent) 18%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.slide-frame:hover img,
.video-card:hover video {
  filter: saturate(1.16) contrast(1.06) brightness(1.05);
}

.section-visual-reference {
  display: grid;
  place-items: center;
  overflow: visible;
  padding: clamp(18px, 2.4vw, 34px);
  perspective: 1100px;
}

.slide-frame-reference,
.slide-frame-reference:hover {
  --tilt-rotate-x: 0deg;
  --tilt-rotate-y: 0deg;
  --tilt-scale: 1;
  width: min(760px, 100%);
  overflow: hidden;
  padding: clamp(12px, 1.6vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(7, 11, 18, 0.28);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 48px color-mix(in srgb, var(--section-accent) 12%, transparent);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
  transform:
    perspective(900px)
    rotateX(var(--tilt-rotate-x))
    rotateY(var(--tilt-rotate-y))
    scale(var(--tilt-scale));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.slide-frame-reference.is-tilting,
.slide-frame-reference.is-tilting:hover {
  transition:
    transform 100ms linear,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.slide-frame-reference::after {
  display: none;
}

.slide-frame-reference img,
.slide-frame-reference:hover img {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  filter: none;
  transform: none;
}

#insight-09 .section-visual-reference {
  padding: 0;
}

#insight-09 .slide-frame-reference,
#insight-09 .slide-frame-reference:hover,
#insight-09 .slide-frame-reference.is-tilting {
  width: 114%;
  max-width: none;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

#insight-10 .slide-frame,
#insight-10 .slide-frame:hover {
  width: 100%;
  max-width: 100%;
  margin: 0;
  justify-self: stretch;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

#insight-11 {
  grid-template-columns: minmax(460px, 0.95fr) minmax(520px, 1.05fr);
  align-items: start;
}

#insight-11 .section-copy {
  max-width: 620px;
}

#insight-11 .section-visual {
  display: grid;
  place-items: center;
  min-width: 0;
}

#insight-11 .slide-frame,
#insight-11 .slide-frame:hover {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

#insight-11 .slide-frame::after {
  display: none;
}

#insight-11 .slide-frame img,
#insight-11 .slide-frame:hover img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(720px, 72svh);
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  filter: none;
  transform: none;
}

.asset-guide {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin-top: 24px;
}

#insight-12 {
  grid-template-columns: minmax(470px, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
}

#insight-12 .section-copy {
  max-width: 610px;
}

.prompt-guide {
  display: grid;
  gap: 13px;
  max-width: 610px;
  margin-top: 22px;
}

.prompt-guide-group {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.prompt-guide-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(154, 159, 255, 0.56);
  border-radius: 999px;
  color: #f7f7ff;
  background: rgba(142, 145, 255, 0.86);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.prompt-guide-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.prompt-guide-method {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 7px 9px;
  border: 1px solid rgba(154, 159, 255, 0.28);
  border-radius: 8px;
  background: rgba(8, 12, 28, 0.28);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.prompt-guide-method:hover {
  border-color: rgba(142, 145, 255, 0.52);
  background: rgba(142, 145, 255, 0.12);
  box-shadow: 0 0 18px rgba(142, 145, 255, 0.16);
  transform: translateY(-1px);
}

.prompt-guide-method strong {
  color: #aeb2ff;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.3;
}

.prompt-guide-method span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9.5px;
  line-height: 1.35;
}

.prompt-guide-lighting .prompt-guide-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prompt-guide-lighting .prompt-guide-method {
  grid-template-columns: 1fr;
  gap: 3px;
  align-content: start;
}

.prompt-guide-parameters {
  display: grid;
  gap: 7px;
}

.prompt-guide-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.prompt-guide-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.45;
}

#insight-12 .section-visual {
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: visible;
}

.prompt-visual {
  position: relative;
  width: min(100%, 610px);
  height: min(760px, 75svh);
  margin: 0;
  overflow: visible;
  isolation: isolate;
}

.prompt-character {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.prompt-bounce-cards {
  position: absolute;
  left: 50%;
  bottom: 4.5%;
  z-index: 4;
  width: min(100%, 570px);
  height: 170px;
  transform: translateX(-50%);
}

.prompt-bounce-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(132px, 13.5vw, 180px);
  aspect-ratio: 16 / 9;
  transform-origin: center;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 280ms ease;
  will-change: transform;
}

.prompt-bounce-card-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  background: #071125;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.44), 0 0 22px rgba(124, 136, 255, 0.18);
  animation: promptCardBounce 900ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(620ms + var(--card-delay, 0ms));
}

.prompt-bounce-card:nth-child(1) .prompt-bounce-card-inner { --card-delay: 0ms; }
.prompt-bounce-card:nth-child(2) .prompt-bounce-card-inner { --card-delay: 80ms; }
.prompt-bounce-card:nth-child(3) .prompt-bounce-card-inner { --card-delay: 160ms; }
.prompt-bounce-card:nth-child(4) .prompt-bounce-card-inner { --card-delay: 240ms; }

.prompt-bounce-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-bounce-card.is-active {
  z-index: 5;
  filter: brightness(1.08);
}

.prompt-bounce-card.is-active .prompt-bounce-card-inner {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5), 0 0 34px rgba(142, 145, 255, 0.4);
}

@keyframes promptCardBounce {
  0% { opacity: 0; transform: scale(0); }
  62% { opacity: 1; transform: scale(1.1); }
  82% { transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

.asset-guide-group {
  display: grid;
  gap: 11px;
}

.asset-guide-topline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asset-guide-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 7px 14px;
  border: 1px solid rgba(154, 159, 255, 0.55);
  border-radius: 999px;
  color: #f5f6ff;
  background: rgba(142, 145, 255, 0.86);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
}

.asset-guide-label-outline {
  min-width: 106px;
  color: #aeb2ff;
  background: transparent;
}

.asset-guide-intro {
  display: grid;
  gap: 3px;
}

.asset-guide-intro p,
.asset-guide-scene .asset-guide-topline strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 540;
}

.asset-vitality {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.asset-vitality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.asset-vitality-item {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 12, 28, 0.34);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.asset-vitality-item:hover {
  border-color: rgba(142, 145, 255, 0.56);
  background: rgba(142, 145, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(142, 145, 255, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(142, 145, 255, 0.2);
  transform: translateY(-2px);
}

.asset-vitality-item dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 760;
}

.asset-vitality-item dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  line-height: 1.46;
}

.asset-scene-methods {
  display: grid;
  gap: 7px;
}

.asset-scene-method {
  display: grid;
  grid-template-columns: minmax(150px, 0.82fr) minmax(0, 1.18fr);
  gap: 10px;
  align-items: center;
}

.asset-scene-method:first-child {
  grid-template-columns: max-content minmax(0, 1fr);
}

.asset-scene-method:first-child .asset-method-name {
  padding-inline: 12px;
  white-space: nowrap;
}

.asset-method-name {
  display: block;
  padding: 7px 10px;
  border: 1px solid rgba(154, 159, 255, 0.7);
  border-radius: 999px;
  color: #aeb2ff;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 680;
  text-align: center;
}

.asset-method-desc {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1.44;
}

#insight-10 .slide-frame::after {
  display: none;
}

#insight-10 .slide-frame img,
#insight-10 .slide-frame:hover img {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  filter: none;
  transform: none;
}

.model-chip {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 9px 11px;
  border: 1px solid rgba(187, 255, 94, 0.38);
  border-radius: 8px;
  color: #e9ffd0;
  background: rgba(187, 255, 94, 0.08);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.model-chip:hover {
  color: #fff;
  border-color: color-mix(in srgb, var(--section-accent) 70%, rgba(255, 255, 255, 0.35));
  background: color-mix(in srgb, var(--section-accent) 18%, rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 26px color-mix(in srgb, var(--section-accent) 22%, transparent);
  transform: translateY(-2px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.video-card {
  min-width: 0;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.video-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px 14px;
}

.video-index {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.video-title {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
}

.video-model {
  max-width: 48%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.36;
  text-align: right;
}

.demo-carousel-section {
  --section-accent: var(--coral);
  --section-accent-2: var(--cyan);
  position: relative;
  width: min(1320px, calc(100vw - clamp(48px, 10vw, 176px)));
  min-height: auto;
  margin: 0 auto;
  overflow: visible;
  padding: clamp(44px, 5vw, 78px) 0 clamp(56px, 7vw, 104px);
  background: transparent;
}

.demo-carousel-section::before {
  content: "";
  position: absolute;
  inset: 10vh 4vw;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(255, 110, 143, 0.11), transparent 28%),
    linear-gradient(315deg, rgba(66, 216, 255, 0.1), transparent 34%);
  transition: border-color 260ms ease, box-shadow 260ms ease, opacity 260ms ease;
}

.demo-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 100%;
  padding-right: 0;
}

.demo-head h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 74px);
  line-height: 1.02;
  font-weight: 880;
  color: #f5f5f7;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
  transition: filter 260ms ease, text-shadow 260ms ease;
}

.demo-head .lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-controls button,
.case-modal-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible,
.case-modal-close:hover,
.case-modal-close:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--section-accent) 70%, rgba(255, 255, 255, 0.24));
  background: color-mix(in srgb, var(--section-accent) 16%, rgba(255, 255, 255, 0.07));
  box-shadow: 0 0 24px color-mix(in srgb, var(--section-accent) 20%, transparent);
  transform: translateY(-1px);
}

.case-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(520px, 58vw, 900px);
  gap: clamp(18px, 2.2vw, 30px);
  margin-top: clamp(22px, 3.2vh, 42px);
  padding: 12px 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
  will-change: scroll-position;
}

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

.case-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  scroll-snap-align: start;
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(14px, 1.2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: inherit;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(9, 12, 18, 0.42);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  filter: grayscale(1) brightness(0.62) saturate(0.48);
  opacity: 0.78;
  transition:
    opacity 260ms ease,
    transform 220ms ease,
    filter 260ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.26), transparent 58%),
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), color-mix(in srgb, var(--section-accent) 24%, transparent), transparent 74%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.case-card:hover,
.case-card:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--section-accent) 60%, rgba(255, 255, 255, 0.2));
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    color-mix(in srgb, var(--section-accent) 9%, rgba(9, 12, 18, 0.54));
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.4),
    0 0 44px color-mix(in srgb, var(--section-accent) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  filter: grayscale(0) brightness(1.08) saturate(1.16);
  opacity: 1;
  transform: translateY(-5px);
}

.case-card:hover::before,
.case-card:focus-visible::before {
  opacity: 1;
}

.case-card-media {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.case-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #02040b;
  transition: transform 420ms ease, filter 420ms ease;
}

.case-card:hover .case-card-media img {
  transform: scale(1.025);
  filter: saturate(1.12) brightness(1.08);
}

.case-card:hover .case-card-media,
.case-card:focus-visible .case-card-media {
  border-color: color-mix(in srgb, var(--section-accent) 64%, rgba(255, 255, 255, 0.22));
  background: color-mix(in srgb, var(--section-accent) 10%, rgba(255, 255, 255, 0.045));
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.44),
    0 0 38px color-mix(in srgb, var(--section-accent) 20%, transparent);
}

.case-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.case-card:hover .case-play,
.case-card:focus-visible .case-play {
  border-color: color-mix(in srgb, var(--section-accent-2) 72%, rgba(255, 255, 255, 0.28));
  color: #fff;
  background: color-mix(in srgb, var(--section-accent) 22%, rgba(0, 0, 0, 0.54));
}

.case-card-info {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 9px;
}

.case-card-info strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.15;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.case-card:hover .case-card-info strong,
.case-card:focus-visible .case-card-info strong {
  color: #fff;
  text-shadow: 0 0 20px color-mix(in srgb, var(--section-accent) 26%, transparent);
}

.case-card-info span:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.4;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.case-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(18px);
}

.case-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(20px, 3vw, 42px);
  width: min(1440px, 100%);
  max-height: calc(100svh - 32px);
  overflow: auto;
  padding: clamp(18px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 82%, rgba(141, 124, 255, 0.22), transparent 34%),
    rgba(4, 6, 15, 0.94);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.74);
}

.case-modal-close {
  position: sticky;
  top: 0;
  z-index: 4;
  justify-self: end;
  grid-column: 1 / -1;
  margin-left: auto;
  font-size: 26px;
  line-height: 1;
}

.case-modal-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 64px);
  line-height: 1;
  color: #f5f5f7;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
}

.case-modal-copy > p:not(.page-kind) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.72;
}

.case-modal-media {
  display: grid;
  gap: 18px;
  align-content: start;
}

.modal-image-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.section-image-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.modal-image-zoom:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--section-accent) 72%, #fff);
  outline-offset: 4px;
}

.section-image-zoom:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--section-accent) 72%, #fff);
  outline-offset: 4px;
}

.modal-slide-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #02040b;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.modal-slide-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.modal-slide-frame-transparent,
.modal-slide-frame-transparent:hover {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.modal-slide-frame-transparent img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72svh;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.image-lightbox[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(20px);
  cursor: zoom-out;
}

.image-lightbox-close {
  position: fixed;
  top: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.image-lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1600px);
  max-height: 92svh;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.72);
}

.detail-video-block {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.46);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.modal-slide-frame:hover,
.detail-video-block:hover {
  border-color: color-mix(in srgb, var(--section-accent) 58%, rgba(255, 255, 255, 0.22));
  box-shadow: 0 0 34px color-mix(in srgb, var(--section-accent) 18%, transparent);
}

.detail-video-block:hover {
  transform: translateY(-2px);
}

.detail-video-block .video-meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-video {
  width: 100%;
  height: auto;
  max-height: 72svh;
  object-fit: contain;
  background: #000;
}

.detail-video[data-orientation="portrait"] {
  width: auto;
  max-width: 100%;
  height: min(72svh, 760px);
  margin: 0 auto;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.summary-item {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.summary-item:hover {
  border-color: color-mix(in srgb, var(--section-accent) 64%, rgba(255, 255, 255, 0.22));
  background:
    radial-gradient(circle at 22% 20%, color-mix(in srgb, var(--section-accent) 20%, transparent), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.26),
    0 0 32px color-mix(in srgb, var(--section-accent) 18%, transparent);
  transform: translateY(-3px);
}

.summary-item strong {
  display: block;
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
  color: #f5f5f7;
}

.summary-item span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.summary-switcher-section {
  width: min(1460px, calc(100vw - clamp(48px, 8vw, 144px)));
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

.summary-switcher-copy,
.summary-switcher-visual {
  min-width: 0;
}

.summary-title-stage,
.summary-visual-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.summary-title-stage {
  min-height: clamp(150px, 14vw, 220px);
  margin-top: 12px;
}

.summary-title-image,
.summary-visual-image {
  grid-area: 1 / 1;
  max-width: 100%;
  height: auto;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 460ms ease,
    filter 520ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.summary-title-image.is-active,
.summary-visual-image.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.summary-title-image {
  width: min(100%, 620px);
}

.summary-switcher-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(18px, 3vw, 38px);
}

.summary-switcher-tab {
  min-width: 0;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 18, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  text-align: center;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.summary-switcher-tab:hover,
.summary-switcher-tab:focus-visible,
.summary-switcher-tab.is-active {
  outline: none;
  color: #fff;
  border-color: color-mix(in srgb, var(--section-accent) 66%, rgba(255, 255, 255, 0.28));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent) 20%, transparent), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--section-accent) 18%, transparent),
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 26px color-mix(in srgb, var(--section-accent) 18%, transparent);
  transform: translateY(-2px);
}

.summary-switcher-tab strong,
.summary-switcher-tab span {
  display: block;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.25;
}

.summary-switcher-tab strong::after {
  content: "";
}

.end-section {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(420px, 58svh, 720px);
  place-items: center;
  padding: clamp(120px, 18vh, 220px) 20px clamp(150px, 22vh, 260px);
}

.end-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(620px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(187, 255, 94, 0.14), transparent 52%),
    radial-gradient(circle, rgba(66, 216, 255, 0.12), transparent 68%);
  filter: blur(34px);
  opacity: 0.82;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.end-button {
  position: relative;
  display: inline-grid;
  min-width: clamp(142px, 15vw, 210px);
  min-height: clamp(54px, 5.8vw, 76px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(187, 255, 94, 0.48);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(187, 255, 94, 0.22), rgba(66, 216, 255, 0.16)),
    rgba(8, 12, 18, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 58px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(187, 255, 94, 0.24),
    0 0 64px rgba(66, 216, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  cursor: pointer;
  font-family:
    "SF Mono", "Roboto Mono", "Cascadia Mono", ui-monospace, Menlo, Consolas,
    monospace;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 800;
  letter-spacing: 0.16em;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
}

.end-button::before {
  content: "";
  position: absolute;
  inset: -80% -34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.72;
  transform: translateX(-70%) rotate(18deg);
  animation: endButtonSheen 3.4s ease-in-out infinite;
  pointer-events: none;
}

.end-button:hover,
.end-button:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(187, 255, 94, 0.3), rgba(66, 216, 255, 0.22)),
    rgba(8, 12, 18, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 20px 64px rgba(0, 0, 0, 0.38),
    0 0 44px rgba(187, 255, 94, 0.34),
    0 0 84px rgba(66, 216, 255, 0.22);
  filter: brightness(1.06);
  transform: translateY(-3px) scale(1.02);
}

.final-page {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background: #000;
  pointer-events: none;
  transition: opacity 760ms ease, visibility 760ms ease;
}

.final-page.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.final-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1200ms ease 260ms;
}

.final-page.is-active .final-stars {
  opacity: 1;
}

.final-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(26px, 4.2vh, 46px);
  padding: 24px;
  text-align: center;
}

.final-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: min(1100px, calc(100vw - 36px));
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 11vw, 168px);
  font-weight: 880;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.24),
    0 0 68px rgba(66, 216, 255, 0.22);
}

.final-title-char {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(54px) scale(0.94);
  will-change: transform, opacity, filter;
}

.final-page.is-active .final-title-char {
  animation: finalTitleIn 980ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(520ms + var(--char-i, 0) * 76ms);
}

.final-title-space {
  display: inline-block;
  width: 0.28em;
}

.final-home-button {
  min-width: 112px;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
  cursor: pointer;
  font-family:
    "SF Mono", "Roboto Mono", "Cascadia Mono", ui-monospace, Menlo, Consolas,
    monospace;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}

.final-page.is-active .final-home-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1450ms, 0ms, 0ms, 0ms, 0ms, 0ms;
}

.final-home-button:hover,
.final-home-button:focus-visible {
  outline: none;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 54px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

body.final-active {
  overflow: hidden;
}

@keyframes endButtonSheen {
  0%,
  42% {
    transform: translateX(-80%) rotate(18deg);
  }

  78%,
  100% {
    transform: translateX(80%) rotate(18deg);
  }
}

@keyframes finalTitleIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(54px) scale(0.94);
  }

  64% {
    opacity: 1;
    filter: blur(2px);
    transform: translateY(-4px) scale(1.01);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.summary-visual-stage {
  --tilt-rotate-x: 0deg;
  --tilt-rotate-y: 0deg;
  --tilt-scale: 1;
  min-height: clamp(420px, 44vw, 700px);
  perspective: 1100px;
  transform:
    perspective(900px)
    rotateX(var(--tilt-rotate-x))
    rotateY(var(--tilt-rotate-y))
    scale(var(--tilt-scale));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.summary-visual-stage.is-tilting {
  transition: transform 100ms linear;
}

.summary-visual-image {
  width: min(100%, 760px);
  max-height: min(720px, 72svh);
  object-fit: contain;
  filter: blur(8px) drop-shadow(0 26px 42px rgba(0, 0, 0, 0.28));
}

.summary-visual-image.is-active {
  filter: blur(0) drop-shadow(0 26px 42px rgba(0, 0, 0, 0.28));
}

.summary-visual-zoom {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.summary-visual-zoom:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--section-accent) 72%, #fff);
  outline-offset: 4px;
}

.summary-visual-zoom img {
  display: block;
  width: 100%;
  height: auto;
  max-height: inherit;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blur-text {
  text-wrap: inherit;
}

.split-title {
  overflow: visible;
  text-wrap: balance;
}

.split-title-word,
.split-title-space {
  display: inline-block;
}

.split-title-manual-line,
.blur-text-manual-line {
  display: block;
  max-width: 100%;
  white-space: normal;
}

.split-title-word {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  will-change: transform, opacity;
}

.is-visible .split-title-word,
.hero-section.is-visible .split-title-word,
.demo-carousel-section.is-visible .split-title-word,
.case-modal[aria-hidden="false"] .split-title-word {
  animation: splitTitleIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--line-i, 0) * 100ms + var(--title-delay, 0ms));
}

.blur-text-piece {
  display: inline-block;
  min-width: 0.01em;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 34px, 0);
  will-change: transform, filter, opacity;
}

.section-copy h2 .blur-text-piece,
.demo-head h2 .blur-text-piece,
.hero-title-line:last-child .blur-text-piece,
.case-modal-copy h2 .blur-text-piece,
.summary-item strong .blur-text-piece {
  color: inherit;
  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;
}

.lead.blur-text .blur-text-piece,
.hero-subtitle.blur-text .blur-text-piece,
.demo-head .lead.blur-text .blur-text-piece {
  transform: translate3d(0, 22px, 0);
}

.is-visible .blur-text-piece,
.case-modal[aria-hidden="false"] .blur-text-piece {
  animation: blurTextIn 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 46ms + var(--text-delay, 0ms));
}

.lead.blur-text .blur-text-piece,
.hero-subtitle.blur-text .blur-text-piece {
  animation-delay: calc(var(--i, 0) * 28ms + 120ms);
}

@keyframes splitTitleIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes blurTextIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 34px, 0);
  }

  58% {
    opacity: 0.62;
    filter: blur(5px);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.story-section.is-visible .reveal,
.hero-section.is-visible .reveal,
.demo-carousel-section.is-visible .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    width: calc(100vw - 20px);
    height: 58px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 10px 0 14px;
  }

  .top-nav {
    display: none;
  }

  .header-action {
    min-height: 32px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .section-rail {
    display: none;
  }

  .hero-section {
    min-height: 100svh;
    padding: 92px 20px 72px;
  }

  .hero-section::before {
    inset: 82px 12px 34px;
  }

  .hero-layout {
    min-height: calc(100svh - 164px);
  }

  .hero-content {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(34px, 8.6vw, 58px);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-laptop-shell {
    width: min(860px, 98vw);
    min-height: clamp(330px, 62vw, 520px);
  }

  .hero-laptop {
    min-height: clamp(330px, 62vw, 520px);
  }

  .laptop-screen {
    bottom: clamp(80px, 15vw, 114px);
    width: min(780px, 94%);
    transform: translateX(-50%) rotateX(-34deg) scaleY(0.74);
  }

  .hero-laptop.is-open .laptop-screen {
    bottom: clamp(92px, 17vw, 128px);
    transform: translateX(-50%) rotateX(-5deg) scaleY(1);
  }

  .laptop-hinge {
    bottom: clamp(76px, 14vw, 108px);
  }

  .laptop-base {
    height: clamp(92px, 17vw, 132px);
  }

  .story-section {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 74px 0;
  }

  .story-section:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .story-section:nth-of-type(even) .section-copy,
  .story-section:nth-of-type(even) .section-visual {
    order: initial;
  }

  #future-24 {
    grid-template-columns: 1fr;
  }

  #future-24 .section-copy h2 {
    font-size: clamp(34px, 10vw, 58px);
  }

  #future-24 .split-title-manual-line:nth-child(2) {
    white-space: normal;
  }

  #future-24 .content-lines {
    grid-template-columns: 1fr;
  }

  .story-section-centered,
  .story-section-centered:nth-of-type(even) {
    width: min(100% - 32px, 760px);
    min-height: auto;
    padding: 96px 0 84px;
  }

  .story-section-centered .section-copy h2 {
    font-size: clamp(36px, 8vw, 58px);
  }

  .centered-feature-modules {
    width: min(560px, 100%);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .centered-feature-module {
    contain: layout paint;
  }

  .section-copy h2 {
    font-size: clamp(34px, 10vw, 58px);
  }

  .section-copy .lead {
    font-size: 16px;
  }

  .content-lines li {
    font-size: 12px;
  }

  .content-lines {
    grid-template-columns: 1fr;
  }

  #insight-13 .content-lines {
    grid-template-columns: 1fr;
  }

  #insight-11 {
    grid-template-columns: 1fr;
  }

  #insight-12 {
    grid-template-columns: 1fr;
  }

  #insight-12 .section-copy {
    max-width: none;
  }

  #insight-11 .section-copy {
    max-width: none;
  }

  .asset-guide-topline,
  .asset-vitality {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .asset-guide-topline {
    flex-wrap: wrap;
  }

  .asset-vitality-grid {
    grid-template-columns: 1fr;
  }

  .asset-scene-method {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .asset-scene-method:first-child {
    grid-template-columns: 1fr;
  }

  .asset-scene-method:first-child .asset-method-name {
    white-space: normal;
  }

  .asset-method-name {
    width: fit-content;
    text-align: left;
  }

  .prompt-guide-group {
    grid-template-columns: 1fr;
  }

  .prompt-guide-label {
    width: fit-content;
  }

  .prompt-guide-methods,
  .prompt-guide-lighting .prompt-guide-methods {
    grid-template-columns: 1fr;
  }

  .prompt-guide-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .prompt-visual {
    width: min(100%, 560px);
    height: min(680px, 78svh);
  }

  .prompt-bounce-cards {
    width: min(100%, 500px);
    overflow: hidden;
    transform: translateX(-50%) scale(0.78);
  }

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

  .summary-switcher-section {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .summary-title-stage {
    min-height: clamp(120px, 34vw, 190px);
  }

  .summary-switcher-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .summary-switcher-tab {
    min-height: 44px;
    padding: 10px 8px;
  }

  .summary-switcher-tab strong {
    font-size: 13px;
  }

  .summary-visual-stage {
    min-height: clamp(320px, 82vw, 560px);
  }

  .demo-carousel-section {
    width: min(100% - 40px, 760px);
    min-height: auto;
    padding: 74px 0;
    overflow: hidden;
  }

  .demo-head {
    display: grid;
    padding-right: 0;
  }

  .case-track {
    grid-auto-columns: minmax(330px, 86vw);
    width: calc(100vw - 40px);
    max-width: 100%;
    padding-right: 0;
    contain: layout paint;
  }

  #insight-09 .slide-frame-reference,
  #insight-09 .slide-frame-reference:hover,
  #insight-09 .slide-frame-reference.is-tilting {
    width: 100%;
  }

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

  .case-modal-close {
    position: relative;
  }

}

@media (max-width: 560px) {
  .entry-badge-wrap {
    width: clamp(132px, 42vw, 168px);
  }

  .entry-badge-face {
    border-radius: 12px;
  }

  .entry-loader-status {
    bottom: 34px;
    font-size: 12px;
  }

  .brand {
    font-size: 11px;
  }

  .brand-mark {
    width: 16px;
    height: 16px;
  }

  .top-nav {
    gap: 10px;
    font-size: 10px;
  }

  .header-action {
    padding-inline: 11px;
  }

  .hero-meta span {
    font-size: 10px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .scroll-cue {
    display: none;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-cta,
  .secondary-cta {
    min-height: 40px;
    padding-inline: 17px;
    font-size: 13px;
  }

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

  .video-meta {
    display: block;
  }

  .video-model {
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  .case-track {
    grid-auto-columns: minmax(280px, calc(100vw - 40px));
  }

  .carousel-controls button,
  .case-modal-close {
    width: 42px;
    height: 42px;
  }

  .case-modal {
    padding: 8px;
  }

  .case-modal-panel {
    max-height: calc(100svh - 16px);
    padding: 14px;
  }
}

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

  .field-canvas {
    display: none;
  }

  .entry-loader:not(.is-dragging):not(.is-ready) .entry-badge,
  .entry-loader-status {
    animation: none !important;
  }

  .entry-loader-reveal {
    filter: none;
  }

  .blur-text-piece,
  .content-lines li {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
}

.hero-laptop-shell {
  width: min(1120px, 62vw);
  min-height: auto;
  margin: 0 0 0 auto;
  padding-top: clamp(10px, 2vh, 34px);
  place-items: center;
}

.hero-laptop-shell::before {
  left: 50%;
  bottom: 12%;
  width: 58%;
  height: 13%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.46), rgba(18, 26, 34, 0.22) 42%, transparent 72%);
  filter: blur(26px);
}

.hero-laptop {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1260 / 820;
  transform: translate3d(0, 0, 0) scale(1);
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.42));
  transition:
    transform 1680ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 1680ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-laptop.is-open {
  filter:
    drop-shadow(0 34px 60px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 36px rgba(66, 216, 255, 0.1));
  transform: translate3d(-1.2%, -0.8%, 0) scale(1.022);
}

.laptop-reference {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  pointer-events: none;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 1280ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1680ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 1680ms ease;
  will-change: opacity, transform, filter;
}

.laptop-reference-half {
  opacity: 0.98;
  filter: saturate(1.04) contrast(1.06) brightness(1.02);
}

.laptop-reference-open {
  opacity: 0;
  transform: translate3d(0.4%, 1.6%, 0) scale(0.972);
  filter: saturate(1.02) contrast(1.07) brightness(0.98);
}

.hero-laptop.is-open .laptop-reference-half {
  opacity: 0;
  transform: translate3d(-0.4%, -1.2%, 0) scale(1.018);
  filter: saturate(1) contrast(1.04) brightness(0.82) blur(0.45px);
}

.hero-laptop.is-open .laptop-reference-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
}

.laptop-hinge,
.laptop-base,
.keyboard-grid,
.trackpad,
.laptop-screen::before,
.laptop-screen::after,
.laptop-bezel::before,
.laptop-bezel::after {
  display: none;
}

.laptop-screen {
  left: 49.3%;
  top: 40.4%;
  bottom: auto;
  width: 71.4%;
  height: 64.2%;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 1.6% / 2.1%;
  background: transparent;
  box-shadow: none;
  opacity: 0.08;
  transform: translate3d(-50%, -50%, 0) perspective(1400px) rotateX(-16deg) scale3d(0.94, 0.58, 1);
  transform-origin: center 92%;
  transition:
    left 1680ms cubic-bezier(0.19, 1, 0.22, 1),
    top 1680ms cubic-bezier(0.19, 1, 0.22, 1),
    width 1680ms cubic-bezier(0.19, 1, 0.22, 1),
    height 1680ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 980ms ease,
    transform 1680ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-laptop.is-open .laptop-screen {
  left: 49.8%;
  top: 45.5%;
  width: 71.6%;
  height: 72.2%;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) perspective(1400px) rotateX(0deg) scale3d(1, 1, 1);
}

.laptop-bezel {
  inset: 0;
  border-radius: inherit;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.hero-video {
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
  opacity: 0.08;
  filter: grayscale(1) brightness(0.32) contrast(1.12);
  transition: opacity 1080ms ease, filter 1080ms ease;
}

.hero-video:focus,
.hero-video:focus-visible {
  outline: none;
}

.hero-laptop.is-open .hero-video {
  opacity: 1;
}

.laptop-open-button {
  bottom: 50%;
  min-height: 38px;
  padding: 0 16px;
  color: rgba(245, 245, 247, 0.92);
  background: rgba(18, 20, 24, 0.54);
  transform: translate(-50%, 50%);
}

@media (max-width: 1100px) {
  .hero-content {
    max-width: min(520px, 38vw);
  }

  .hero-content h1 {
    font-size: clamp(34px, 4.6vw, 54px);
  }

  .hero-laptop-shell {
    width: min(900px, 68vw);
  }
}

@media (max-width: 760px) {
  .hero-layout {
    display: flex;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 2;
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(32px, 10.4vw, 50px);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-laptop-shell {
    order: 1;
    width: min(100%, 720px);
    margin: 22px auto 0;
    padding-top: 0;
  }

  .hero-laptop.is-open {
    transform: translate3d(0, -1%, 0) scale(1.02);
  }

  .laptop-open-button {
    min-height: 34px;
    padding-inline: 13px;
    font-size: 12px;
  }
}

.hero-video-shell {
  position: absolute;
  right: 0;
  top: 35%;
  z-index: 3;
  width: min(850px, 54vw);
  margin: 0;
  transform: translateY(-50%);
}

.hero-playback-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: clamp(20px, 1.7vw, 28px);
  background: #010101;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.hero-playback-card::before,
.hero-playback-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-playback-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 14% 78%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 18% 82%, rgba(0, 0, 0, 0.42)),
    rgba(0, 0, 0, 0.18);
  opacity: 0.96;
  transition: opacity 420ms ease;
}

.hero-playback-card::after {
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 0 56px rgba(0, 0, 0, 0.76);
}

.hero-playback-card .hero-video {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  background: #000;
  opacity: 0.82;
  filter: grayscale(1) brightness(0.46) contrast(1.12);
  pointer-events: none;
  transition: opacity 520ms ease, filter 520ms ease;
}

.hero-playback-card.is-playing::before {
  opacity: 0;
}

.hero-playback-card.is-playing .hero-video {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

.hero-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  width: clamp(70px, 6.2vw, 94px);
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 62% 68%, rgba(255, 182, 207, 0.9), rgba(255, 143, 195, 0.46) 38%, transparent 66%),
    radial-gradient(circle at 32% 24%, rgba(178, 143, 255, 0.95), rgba(118, 96, 255, 0.62) 54%, rgba(80, 64, 210, 0.9) 100%);
  box-shadow:
    0 0 24px rgba(177, 139, 255, 0.34),
    0 0 52px rgba(255, 151, 199, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    inset 0 0 24px rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 260ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.hero-play-button::before,
.hero-play-button::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-play-button::before {
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.36),
    inset 0 0 18px rgba(255, 255, 255, 0.22);
}

.hero-play-button::after {
  inset: -14%;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.8) 0 4px, transparent 5px),
    radial-gradient(circle at 22% 78%, rgba(255, 255, 255, 0.56) 0 4px, transparent 5px);
  opacity: 0.72;
  filter: blur(0.2px);
}

.hero-play-button-icon {
  position: relative;
  z-index: 2;
  width: 0;
  height: 0;
  margin-left: 7%;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.hero-play-button:hover,
.hero-play-button:focus-visible {
  outline: none;
  filter: brightness(1.08) saturate(1.12);
  box-shadow:
    0 0 34px rgba(177, 139, 255, 0.58),
    0 0 76px rgba(255, 151, 199, 0.36),
    0 0 112px rgba(66, 216, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    inset 0 0 26px rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.07);
}

.hero-play-button[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

@media (max-width: 1100px) {
  .hero-video-shell {
    width: min(760px, 56vw);
  }
}

@media (max-width: 760px) {
  .hero-layout {
    display: flex;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
  }

  .hero-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    order: 2;
    max-width: none;
  }

  .hero-video-shell {
    position: relative;
    right: auto;
    top: auto;
    order: 1;
    width: min(100%, 720px);
    margin: clamp(10px, 4vh, 28px) auto 0;
    transform: none;
  }

  .hero-playback-card {
    border-radius: 18px;
  }

  .hero-play-button {
    width: 68px;
  }

  .hero-play-button-icon {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }
}
