:root {
  color-scheme: dark;
  --bg: #060608;
  --bg-soft: #0b0b0f;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f7f5fb;
  --muted: #aaa7b3;
  --muted-2: #716f78;
  --violet: #9378ff;
  --violet-bright: #b29dff;
  --blue: #61d1ff;
  --warm: #ffad76;
  --page: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 40% 0%, rgba(94, 70, 160, 0.1), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.announcement-open {
  overflow: hidden;
}

::selection {
  background: rgba(151, 126, 255, 0.38);
  color: #fff;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg,
canvas {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #fff;
  color: #111;
  transition: transform 180ms ease;
}

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

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

.section-pad {
  position: relative;
  padding: 150px 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133, 104, 255, 0.1), rgba(82, 140, 255, 0.035) 40%, transparent 72%);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 82px;
  padding: 0 36px;
  border-bottom: 1px solid transparent;
  transition: height 300ms var(--ease), background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.scrolled {
  height: 68px;
  border-color: var(--line-soft);
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(24px) saturate(1.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand img {
  filter: drop-shadow(0 0 12px rgba(143, 114, 255, 0.3));
}

.brand em {
  color: #a996ff;
  font-style: normal;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #c8c5ce;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--violet), var(--blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}

.header-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.header-download:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.header-download svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 240ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 100px 28px 40px;
  visibility: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(130, 97, 255, 0.24), transparent 32%),
    rgba(6, 6, 8, 0.97);
  opacity: 0;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.mobile-menu a {
  font-size: clamp(32px, 10vw, 54px);
  font-weight: 700;
  letter-spacing: -0.055em;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 420ms var(--ease), opacity 300ms ease;
}

.mobile-menu p {
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
}

.menu-open .mobile-menu a {
  transform: translateY(0);
  opacity: 1;
}

.menu-open .mobile-menu a:nth-child(2) { transition-delay: 40ms; }
.menu-open .mobile-menu a:nth-child(3) { transition-delay: 80ms; }
.menu-open .mobile-menu a:nth-child(4) { transition-delay: 120ms; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 6, 8, 0.97) 0%, rgba(6, 6, 8, 0.83) 33%, rgba(6, 6, 8, 0.2) 67%, rgba(6, 6, 8, 0.58) 100%),
    linear-gradient(0deg, #060608 0%, transparent 28%, rgba(6, 6, 8, 0.25) 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 78%);
}

.hero-aurora {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: aurora-drift 12s ease-in-out infinite alternate;
}

.hero-aurora-one {
  top: 10%;
  right: 8%;
  width: 42vw;
  height: 42vw;
  background: #5536bd;
}

.hero-aurora-two {
  right: 26%;
  bottom: -28%;
  width: 38vw;
  height: 38vw;
  background: #166b99;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(400px, 0.8fr) minmax(620px, 1.2fr);
  align-items: center;
  gap: 40px;
  min-height: 100svh;
  padding: 138px 0 160px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #9a97a2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9b80ff;
  box-shadow: 0 0 14px #9b80ff;
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(155, 128, 255, 0.5);
  border-radius: 50%;
  content: "";
  animation: pulse-ring 2.3s ease-out infinite;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(74px, 7.2vw, 122px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero-gradient {
  position: relative;
  display: inline-block;
  padding-right: 0.09em;
  background: linear-gradient(106deg, #fff 2%, #c6b8ff 42%, #75d5ff 78%, #fff 110%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 7s linear infinite;
}

.hero-gradient::after {
  position: absolute;
  right: -4%;
  bottom: -4%;
  left: 6%;
  height: 35%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(115, 209, 255, 0.18), transparent);
  filter: blur(20px);
}

.hero-lead {
  max-width: 540px;
  margin: 36px 0 0;
  color: #b9b6c0;
  font-size: 17px;
  line-height: 1.9;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-width: 226px;
  padding: 16px 17px 16px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #f4f2f8;
  color: #0b0b0e;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 16px 50px rgba(66, 40, 145, 0.25);
}

.primary-button::before {
  position: absolute;
  top: -50%;
  left: -40%;
  width: 30%;
  height: 200%;
  content: "";
  background: rgba(255, 255, 255, 0.9);
  filter: blur(10px);
  transform: rotate(20deg);
  transition: left 700ms var(--ease);
}

.primary-button:hover::before {
  left: 120%;
}

.primary-button > * {
  position: relative;
  z-index: 1;
}

.button-icon {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #0c0c10;
  color: #fff;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #c4c1ca;
  font-size: 13px;
  cursor: pointer;
  transition: color 200ms ease;
}

.text-button span {
  transition: transform 300ms var(--ease);
}

.text-button:hover {
  color: #fff;
}

.text-button:hover span {
  transform: translateY(4px);
}

.availability {
  margin: 18px 0 0;
  color: #65636c;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-studio {
  position: relative;
  width: min(790px, 56vw);
  perspective: 1200px;
  transform: translateX(4vw);
}

.hero-studio.reveal-item {
  transform: translateX(4vw) translateY(30px);
}

.hero-studio.reveal-item.is-visible {
  transform: translateX(4vw) translateY(0);
}

.studio-halo {
  position: absolute;
  top: 5%;
  right: 4%;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 97, 255, 0.28), rgba(76, 170, 255, 0.07) 40%, transparent 68%);
  filter: blur(28px);
  transform: translateZ(-20px);
}

.studio-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 8, 13, 0.76);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 180ms ease-out;
}

.studio-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
  color: #73707c;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.render-status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  color: #908b9b;
}

.render-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8c71ff;
  box-shadow: 0 0 10px #8c71ff;
}

.studio-body {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: 1fr 78px;
  height: min(560px, 51vw);
  max-height: 560px;
  min-height: 450px;
}

.studio-tools {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 14px 0;
  border-right: 1px solid var(--line-soft);
}

.studio-tools span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  color: #6d6974;
  font-size: 11px;
}

.studio-tools .tool-active {
  background: rgba(142, 111, 255, 0.18);
  color: #b7a7ff;
  box-shadow: inset 0 0 0 1px rgba(158, 130, 255, 0.14);
}

.spatial-canvas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 40%, rgba(87, 61, 154, 0.17), transparent 37%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.connection-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(167, 143, 255, 0.28);
  stroke-width: 1;
  stroke-dasharray: 3 6;
  animation: dash-flow 18s linear infinite;
}

.shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: #11121a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  transform: translate3d(0, 0, calc(var(--depth, 1) * 4px));
}

.shot span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: rgba(255, 255, 255, 0.65);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.shot-one { top: 10%; left: 8%; width: 30%; height: 29%; }
.shot-two { top: 17%; left: 47%; width: 25%; height: 36%; }
.shot-three { top: 8%; right: -4%; width: 25%; height: 27%; }
.shot-four { right: 4%; bottom: 8%; width: 30%; height: 31%; }

