:root {
  --ink: #071018;
  --paper: #eaf5ff;
  --blue: #5db8ff;
  --cyan: #55f0ff;
  --orange: #ff7a2f;
  --green: #88ffb6;
  --line: rgba(7, 16, 24, 0.18);
  --shadow: 0 28px 80px rgba(12, 44, 79, 0.28);
}

*, *::before, *::after {
  box-sizing: border-box;
  cursor: url('光标.png') 0 0, auto !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(85, 240, 255, 0.24), transparent 62%),
    radial-gradient(circle at 70% 30%, rgba(255, 122, 47, 0.2), transparent 48%);
  filter: blur(6px);
  opacity: 0.75;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: screen;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: #01070d;
  color: white;
  transition: opacity 700ms ease, visibility 700ms ease;
}

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

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

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

.loader-shade {
  background:
    linear-gradient(90deg, rgba(1, 7, 13, 0.88), rgba(1, 7, 13, 0.18)),
    radial-gradient(circle at 70% 45%, transparent, rgba(1, 7, 13, 0.78));
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(32px, 3vw, 56px) clamp(42px, 5.2vw, 118px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(85, 240, 255, 0.36), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255, 122, 47, 0.18), transparent 35%),
    linear-gradient(120deg, #f2f9ff 0%, #dcecff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -28% 42% auto auto;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(7, 16, 24, 0.12);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.topbar {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font: 900 clamp(18px, 1.12vw, 26px) / 1 system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.12em;
  padding-top: 0;
}

.sponsor-logo {
  display: block;
  width: clamp(430px, 31vw, 720px);
  line-height: 0;
}

.sponsor-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: min(48vw, 1040px);
  padding-top: calc(clamp(96px, 12vh, 160px) - 20px);
  animation: enterLeft 900ms ease 250ms both;
}

.eyebrow,
.tag {
  width: fit-content;
  margin: 0 0 18px;
  border: 2px solid var(--ink);
  background: white;
  padding: 8px 12px;
  box-shadow: 6px 6px 0 var(--ink);
  font: 900 clamp(13px, 0.8vw, 18px) / 1 system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.1em;
}

.hero-copy h1 {
  transform: translateY(-50px);
}

.hero-copy .eyebrow {
  transform: translateY(-65px);
}

h1,
.spotlight-copy h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  max-width: 1050px;
  font-size: clamp(80px, 8.7vw, 150px);
  line-height: 1.05;
}

.spotlight-copy h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

h1 > span {
  display: block;
}

h1 > span:first-child {
  transform: translateY(-15px);
}

.lede {
  max-width: 860px;
  margin: 0;
  color: rgba(7, 16, 24, 0.86);
  font-size: 28px;
  line-height: 1.7;
}