.scene-ocean {
  background: linear-gradient(#7a8ea3 0%, #d6af8d 42%, #202b39 43%, #111621 100%);
}

.scene-sun {
  position: absolute;
  top: 26%;
  left: 60%;
  width: 14%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffdac0;
  box-shadow: 0 0 26px #ffb883;
}

.scene-land {
  position: absolute;
  right: -10%;
  bottom: 20%;
  width: 78%;
  height: 45%;
  border-radius: 80% 0 0;
  background: #121923;
  transform: skewX(-10deg);
  box-shadow: -30px -5px 40px rgba(12, 19, 28, 0.6);
}

.scene-face {
  background: linear-gradient(120deg, #16151d 0 35%, #705248 54%, #191820 75%);
}

.face-light {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 52% 40%, rgba(255, 196, 148, 0.68), transparent 19%);
}

.face-profile {
  position: absolute;
  top: 17%;
  left: 37%;
  width: 38%;
  height: 68%;
  border-radius: 52% 45% 48% 40%;
  background: linear-gradient(100deg, #1a1517, #9e6d59 52%, #241a1c 54%);
  transform: rotate(-7deg);
  filter: blur(0.2px);
}

.scene-city {
  background: linear-gradient(180deg, #09111d, #2f1b47 55%, #080a11);
}

.city-light {
  position: absolute;
  inset: 15% 10%;
  background: repeating-linear-gradient(90deg, transparent 0 8%, rgba(76, 187, 255, 0.75) 9% 10%, transparent 11% 15%);
  filter: blur(2px);
  transform: perspective(80px) rotateX(24deg);
}

.city-line {
  position: absolute;
  inset: auto -20% 25% -20%;
  height: 2px;
  background: #ff70ca;
  box-shadow: 0 0 12px #ff70ca, 140px -20px 0 #5fd9ff, 270px 10px 0 #7f77ff;
  transform: rotate(-12deg);
}

.scene-space {
  background: radial-gradient(circle at 70% 12%, rgba(85, 108, 173, 0.55), transparent 28%), linear-gradient(145deg, #05060a, #11182c);
}

.planet {
  position: absolute;
  right: -7%;
  bottom: -38%;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #b6c2d1, #283849 34%, #080a10 70%);
  box-shadow: -18px -12px 50px rgba(123, 192, 255, 0.16);
}

.orbit {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 92%;
  height: 60%;
  border-top: 1px solid rgba(137, 193, 255, 0.55);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.script-node {
  position: absolute;
  bottom: 12%;
  left: 12%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  width: 29%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(17, 16, 25, 0.88);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.script-node i {
  grid-row: span 2;
  align-self: center;
  padding: 6px;
  border-radius: 5px;
  background: rgba(151, 121, 255, 0.17);
  color: #b4a4ff;
  font-size: 7px;
  font-style: normal;
}

.script-node b { font-size: 8px; font-weight: 600; }
.script-node span { color: #706d77; font-size: 6px; }

.agent-node {
  position: absolute;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(169, 144, 255, 0.35);
  border-radius: 50%;
  background: rgba(21, 18, 35, 0.92);
  color: #a999e6;
  font-size: 6px;
  box-shadow: 0 0 22px rgba(130, 98, 255, 0.18);
}

.agent-node::after {
  position: absolute;
  inset: -5px;
  border: 1px dashed rgba(169, 144, 255, 0.2);
  border-radius: 50%;
  content: "";
  animation: spin 12s linear infinite;
}

.agent-node-one { top: 48%; left: 39%; }
.agent-node-two { top: 65%; right: 34%; }
.agent-node-three { top: 41%; right: 10%; }

.studio-timeline {
  padding: 13px 16px;
  border-top: 1px solid var(--line-soft);
  background: rgba(7, 7, 10, 0.7);
}

.timeline-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  color: #4e4c54;
  font-size: 6px;
}

.timeline-meta b {
  color: #77737f;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.timeline-track {
  position: relative;
  display: flex;
  gap: 3px;
  height: 24px;
}

.timeline-track > i {
  position: relative;
  flex: 0 0 var(--w);
  overflow: hidden;
  border-radius: 3px;
  background: color-mix(in srgb, var(--c) 25%, transparent);
}

.timeline-track > i::after {
  position: absolute;
  inset: 5px 4px;
  content: "";
  opacity: 0.35;
  background: repeating-linear-gradient(90deg, var(--c) 0 3px, transparent 3px 6px);
}

.playhead {
  position: absolute;
  top: -5px;
  bottom: -4px;
  left: 0;
  width: 1px;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: playhead 8s linear infinite;
}

.playhead::before {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 7px;
  height: 5px;
  border-radius: 2px;
  content: "";
  background: #fff;
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(12, 12, 17, 0.72);
  color: #a9a6b1;
  font-size: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  animation: float 5s ease-in-out infinite;
}

.floating-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #61e8b7;
  box-shadow: 0 0 10px #61e8b7;
}

.floating-chip b {
  color: #d9d3ff;
  font-size: 13px;
}

.chip-one { top: 11%; left: -4%; }
.chip-two { right: -3%; bottom: 19%; animation-delay: -2s; }

.hero-metrics {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
}

.hero-metrics > div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 3px 7px;
  padding: 25px 26px 27px;
  border-right: 1px solid var(--line-soft);
}

.hero-metrics > div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-metrics span {
  padding-bottom: 4px;
  color: #625f68;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.hero-metrics p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #8f8c96;
  font-size: 10px;
}

.statement {
  overflow: hidden;
}

.statement::before {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  content: "";
  background: rgba(71, 47, 122, 0.1);
  filter: blur(110px);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 50px;
}

.statement-title {
  margin: 0;
  font-size: clamp(46px, 5.6vw, 86px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.statement-title span {
  color: #56535d;
}

.statement-copy {
  max-width: 650px;
  margin: 52px 0 0 auto;
  color: #a3a0a9;
  font-size: 17px;
  line-height: 2;
}

.model-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015) 20%, transparent);
}

.section-heading,
.canvas-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 80px;
}

.section-heading h2,
.canvas-heading h2,
.agents-heading h2,
.reel-heading h2,
.download-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.section-heading > p,
.canvas-heading > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(149, 117, 255, 0.16), transparent 38%);
  opacity: 0;
  transition: opacity 350ms ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.duration-card,
.consistency-card { grid-column: span 7; }
.reference-card,
.quality-card { grid-column: span 5; }
.quality-card,
.consistency-card { min-height: 540px; }

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-soft);
  color: #6b6871;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.card-topline i {
  color: #918d98;
  font-style: normal;
  letter-spacing: 0.03em;
}

.card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 80px 30px 32px;
  background: linear-gradient(transparent, rgba(8, 8, 11, 0.94) 52%);
}

.card-copy h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.card-copy p {
  max-width: 520px;
  margin: 0;
  color: #8f8b95;
  font-size: 13px;
  line-height: 1.8;
}

.duration-visual {
  position: absolute;
  inset: 54px 0 0;
  display: grid;
  place-items: center;
}

.duration-visual::before {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(105, 77, 187, 0.24), transparent 62%);
  filter: blur(10px);
}

.time-orbit {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 240px;
}

.time-orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  transform: rotate(-90deg);
}

.time-orbit .time-progress {
  stroke: url("#nothing");
  stroke: #a68cff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 572;
  stroke-dashoffset: 90;
  filter: drop-shadow(0 0 8px rgba(162, 135, 255, 0.85));
  animation: orbit-progress 5s ease-in-out infinite alternate;
}

.time-orbit > div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.time-orbit strong {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.075em;
}

.time-orbit span {
  margin-top: 4px;
  color: #6f6b76;
  font-size: 8px;
  letter-spacing: 0.24em;
}

.duration-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.duration-rings i {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.duration-rings i:nth-child(2) { width: 440px; height: 440px; border-style: dashed; animation: spin 28s linear infinite; }
.duration-rings i:nth-child(3) { width: 540px; height: 540px; opacity: 0.45; }

.reference-visual {
  position: absolute;
  inset: 50px 0 90px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.reference-visual::before {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(71, 124, 179, 0.2), transparent 65%);
}

.reference-count {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reference-count strong {
  font-size: 76px;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.reference-count span {
  color: #6a6871;
  font-size: 8px;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.reference-orbit {
  position: absolute;
  width: 360px;
  height: 210px;
  border: 1px solid rgba(139, 183, 255, 0.13);
  border-radius: 50%;
}

.orbit-a { transform: rotate(18deg); }
.orbit-b { transform: rotate(-35deg); }

.reference-tile {
  position: absolute;
  width: 54px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: linear-gradient(145deg, #776f9c, #1a2232 55%, #b16867);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.ref-a { transform: translate(-155px, -68px) rotate(-18deg); animation: tile-float 5s ease-in-out infinite; }
.ref-b { transform: translate(148px, -45px) rotate(12deg); animation: tile-float 5s ease-in-out -1s infinite; background: linear-gradient(145deg, #9bb5bd, #23333d 55%, #0a0e13); }
.ref-c { transform: translate(-142px, 94px) rotate(8deg); animation: tile-float 5s ease-in-out -2s infinite; background: linear-gradient(145deg, #bd8e65, #4d2434 55%, #111); }
.ref-d { transform: translate(146px, 96px) rotate(-10deg); animation: tile-float 5s ease-in-out -3s infinite; background: linear-gradient(145deg, #a7c4cf, #31506a 45%, #08101d); }
.ref-e { width: 43px; height: 52px; transform: translate(0, -133px) rotate(5deg); animation: tile-float 5s ease-in-out -4s infinite; background: linear-gradient(145deg, #8067ad, #252042 55%, #0a0a0e); }

.quality-visual {
  position: absolute;
  inset: 50px 0 70px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(70, 123, 170, 0.21), transparent 55%);
}

.quality-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 50% 46%, black, transparent 70%);
}

.quality-main {
  position: absolute;
  top: 42%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.quality-main strong {
  background: linear-gradient(#fff, #757580);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 112px;
  font-weight: 600;
  letter-spacing: -0.1em;
  line-height: 0.9;
}

.quality-main span {
  margin-top: 14px;
  color: #5c5962;
  font-size: 7px;
  letter-spacing: 0.2em;
}

.quality-scan {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 216, 255, 0.8), transparent);
  box-shadow: 0 0 20px rgba(115, 216, 255, 0.8);
  animation: scan 4s ease-in-out infinite;
}

.fps-pill {
  position: absolute;
  right: 26px;
  bottom: 115px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 5px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(8, 11, 16, 0.66);
  backdrop-filter: blur(10px);
}

.fps-pill i {
  grid-row: span 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #65e5b0;
  box-shadow: 0 0 10px #65e5b0;
}

.fps-pill strong { font-size: 17px; font-weight: 500; }
.fps-pill span { color: #6b6971; font-size: 7px; }

.consistency-visual {
  position: absolute;
  inset: 60px 0 90px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(121, 85, 162, 0.18), transparent 60%);
}

.identity-face {
  position: absolute;
  top: 23%;
  width: 160px;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50% 50% 18px 18px;
  background: linear-gradient(120deg, #15131b 8%, #986c5a 49%, #332129 51%, #0c0c10 84%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.identity-face::before {
  position: absolute;
  top: 17%;
  left: 26%;
  width: 50%;
  height: 55%;
  border-radius: 50% 48% 45% 47%;
  content: "";
  background: linear-gradient(100deg, #52392f, #c38b70 52%, #3b2527 54%);
  box-shadow: inset 8px -12px 26px rgba(45, 20, 26, 0.7);
}

.identity-face::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40%;
  content: "";
  background: linear-gradient(25deg, #161821, #323340);
  clip-path: polygon(0 100%, 15% 15%, 42% 0, 56% 0, 88% 15%, 100% 100%);
}

.face-a { left: 9%; transform: scale(0.82) rotate(-7deg); opacity: 0.56; }
.face-b { left: 50%; z-index: 2; transform: translateX(-50%); }
.face-c { right: 9%; transform: scale(0.82) rotate(7deg); opacity: 0.56; }

.consistency-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(170, 139, 255, 0.2);
  stroke-dasharray: 3 6;
}

.match-score {
  position: absolute;
  right: 24px;
  bottom: 112px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(10, 10, 14, 0.78);
  color: #716e78;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.match-score b {
  margin-left: 6px;
  color: #a997ff;
}

.canvas-section {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}

.infinite-demo {
  position: relative;
  width: calc(100vw - 40px);
  max-width: 1540px;
  height: min(780px, 66vw);
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #09090c;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: grab;
}

.infinite-demo:active {
  cursor: grabbing;
}

.canvas-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-position: var(--grid-x, 0) var(--grid-y, 0);
  background-size: 28px 28px;
  transition: background-position 80ms linear;
}

.infinite-demo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: radial-gradient(circle at 53% 45%, rgba(102, 73, 176, 0.15), transparent 38%);
  pointer-events: none;
}

.canvas-topbar {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 9, 12, 0.78);
  color: #85818c;
  font-size: 10px;
  backdrop-filter: blur(14px);
}

.canvas-topbar > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.canvas-topbar > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #74d7ff;
  box-shadow: 0 0 10px #74d7ff;
}

.canvas-topbar > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.canvas-topbar b {
  margin-right: 10px;
  font-weight: 500;
}

.canvas-topbar button {
  display: grid;
  width: 25px;
  height: 25px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.canvas-toolbar {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(14, 14, 19, 0.8);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.canvas-toolbar i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  color: #75717c;
  font-size: 10px;
  font-style: normal;
}

.canvas-toolbar i:nth-child(2) {
  background: rgba(143, 112, 255, 0.18);
  color: #b4a5f8;
}

.canvas-world {
  position: absolute;
  z-index: 2;
  inset: 52px 0 0;
  min-width: 1280px;
  transform: translate3d(var(--world-x, 0px), var(--world-y, 0px), 0) scale(var(--world-scale, 1));
  transform-origin: center;
  transition: transform 80ms linear;
}

.world-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(163, 137, 255, 0.29);
  stroke-width: 1;
  stroke-dasharray: 5 8;
  animation: dash-flow 24s linear infinite;
}

.node {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(17, 17, 23, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.node:hover {
  z-index: 5;
  border-color: rgba(167, 141, 255, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(110, 79, 194, 0.12);
  transform: translateY(-4px);
}

.idea-card {
  width: 240px;
  padding: 18px;
}

.idea-card span,
.palette-card > span,
.sound-card > span {
  color: #6e6b74;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.idea-card h4 {
  margin: 12px 0 8px;
  font-size: 15px;
  font-weight: 500;
}

.idea-card p,
.character-card p {
  margin: 0;
  color: #77737e;
  font-size: 9px;
}

.storyboard-node {
  width: 260px;
  overflow: hidden;
}

.board-image {
  position: relative;
  height: 148px;
  overflow: hidden;
}

.storyboard-node p {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  color: #9995a0;
  font-size: 9px;
}

.storyboard-node p b { color: #c4b6ff; }
.board-two { width: 230px; }

.character-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 250px;
  padding: 13px;
}

.character-avatar {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 70px;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(130deg, #28212d, #8c5f51 55%, #121219);
}

.character-avatar::before {
  position: absolute;
  top: 10px;
  left: 16px;
  width: 29px;
  height: 38px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(100deg, #2b1b1d, #b37861 55%, #412528 57%);
}

.character-card span { color: #68656e; font-size: 7px; }
.character-card h4 { margin: 5px 0 4px; font-size: 13px; font-weight: 500; }

.palette-card {
  width: 300px;
  padding: 16px;
}

.palette-card div {
  display: flex;
  height: 38px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 8px;
}

.palette-card i { flex: 1; }
.palette-card i:nth-child(1) { background: #0a131c; }
.palette-card i:nth-child(2) { background: #26384b; }
.palette-card i:nth-child(3) { background: #778c96; }
.palette-card i:nth-child(4) { background: #d1a37f; }
.palette-card i:nth-child(5) { background: #6f3b43; }

.sound-card {
  width: 270px;
  padding: 16px;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 46px;
  margin-top: 8px;
}

.waveform i {
  width: 2px;
  height: calc(8px + var(--wave, 12px));
  border-radius: 2px;
  background: linear-gradient(#6ad5ff, #9375ff);
  animation: waveform 1.4s ease-in-out infinite alternate;
}

.waveform i:nth-child(1) { --wave: 5px; animation-delay: -.2s; }
.waveform i:nth-child(2) { --wave: 18px; animation-delay: -.7s; }
.waveform i:nth-child(3) { --wave: 28px; animation-delay: -.4s; }
.waveform i:nth-child(4) { --wave: 12px; animation-delay: -.9s; }
.waveform i:nth-child(5) { --wave: 32px; animation-delay: -.1s; }
.waveform i:nth-child(6) { --wave: 19px; animation-delay: -.5s; }
.waveform i:nth-child(7) { --wave: 8px; animation-delay: -.8s; }
.waveform i:nth-child(8) { --wave: 26px; animation-delay: -.3s; }
.waveform i:nth-child(9) { --wave: 14px; animation-delay: -.6s; }
.waveform i:nth-child(10) { --wave: 30px; animation-delay: -.2s; }
.waveform i:nth-child(11) { --wave: 11px; animation-delay: -.9s; }
.waveform i:nth-child(12) { --wave: 22px; animation-delay: -.4s; }

.final-node {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 220px;
  padding: 17px;
  background: linear-gradient(130deg, rgba(64, 43, 105, 0.88), rgba(16, 19, 29, 0.9));
}

.final-node span { color: #9f92cd; font-size: 8px; letter-spacing: .14em; }
.final-node strong { grid-column: 1; margin-top: 8px; font-size: 30px; font-weight: 500; letter-spacing: -.05em; }
.final-node i { grid-column: 2; grid-row: 1 / 3; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #f2eff9; color: #111; font-size: 10px; font-style: normal; }

.canvas-tip {
  position: absolute;
  z-index: 8;
  right: 16px;
  bottom: 15px;
  color: #5f5c65;
  font-size: 8px;
}

.canvas-tip span {
  margin-right: 7px;
  padding: 4px 7px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 5px;
  background: rgba(255,255,255,.04);
}

.agents-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(98, 67, 158, 0.12), transparent 32%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.015), transparent);
}

.agents-heading {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.agents-heading .section-kicker {
  justify-content: center;
}

.agents-heading > p:last-child {
  max-width: 610px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.agent-console {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(11, 11, 15, 0.74);
  box-shadow: 0 35px 80px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.04);
}

.agent-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-soft);
}

.agent-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 88px;
  padding: 12px 20px;
  border: 0;
  border-right: 1px solid var(--line-soft);
  background: transparent;
  color: #6c6973;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease;
}

.agent-tabs button:last-child { border-right: 0; }
.agent-tabs button:hover { color: #aaa6b1; background: rgba(255,255,255,.02); }
.agent-tabs button.active { color: #fff; background: linear-gradient(180deg, rgba(148,114,255,.12), rgba(148,114,255,.025)); box-shadow: inset 0 -1px #9a7aff; }

.agent-tabs button > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  font-style: normal;
}

.agent-tabs button.active > i {
  border-color: rgba(166,140,255,.38);
  color: #b9a8ff;
  box-shadow: 0 0 20px rgba(139,107,255,.13);
}

.agent-tabs span { font-size: 12px; font-weight: 600; }
.agent-tabs small { display: block; margin-top: 5px; color: #5e5b64; font-size: 8px; font-weight: 400; }

.agent-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.agent-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7e7a85;
  font-size: 9px;
  letter-spacing: .08em;
}

.agent-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #65ddb2;
  box-shadow: 0 0 12px #65ddb2;
}

.agent-status b { font-weight: 500; }

.agent-quote {
  min-height: 145px;
  margin: 30px 0;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.55;
  transition: opacity 180ms ease, transform 180ms ease;
}

.agent-quote.changing,
.agent-tags.changing,
.agent-status b.changing {
  opacity: 0;
  transform: translateY(8px);
}

.agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.agent-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #77737e;
  font-size: 8px;
}

.agent-process {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--line-soft);
  background: radial-gradient(circle at 50% 50%, rgba(100,72,168,.2), transparent 40%);
}

.agent-process::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 25px 25px;
  mask-image: radial-gradient(circle, black, transparent 70%);
}

.process-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(177,153,255,.3);
  border-radius: 50%;
  background: rgba(15,13,23,.86);
  box-shadow: 0 0 55px rgba(137,102,255,.24), inset 0 0 30px rgba(137,102,255,.08);
  transform: translate(-50%, -50%);
}

.process-core i {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(171,143,255,.22);
  border-radius: 50%;
  animation: spin 13s linear infinite;
}

.process-core strong {
  margin-top: 20px;
  background: linear-gradient(140deg, #fff, #9579ff, #5ed7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 42px;
  font-weight: 500;
}

.process-core span {
  align-self: start;
  margin-top: -10px;
  color: #665f75;
  font-size: 6px;
  letter-spacing: .15em;
  line-height: 1.45;
  text-align: center;
}

.process-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(166,139,255,.11);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.ring-one { width: 205px; height: 205px; border-style: dashed; animation: spin 24s linear infinite; }
.ring-two { width: 320px; height: 220px; transform: translate(-50%,-50%) rotate(25deg); }
.ring-three { width: 410px; height: 310px; transform: translate(-50%,-50%) rotate(-20deg); opacity: .55; }

.process-note {
  position: absolute;
  z-index: 3;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  background: rgba(12,12,17,.72);
  color: #65616c;
  font-size: 6px;
  line-height: 1.7;
  letter-spacing: .1em;
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.process-note b { color: #aaa2b9; font-size: 8px; font-weight: 500; letter-spacing: 0; }
.note-a { top: 19%; left: 12%; }
.note-b { top: 22%; right: 10%; animation-delay: -1.7s; }
.note-c { right: 20%; bottom: 18%; animation-delay: -3.2s; }

.workflow {
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(255,255,255,.022);
}

.workflow-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}

.workflow-title span { color: #65626b; font-size: 8px; letter-spacing: .14em; }
.workflow-title h3 { margin: 0; font-size: 20px; font-weight: 500; letter-spacing: -.03em; }

.workflow ol {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 25px;
}

.workflow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(164,136,255,.35), transparent);
}

.workflow li > span {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(161,132,255,.25);
  border-radius: 50%;
  color: #9b87e0;
  font-size: 8px;
}

.workflow b { font-size: 11px; font-weight: 500; }
.workflow p { margin: 4px 0 0; color: #67646c; font-size: 8px; }

.reel-section {
  overflow: hidden;
}

.reel-heading {
  max-width: 900px;
  margin-bottom: 72px;
}

.film-strip {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.film-strip::-webkit-scrollbar { display: none; }
.film-strip:active { cursor: grabbing; }

.film-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 max(32px, calc((100vw - 1240px) / 2)) 20px;
}

.film-card {
  position: relative;
  flex: 0 0 min(390px, 78vw);
}

.film-art {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: #111;
  transition: transform 500ms var(--ease), border-color 300ms ease;
}

.film-card:hover .film-art {
  border-color: rgba(255,255,255,.23);
  transform: translateY(-7px);
}

.film-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4,4,7,.7), transparent 50%), radial-gradient(circle at 50% 20%, transparent, rgba(0,0,0,.2));
}

.film-a .film-art { background: linear-gradient(180deg, #a7b3bc 0 38%, #9d7663 39%, #1e1d20 100%); }
.film-a .film-art i { position:absolute; right:-10%; bottom:24%; width:100%; height:34%; border-radius:80% 0 0; background:#21272d; transform:skewY(-8deg); }
.film-a .film-art b { position:absolute; left:20%; bottom:11%; width:3px; height:34%; background:#181719; box-shadow:0 -15px 0 6px #181719; }

.film-b .film-art { background: radial-gradient(circle at 72% 25%, #da8060 0 2%, #6f2f44 3%, transparent 18%), linear-gradient(155deg, #281527, #0d1526 60%, #563443); }
.film-b .film-art i { position:absolute; right:-32%; bottom:-26%; width:120%; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle at 38% 26%, #c47257, #75352f 28%, #291820 63%); box-shadow:-20px -20px 50px rgba(255,133,83,.2); }
.film-b .film-art b { position:absolute; top:0; left:30%; width:1px; height:100%; background:linear-gradient(transparent,#ff9a6a,transparent); transform:rotate(23deg); box-shadow:70px 0 #746cff; }

.film-c .film-art { background: linear-gradient(170deg, #213945, #b67550 47%, #251522 48%, #08090c); }
.film-c .film-art i { position:absolute; left:-10%; bottom:18%; width:120%; height:45%; background:linear-gradient(165deg,transparent 10%,#10151a 11% 22%,transparent 23% 31%,#1c1520 32% 44%,transparent 45%); }
.film-c .film-art b { position:absolute; top:15%; left:52%; width:1px; height:54%; background:#ffd5a1; box-shadow:0 0 18px #ffc58a; transform:rotate(15deg); }

.film-d .film-art { background: linear-gradient(#6c9da6 0 45%, #b8bd9b 46% 49%, #172e31 50%); }
.film-d .film-art i { position:absolute; right:-5%; bottom:16%; width:75%; height:46%; border-radius:60% 0 0; background:#182d29; box-shadow:-100px 55px 0 #27433c; }
.film-d .film-art b { position:absolute; left:48%; bottom:10%; width:4px; height:29%; border-radius:5px; background:#0c1516; box-shadow:0 -13px 0 5px #0c1516; }

.film-e .film-art { background: linear-gradient(145deg,#090a0d,#22152c 48%,#111826); }
.film-e .film-art i { position:absolute; inset:12%; border:1px solid rgba(110,181,255,.32); border-radius:50%; box-shadow:inset 0 0 80px rgba(95,104,255,.15),0 0 30px rgba(139,91,255,.12); }
.film-e .film-art b { position:absolute; top:50%; left:0; width:100%; height:1px; background:linear-gradient(transparent,#8e76ff,transparent); box-shadow:0 0 18px #826cff; transform:rotate(-18deg); }

.film-card > span {
  display: block;
  margin-top: 18px;
  color: #5e5b64;
  font-size: 8px;
}

.film-card h3 { margin: 8px 0 5px; font-size: 21px; font-weight: 500; letter-spacing: -.03em; }
.film-card p { margin: 0; color: #6d6973; font-size: 9px; letter-spacing: .05em; }

.download-section {
  min-height: 820px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #08080b, #050506);
}

.download-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg,transparent,black 50%,transparent);
}

.download-glow {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,82,196,.25), rgba(53,114,161,.08) 43%, transparent 68%);
  filter: blur(30px);
}

.download-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  min-height: 520px;
}

.download-copy h2 span {
  background: linear-gradient(90deg,#b6a5ff,#6ed6ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.download-copy > p:not(.section-kicker):not(.system-note) {
  max-width: 490px;
  margin: 28px 0 0;
  color: #9a96a1;
  font-size: 15px;
  line-height: 1.9;
}

.download-buttons {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.download-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 208px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.download-button:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.download-button svg { width: 23px; fill: #ddd9e3; }
.download-button span { font-size: 14px; font-weight: 600; }
.download-button small { display:block; margin-bottom:3px; color:#716d77; font-size:7px; font-weight:400; }
.download-button > i { color:#77737d; font-size:12px; font-style:normal; }

.system-note {
  margin: 16px 0 0;
  color: #5a5760;
  font-size: 8px;
}

.system-note code {
  color: #77727f;
  font-family: inherit;
}

.download-orb {
  position: relative;
  width: min(560px, 42vw);
  aspect-ratio: 1;
  justify-self: center;
}

.download-orb::before {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle at 38% 32%, rgba(181,159,255,.18),rgba(86,64,154,.05) 38%,transparent 70%);
  box-shadow: inset -30px -30px 80px rgba(29,68,101,.1);
  animation: orb-breathe 5s ease-in-out infinite;
}

.orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 114px;
  height: 114px;
  place-items: center;
  border: 1px solid rgba(184,160,255,.38);
  border-radius: 50%;
  background: rgba(10,9,15,.82);
  box-shadow: 0 0 70px rgba(123,90,230,.34), inset 0 0 25px rgba(122,91,208,.12);
  transform: translate(-50%,-50%);
}

.orb-core img { width: 48px; filter: drop-shadow(0 0 16px rgba(154,126,255,.5)); }

.orbital-line {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(165,139,255,.15);
  border-radius: 50%;
}

.orbital-line i {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9c82ff;
  box-shadow: 0 0 12px #9c82ff;
}

.line-a { width:72%; height:43%; transform:translate(-50%,-50%) rotate(20deg); animation:orbit-a 18s linear infinite; }
.line-b { width:85%; height:55%; transform:translate(-50%,-50%) rotate(-37deg); animation:orbit-b 24s linear infinite; }
.line-c { width:94%; height:72%; transform:translate(-50%,-50%) rotate(65deg); opacity:.52; animation:orbit-c 31s linear infinite; }
.line-b i { background:#64d2ff; box-shadow:0 0 12px #64d2ff; }
.line-c i { background:#ffb37d; box-shadow:0 0 12px #ffb37d; }

.orb-label {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 7px;
  background: rgba(10,10,14,.65);
  color: #797580;
  font-size: 7px;
  letter-spacing: .12em;
  backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite;
}

.label-a { top:21%; left:14%; }
.label-b { top:30%; right:7%; animation-delay:-1.5s; }
.label-c { right:20%; bottom:17%; animation-delay:-3s; }

.site-footer {
  padding: 72px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: start;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-top > p {
  margin: 8px 0 0;
  color: #77737d;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px 24px;
  justify-self: end;
  color: #85818c;
  font-size: 11px;
}

.footer-links a:hover { color:#fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: #4b4950;
  font-size: 7px;
  letter-spacing: .11em;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: min(380px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(16,15,21,.88);
  box-shadow: 0 20px 55px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  backdrop-filter: blur(20px);
  transition: opacity 250ms ease, transform 350ms var(--ease), visibility 250ms ease;
}

.toast.show { opacity:1; transform:translateY(0); visibility:visible; }
.toast-icon { display:grid; width:34px; height:34px; place-items:center; border-radius:50%; background:rgba(151,121,255,.15); color:#b5a2ff; }
.toast strong { font-size:11px; font-weight:600; }
.toast p { margin:4px 0 0; color:#77737d; font-size:8px; }
.toast button { width:28px; height:28px; padding:0; border:0; background:transparent; color:#6b6871; font-size:18px; cursor:pointer; }

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.hero .reveal-item:nth-child(2) { transition-delay: 80ms; }
.hero .reveal-item:nth-child(3) { transition-delay: 150ms; }
.hero .reveal-item:nth-child(4) { transition-delay: 220ms; }
.hero .reveal-item:nth-child(5) { transition-delay: 280ms; }
.hero-studio.reveal-item { transition-delay: 260ms; transition-duration: 1200ms; }

@keyframes pulse-ring { 0% { opacity:1; transform:scale(.4); } 80%,100% { opacity:0; transform:scale(1.4); } }
@keyframes text-shimmer { to { background-position: -220% center; } }
@keyframes aurora-drift { to { transform: translate3d(6%, -4%, 0) scale(1.12); } }
@keyframes dash-flow { to { stroke-dashoffset: -120; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes playhead { 0% { left:0; } 100% { left:100%; } }
@keyframes orbit-progress { to { stroke-dashoffset: 30; } }
@keyframes tile-float { 50% { margin-top:-10px; } }
@keyframes scan { 0%,100% { top:5%; opacity:0; } 12% { opacity:1; } 85% { opacity:1; } 100% { top:75%; } }
@keyframes waveform { to { height:calc(4px + var(--wave, 12px) * .45); opacity:.5; } }
@keyframes orb-breathe { 50% { transform:scale(1.06); filter:brightness(1.2); } }
@keyframes orbit-a { to { transform:translate(-50%,-50%) rotate(380deg); } }
@keyframes orbit-b { to { transform:translate(-50%,-50%) rotate(-397deg); } }
@keyframes orbit-c { to { transform:translate(-50%,-50%) rotate(425deg); } }

@media (max-width: 1180px) {
  :root { --page: min(100% - 48px, 1080px); }
  .hero-content { grid-template-columns: minmax(360px,.75fr) minmax(520px,1.25fr); gap:20px; }
  .hero-studio { width:62vw; transform:translateX(2vw); }
  .hero h1 { font-size:clamp(66px,7.6vw,96px); }
  .agent-copy { padding:52px; }
  .workflow li:not(:last-child)::after { width:24px; }
  .download-buttons { flex-direction:column; max-width:270px; }
  .download-button { width:100%; }
}

@media (max-width: 940px) {
  :root { --page: calc(100% - 40px); }
  .site-header { grid-template-columns:1fr auto; padding:0 20px; }
  .desktop-nav { display:none; }
  .menu-toggle { display:block; }
  .header-download { display:none; }
  .hero { min-height:1180px; }
  .hero-content { display:block; min-height:auto; padding-top:150px; }
  .hero-copy { max-width:670px; }
  .hero h1 { font-size:clamp(70px,12vw,108px); }
  .hero-lead { font-size:16px; }
  .hero-studio { width:90vw; margin-top:90px; transform:translateX(5vw); }
  .hero-studio.reveal-item { transform:translateX(5vw) translateY(30px); }
  .hero-studio.reveal-item.is-visible { transform:translateX(5vw) translateY(0); }
  .studio-body { height:560px; }
  .hero-metrics { position:absolute; }
  .statement-grid { grid-template-columns:1fr; }
  .statement-copy { margin-left:0; }
  .section-heading,.canvas-heading { grid-template-columns:1fr; gap:28px; }
  .duration-card,.reference-card,.quality-card,.consistency-card { grid-column:span 12; min-height:590px; }
  .feature-card { min-height:590px; }
  .agent-display { grid-template-columns:1fr; }
  .agent-process { min-height:500px; border-top:1px solid var(--line-soft); border-left:0; }
  .workflow ol { grid-template-columns:repeat(2,1fr); gap:28px 0; }
  .workflow li:nth-child(2)::after { display:none; }
  .download-shell { grid-template-columns:1fr; gap:20px; }
  .download-orb { width:min(560px,80vw); }
  .download-buttons { flex-direction:row; max-width:none; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-top > p { grid-column:1 / -1; grid-row:2; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 32px); }
  .section-pad { padding:100px 0; }
  .site-header { height:70px; }
  .brand { font-size:18px; }
  .brand img { width:30px; height:30px; }
  .hero { min-height:1030px; }
  .hero::before { background:linear-gradient(0deg,#060608 0%,transparent 35%),linear-gradient(90deg,rgba(6,6,8,.9),rgba(6,6,8,.4)); }
  .hero-content { padding-top:120px; }
  .eyebrow { margin-bottom:22px; font-size:8px; }
  .hero h1 { font-size:clamp(57px,17vw,80px); line-height:.94; }
  .hero-lead { margin-top:27px; font-size:14px; line-height:1.8; }
  .hero-ctas { align-items:flex-start; flex-direction:column; gap:8px; margin-top:30px; }
  .hero-studio { width:116vw; margin-top:68px; transform:translateX(-5vw); }
  .hero-studio.reveal-item { transform:translateX(-5vw) translateY(30px); }
  .hero-studio.reveal-item.is-visible { transform:translateX(-5vw) translateY(0); }
  .studio-window { transform:rotateY(-5deg) rotateX(2deg) scale(.88); transform-origin:left top; }
  .studio-body { min-height:430px; height:430px; }
  .floating-chip { display:none; }
  .hero-metrics { grid-template-columns:repeat(2,1fr); }
  .hero-metrics > div { padding:17px 16px; }
  .hero-metrics > div:nth-child(2) { border-right:0; }
  .hero-metrics > div:nth-child(-n+2) { border-bottom:1px solid var(--line-soft); }
  .hero-metrics strong { font-size:22px; }
  .statement-title { font-size:clamp(38px,12vw,56px); }
  .statement-copy { margin-top:34px; font-size:14px; }
  .section-heading,.canvas-heading { margin-bottom:50px; }
  .section-heading h2,.canvas-heading h2,.agents-heading h2,.reel-heading h2,.download-copy h2 { font-size:clamp(40px,12vw,60px); }
  .feature-card,.duration-card,.reference-card,.quality-card,.consistency-card { min-height:500px; border-radius:18px; }
  .card-copy { padding:70px 22px 24px; }
  .card-copy h3 { font-size:24px; }
  .duration-rings i:nth-child(2) { width:360px; height:360px; }
  .duration-rings i:nth-child(3) { display:none; }
  .reference-orbit { width:310px; }
  .reference-tile { width:43px; height:56px; }
  .ref-a { transform:translate(-125px,-60px) rotate(-18deg); }
  .ref-b { transform:translate(122px,-38px) rotate(12deg); }
  .ref-c { transform:translate(-115px,82px) rotate(8deg); }
  .ref-d { transform:translate(120px,85px) rotate(-10deg); }
  .quality-main strong { font-size:92px; }
  .identity-face { width:130px; height:178px; }
  .face-a { left:0; }.face-c { right:0; }
  .infinite-demo { width:calc(100vw - 20px); height:620px; min-height:620px; border-radius:16px; }
  .canvas-world { transform:translate3d(calc(var(--world-x,0px) - 105px),var(--world-y,0px),0) scale(var(--world-scale,.83)); transform-origin:top left; }
  .canvas-toolbar { display:none; }
  .agent-tabs button { min-height:76px; gap:7px; padding:10px 6px; }
  .agent-tabs button > i { width:28px; height:28px; }
  .agent-tabs small { display:none; }
  .agent-copy { padding:42px 24px; }
  .agent-quote { min-height:168px; font-size:25px; }
  .agent-process { min-height:420px; }
  .ring-three { width:330px; }
  .workflow { padding:25px 20px; }
  .workflow-title { align-items:flex-start; flex-direction:column; gap:8px; }
  .workflow ol { grid-template-columns:1fr; gap:22px; }
  .workflow li:not(:last-child)::after { top:auto; right:auto; bottom:-17px; left:17px; width:1px; height:13px; background:linear-gradient(rgba(164,136,255,.35),transparent); }
  .film-track { padding-inline:16px; }
  .film-card { flex-basis:78vw; }
  .film-art { height:410px; }
  .download-section { min-height:auto; }
  .download-buttons { flex-direction:column; max-width:none; }
  .download-button { width:100%; }
  .download-orb { width:104vw; margin-left:-10vw; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .footer-top > p { grid-column:auto; grid-row:auto; }
  .footer-links { justify-self:start; }
  .footer-bottom { align-items:flex-start; flex-direction:column; gap:10px; }
  .toast { right:16px; bottom:16px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; }
  .reveal-item { opacity:1; transform:none; }
}

/* 首页公告弹窗 */
.announcement-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  transition: opacity 260ms ease;
}

.announcement-modal[hidden] {
  display: none;
}

.announcement-modal.show {
  opacity: 1;
}

.announcement-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 4, 10, 0.8);
  backdrop-filter: blur(18px);
  cursor: default;
}

.announcement-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  width: min(920px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  border: 1px solid rgba(101, 215, 255, 0.22);
  border-radius: 25px;
  background:
    radial-gradient(circle at 90% 10%, rgba(72, 184, 255, 0.13), transparent 34%),
    #0b0d13;
  box-shadow: 0 45px 140px rgba(0, 0, 0, 0.72);
  transform: translateY(22px) scale(0.975);
  transition: transform 360ms var(--ease);
}

.announcement-modal.show .announcement-dialog {
  transform: translateY(0) scale(1);
}

.announcement-dialog:not(:has(.announcement-image:not([hidden]))) {
  grid-template-columns: 1fr;
  width: min(680px, 100%);
}

.announcement-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(5, 7, 11, 0.7);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.announcement-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #07090e;
}

.announcement-copy {
  align-self: center;
  padding: clamp(38px, 6vw, 72px);
}

.announcement-copy .section-kicker {
  color: #65d9ff;
}

.announcement-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

.announcement-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #aaaeb9;
  font-size: 14px;
  line-height: 1.95;
  white-space: pre-line;
}

.announcement-copy .primary-button {
  width: max-content;
  margin-top: 32px;
}

@media (max-width: 720px) {
  .announcement-modal { padding: 14px; }
  .announcement-dialog { display: block; max-height: calc(100svh - 28px); border-radius: 19px; }
  .announcement-image { height: min(42svh, 330px); min-height: 0; }
  .announcement-copy { padding: 34px 25px 38px; }
  .announcement-copy h2 { font-size: clamp(34px, 11vw, 50px); }
  .announcement-copy .primary-button { width: 100%; justify-content: space-between; }
}

/* 首页头图 */
.hero.hero-poster {
  display: block;
  min-height: 0;
  padding-top: 82px;
  overflow: hidden;
  background: #02040a;
}

.hero.hero-poster::before {
  z-index: 1;
  background: linear-gradient(0deg, rgba(2, 4, 10, 0.72), transparent 14%);
}

.hero.hero-poster::after {
  display: none;
}

.hero-poster-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.hero-poster-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 30px 0 34px;
}

.poster-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c7c4ce;
  font-size: 13px;
  transition: color 200ms ease;
}

.poster-secondary-button span {
  transition: transform 300ms var(--ease);
}

.poster-secondary-button:hover {
  color: #fff;
}

.poster-secondary-button:hover span {
  transform: translateY(4px);
}

/* 灵感放映厅 */
.inspiration-section {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 14%, rgba(40, 154, 255, 0.13), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(111, 76, 255, 0.12), transparent 30%),
    #07080c;
}

.inspiration-heading code,
.tutorials-section code {
  padding: 0.14em 0.38em;
  border: 1px solid rgba(111, 210, 255, 0.16);
  border-radius: 5px;
  background: rgba(86, 194, 255, 0.08);
  color: #88ddff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 24px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(103, 206, 255, 0.15);
  border-radius: 22px;
  background: rgba(7, 12, 20, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-player::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(68, 214, 255, 0.12), rgba(82, 47, 200, 0.14));
}

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

.video-card-copy {
  padding: 25px 27px 29px;
}

.video-meta {
  margin: 0 0 12px !important;
  color: #66d8ff !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.video-card-copy > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.video-empty {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 230px;
  padding: 36px 42px;
  border: 1px dashed rgba(94, 211, 255, 0.32);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(50, 203, 255, 0.07), transparent 45%),
    rgba(255, 255, 255, 0.025);
}

.video-empty[hidden] {
  display: none;
}

.video-empty > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(91, 221, 255, 0.35);
  border-radius: 50%;
  background: rgba(61, 190, 255, 0.11);
  color: #81e7ff;
  font-size: 24px;
  box-shadow: 0 0 40px rgba(47, 190, 255, 0.13);
}

.video-empty h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.video-empty p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.video-empty a {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d7d4dc;
  font-size: 12px;
  white-space: nowrap;
}

.managed-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card.has-managed-visual .duration-visual,
.feature-card.has-managed-visual .reference-visual,
.feature-card.has-managed-visual .quality-visual,
.feature-card.has-managed-visual .consistency-visual {
  display: none;
}

.feature-card.has-managed-visual .card-topline,
.feature-card.has-managed-visual .card-copy {
  position: relative;
  z-index: 2;
}

.feature-card.has-managed-visual .card-copy {
  background: linear-gradient(transparent, rgba(5, 6, 10, 0.94) 42%);
}

.has-managed-section-visual {
  background-color: #080a10 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.has-managed-section-visual > * {
  visibility: hidden !important;
}

/* 教程 */
.tutorials-section {
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #09090d;
  background-size: 48px 48px, 48px 48px, auto;
}

.tutorials-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 62px;
}

.tutorials-heading:has(> :last-child:nth-child(2)) {
  grid-template-columns: 1fr;
}

.tutorials-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -5px;
}

.tutorials-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.tutorials-heading > p {
  max-width: 360px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tutorial-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(15, 15, 21, 0.86);
}

.tutorial-card::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  content: "";
  background: rgba(68, 191, 255, 0.1);
  filter: blur(55px);
}

.tutorial-number {
  color: rgba(108, 218, 255, 0.75);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.tutorial-label {
  margin: 70px 0 10px;
  color: #817e88;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.tutorial-card h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.tutorial-card > p:not(.tutorial-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.tutorial-example,
.tutorial-card pre {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  margin: 0;
  padding: 15px 16px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  color: #777480;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  line-height: 1.7;
  white-space: pre;
}

.tutorial-example b {
  color: #65d7ff;
  font-weight: 500;
}

.tutorial-card pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9edfff;
}

.tutorial-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(145, 119, 255, 0.15);
  border-radius: 12px;
  background: rgba(140, 111, 255, 0.06);
}

.tutorial-note span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(149, 121, 255, 0.15);
  color: #b9aaff;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.tutorial-note p {
  margin: 0;
  color: #92909a;
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 24px; }
  .tutorial-grid { grid-template-columns: 1fr; }
  .tutorial-card { min-height: 330px; }
}

@media (max-width: 940px) {
  .hero.hero-poster { min-height: 0; padding-top: 70px; }
  .tutorials-heading { grid-template-columns: 1fr; }
  .tutorials-heading > p { max-width: 520px; }
}

@media (max-width: 680px) {
  .hero.hero-poster { min-height: 0; }
  .hero-poster-actions { align-items: stretch; flex-direction: column; gap: 14px; padding: 22px 0 27px; }
  .hero-poster-actions .primary-button { justify-content: space-between; width: 100%; }
  .poster-secondary-button { justify-content: center; padding: 9px 0; }
  .inspiration-heading h2,
  .tutorials-heading h2 { font-size: clamp(40px, 12vw, 60px); }
  .video-empty { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; }
  .video-empty > span { width: 58px; height: 58px; font-size: 18px; }
  .video-empty h3 { font-size: 24px; }
  .video-empty a { justify-self: start; }
  .video-card-copy { padding: 21px 20px 24px; }
  .video-card h3 { font-size: 22px; }
  .tutorials-heading { margin-bottom: 42px; }
  .tutorial-card { min-height: 360px; padding: 24px; }
  .tutorial-label { margin-top: 55px; }
  .tutorial-example,
  .tutorial-card pre { right: 24px; bottom: 24px; left: 24px; }
  .tutorial-note { align-items: flex-start; }
}