.hero-bottom-copy {
  position: absolute;
  left: clamp(42px, 5.2vw, 118px);
  bottom: 15px;
  z-index: 12;
  max-width: min(46vw, 920px);
  padding: clamp(18px, 2.5vw, 36px);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-bottom-copy .lede {
  color: rgba(7, 16, 24, 0.86);
  text-shadow: none;
}

.contrast-watch {
  color: var(--ink);
  transition: color 220ms ease, text-shadow 220ms ease;
}

.contrast-watch.on-dark {
  color: white;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

.contrast-watch.lede.on-dark {
  color: rgba(255, 255, 255, 0.86);
}

.contrast-char {
  color: var(--ink);
  transition: color 160ms ease, text-shadow 160ms ease;
}

h1 .contrast-char {
  display: inline-block;
}

.lede .contrast-char {
  display: inline;
}

.contrast-char.on-dark {
  color: white;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.48);
}

.lede .contrast-char.on-dark {
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: clamp(34px, 4vh, 56px);
}

.primary-action,
.ghost-action,
.inside-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: clamp(58px, 4.2vw, 84px);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0 clamp(28px, 2.4vw, 48px);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.primary-action {
  background: var(--ink);
  color: white;
  box-shadow: 8px 8px 0 var(--orange);
}

.ghost-action,
.inside-button {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 8px 8px 0 var(--cyan);
}

.primary-action:hover,
.ghost-action:hover,
.inside-button:hover {
  transform: translateY(-5px);
}

.arrow-btn {
  width: clamp(58px, 4.2vw, 84px);
  height: clamp(58px, 4.2vw, 84px);
  border-radius: 50%;
  padding: 0;
  display: inline-grid;
  place-items: center;
  animation: arrowBounce 2s ease-in-out infinite;
}

.arrow-btn:hover {
  animation-play-state: paused;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.orbit-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
}

.ring-stage {
  position: absolute;
  z-index: 3;
  right: clamp(-120px, -4vw, -56px);
  top: 55%;
  width: min(82vw, 1720px);
  height: min(62vw, 960px);
  min-width: 980px;
  min-height: 620px;
  perspective: 1800px;
  transform: translateY(-42%);
}

.orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.orbit-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(760px, 60vw, 1500px);
  aspect-ratio: 83 / 54;
  border: 3px solid rgba(7, 16, 24, 0.74);
  border-radius: 15px;
  overflow: hidden;
  color: white;
  background: #06141d;
  box-shadow: var(--shadow);
  transform:
    translate(-50%, calc(-50% - var(--lift, 0px)))
    translateX(var(--slide-x, 0px))
    translateY(var(--slide-y, 0px))
    translateZ(var(--slide-z, 0px))
    rotate(var(--slide-r, 0deg))
    scale(var(--slide-s, 1))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

.orbit-card[data-pos="0"] {
  --slide-x: 0px;
  --slide-y: 0px;
  --slide-z: 120px;
  --slide-r: -3deg;
  --slide-s: 1;
  z-index: 6;
  opacity: 1;
}

.orbit-card[data-pos="1"] {
  --slide-x: 48%;
  --slide-y: -6%;
  --slide-z: -90px;
  --slide-r: 7deg;
  --slide-s: 0.66;
  z-index: 4;
  opacity: 0.82;
}

.orbit-card[data-pos="2"] {
  --slide-x: 82%;
  --slide-y: 2%;
  --slide-z: -180px;
  --slide-r: 11deg;
  --slide-s: 0.5;
  z-index: 2;
  opacity: 0.46;
}

.orbit-card[data-pos="-1"] {
  --slide-x: -70%;
  --slide-y: 5%;
  --slide-z: -120px;
  --slide-r: -8deg;
  --slide-s: 0.64;
  z-index: 3;
  opacity: 0.66;
}

.orbit-card[data-pos="-2"] {
  --slide-x: -108%;
  --slide-y: 8%;
  --slide-z: -220px;
  --slide-r: -12deg;
  --slide-s: 0.47;
  z-index: 1;
  opacity: 0.34;
}

.orbit-card:not([data-pos="0"]) {
  filter: saturate(0.7) blur(0.25px);
}

.orbit-card:not([data-pos="0"]) .card-content {
  opacity: 0.58;
}

.orbit-card.is-hovering {
  filter: saturate(1.16) contrast(1.05);
}

.orbit-card.clicked,
.feature-card.clicked {
  animation: floatClick 680ms ease;
}

.card-media,
.card-media video,
.feature-video,
.feature-video video,
.feature-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-media video,
.feature-video video {
  object-fit: contain;
  background: #06141d;
}

.feature-video img {
  object-fit: cover;
  background: #06141d;
}

.card-media::after,
.feature-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 8, 12, 0.88), rgba(2, 8, 12, 0.14) 58%),
    radial-gradient(circle at 30% 30%, rgba(85, 240, 255, 0.18), transparent 44%);
}

.card-content {
  position: absolute;
  left: clamp(28px, 3vw, 64px);
  right: clamp(28px, 3vw, 64px);
  bottom: clamp(26px, 3vw, 58px);
  transform: translateZ(72px);
}

.card-content span,
.feature-content span {
  color: var(--cyan);
  font-size: clamp(12px, 0.8vw, 17px);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.card-content h2 {
  margin: 8px 0 10px;
  font-size: clamp(54px, 5.4vw, 116px);
  line-height: 1;
}

.card-content p,
.feature-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.2vw, 26px);
  line-height: 1.65;
}

.feature-content p {
  font-size: clamp(16px, 1.14vw, 25px);
}

.hover-zones {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.hover-zones span {
  min-width: 0;
}

.ring-control {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: clamp(56px, 4.4vw, 82px);
  height: clamp(56px, 4.4vw, 82px);
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: clamp(38px, 3.2vw, 62px);
  line-height: 1;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--orange);
  transform: translateY(-50%);
}

.ring-control.prev {
  left: clamp(36px, 4vw, 86px);
}

.ring-control.next {
  right: clamp(96px, 9vw, 168px);
}

.card-thumbs {
  position: absolute;
  right: clamp(44px, 5.2vw, 118px);
  bottom: 20px;
  z-index: 14;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 20px);
}

.card-thumbs::before {
  content: "NEXT";
  color: rgba(7, 16, 24, 0.72);
  font-size: clamp(12px, 0.75vw, 18px);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.thumb {
  --progress: 0;
  position: relative;
  width: clamp(52px, 3.8vw, 82px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #071018;
  cursor: pointer;
  opacity: 0.62;
  box-shadow: 0 10px 24px rgba(7, 16, 24, 0.28);
  transform: translateY(0);
  transition: opacity 220ms ease, outline 220ms ease, transform 220ms ease;
}

.thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  opacity: 1;
  outline: 3px solid white;
  outline-offset: 3px;
  transform: translateY(-4px);
}

.thumb-progress {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: calc(var(--progress) * 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  box-shadow: 0 -2px 10px rgba(85, 240, 255, 0.45);
  transition: width 80ms linear;
}

.scroll-cue {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: 22px;
  color: rgba(7, 16, 24, 0.46);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  margin: 12px auto 0;
  background: currentColor;
  animation: cue 1500ms ease-in-out infinite;
}

.spotlight {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #eaf5ff 0%, #dceeff 70%, #cfe7ff 100%),
    radial-gradient(circle at 85% 22%, rgba(136, 255, 182, 0.28), transparent 30%);
}

.spotlight::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(7, 16, 24, 0.12);
  transform: rotate(-12deg);
}

.spotlight-ghost {
  position: absolute;
  left: 7vw;
  top: 6vh;
  color: rgba(7, 16, 24, 0.05);
  font: 400 clamp(120px, 19vw, 310px) / 0.8 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  pointer-events: none;
}

.spotlight-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.spotlight-copy h2 {
  font-size: clamp(50px, 7.2vw, 118px);
  line-height: 0.96;
}

.spotlight-copy p:not(.tag) {
  max-width: 730px;
  margin: 24px 0 0;
  color: rgba(7, 16, 24, 0.78);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.72;
}

.feature-stack {
  position: relative;
  z-index: 2;
  min-height: 560px;
  perspective: 1200px;
}

.feature-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  position: absolute;
  right: -8vw;
  top: 50%;
  width: min(57vw, 760px);
  min-width: 520px;
  aspect-ratio: 1.52;
  overflow: hidden;
  border: 2px solid rgba(7, 16, 24, 0.72);
  border-radius: 8px;
  background: #06141d;
  color: white;
  box-shadow: 0 44px 120px rgba(7, 16, 24, 0.3);
  transform:
    translateY(calc(-50% - var(--lift, 0px)))
    rotate(-7deg)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.feature-main {
  z-index: 5;
  opacity: 1;
}

.feature-card-back {
  right: clamp(180px, 24vw, 390px);
  top: 28%;
  z-index: 2;
  width: min(34vw, 500px);
  min-width: 320px;
  opacity: 0.86;
  filter: saturate(0.85);
  transform:
    translateY(calc(-50% - var(--lift, 0px)))
    rotate(7deg)
    scale(0.96)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 28px 80px rgba(7, 16, 24, 0.16);
}

.feature-card-rear {
  right: clamp(-30px, 5vw, 90px);
  top: calc(16% - 20px);
  z-index: 1;
  width: min(30vw, 460px);
  min-width: 300px;
  opacity: 0.76;
  filter: saturate(0.75) blur(0.2px);
  transform:
    translateY(calc(-50% - var(--lift, 0px)))
    rotate(-5deg)
    scale(0.92)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 24px 70px rgba(7, 16, 24, 0.13);
}

.feature-card.is-hovering {
  filter: saturate(1.12) contrast(1.04);
}

.feature-card.raised {
  animation: breathe 4s ease-in-out infinite;
}

.feature-content {
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  right: 24px;
  bottom: clamp(24px, 3vw, 42px);
  z-index: 2;
  max-width: 440px;
  transform: translateZ(64px);
}

.feature-content h3 {
  margin: 8px 0 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(45px, 4.9vw, 81px);
  line-height: 0.92;
  letter-spacing: 0;
}

.inside-button {
  min-height: 46px;
  margin-top: 22px;
  border-color: white;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
}

.float-panel {
  position: absolute;
  z-index: 9;
  display: grid;
  gap: 2px;
  min-width: 138px;
  border: 1px solid rgba(7, 16, 24, 0.18);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 20px 50px rgba(7, 16, 24, 0.14);
  backdrop-filter: blur(18px);
}

.float-panel span {
  color: rgba(7, 16, 24, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.float-panel strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 46px;
  line-height: 1;
}

.panel-a {
  left: clamp(80px, 9vw, 150px);
  top: 18%;
  animation: driftA 5s ease-in-out infinite;
}

.panel-b {
  right: clamp(40px, 5vw, 90px);
  bottom: 20%;
  animation: driftB 5.6s ease-in-out infinite;
}

.video-page {
  position: relative;
  min-height: 300vh;
  background: var(--paper);
}

.video-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scroll-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text {
  display: none;
}

.video-label {
  color: var(--cyan);
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.video-heading {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}

.video-actions {
  position: absolute;
  bottom: 15px;
  left: clamp(42px, 5.2vw, 118px);
  z-index: 3;
  display: flex;
  gap: 24px;
}

@keyframes loaderRise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enterLeft {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cue {
  50% {
    transform: translateY(12px);
    opacity: 0.35;
  }
}

@keyframes floatClick {
  0%,
  100% {
    translate: 0 0;
  }
  42% {
    translate: 0 -28px;
    box-shadow: 0 48px 120px rgba(85, 240, 255, 0.34);
  }
}

@keyframes breathe {
  50% {
    translate: 0 -12px;
  }
}

@keyframes driftA {
  50% {
    transform: translate3d(18px, -18px, 0) rotate(3deg);
  }
}

@keyframes driftB {
  50% {
    transform: translate3d(-20px, 16px, 0) rotate(-4deg);
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: 1120px;
  }

  .ring-stage {
    top: 560px;
    right: 50%;
    transform: translateX(50%) scale(0.74);
  }

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

  .feature-stack {
    min-height: 560px;
  }

  .feature-card {
    right: 50%;
    transform:
      translate(50%, calc(-50% - var(--lift, 0px)))
      rotate(-5deg)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
  }
}

@media (max-width: 720px) {
  .cursor-light {
    display: none;
  }

  .topbar {
    align-items: flex-start;
  }

  .sponsor-logo {
    width: min(52vw, 260px);
  }

  .hero {
    min-height: 980px;
    padding-top: 22px;
  }

  .hero-copy {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 76px);
  }

  .ring-stage {
    top: 510px;
    min-width: 560px;
    min-height: 370px;
    transform: translateX(50%) scale(0.62);
  }

  .orbit-card {
    width: 360px;
  }

  .ring-control.next {
    right: 18px;
  }

  .spotlight {
    padding-top: 74px;
  }

  .spotlight-copy h2 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .feature-stack {
    min-height: 460px;
  }

  .feature-card {
    min-width: 350px;
    width: 92vw;
  }

  .float-panel {
    transform: scale(0.82);
  }

  .panel-a {
    left: -8px;
  }

  .panel-b {
    right: -8px;
  }

  .video-heading {
    font-size: clamp(36px, 14vw, 64px);
  }

  .video-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
