:root {
  --navy: #08131c;
  --deep: #0c1b25;
  --ink: #e3eae9;
  --muted: #98acb3;
  --paper: #08131c;
  --mint: #a7ead8;
  --line: #a7c2c220;
  --font: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid #49b69c;
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: #a7ead8;
  color: #071a25;
}
.wrap {
  width: min(1280px, 88%);
  margin: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 15px;
  background: var(--mint);
}
.skip:focus {
  top: 10px;
}
.header {
  height: 94px;
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 88%;
  max-width: 1280px;
  margin: auto;
  color: #eef5f4;
  border-bottom: 1px solid #d7eeed24;
}
.brand {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 24px;
  letter-spacing: -0.8px;
  font-weight: 500;
}
.brand b {
  font-weight: 400;
  color: #a7ead8;
}
.brand-symbol {
  width: 25px;
  height: 26px;
  display: flex;
  gap: 3px;
  align-items: center;
  margin-right: 3px;
  transform: rotate(-20deg);
}
.brand-symbol i {
  width: 5px;
  height: 14px;
  border: 1.5px solid #a7ead8;
  border-radius: 10px;
}
.brand-symbol i:nth-child(2) {
  height: 26px;
}
.brand-symbol i:nth-child(3) {
  height: 20px;
}
.header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  color: #d8e1df;
}
.header nav a:hover {
  color: var(--mint);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 13px;
}
.header-right button {
  padding: 12px;
}
.header-cta {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-cta > span:last-child {
  font-size: 24px;
  color: var(--mint);
}
.hero {
  position: relative;
  isolation: isolate;
  color: #f2f5f2;
  background: var(--navy);
  min-height: 820px;
  height: min(940px, 100svh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #16282c;
}
.hero-media video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.64);
  opacity: 0.56;
  transform: scale(1.03) translate3d(0, calc(var(--scroll, 0) * 80px), 0);
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #061b25f5 0%,
      #0a2230d9 35%,
      #0c243b70 74%,
      #05192360
    ),
    linear-gradient(0deg, #071a25 0%, transparent 45%, #091c2933);
}
.hero-horizon {
  position: absolute;
  z-index: -1;
  right: -15%;
  top: 4%;
  width: 100%;
  height: 110%;
  background: radial-gradient(ellipse at center, #67c4c71a, transparent 64%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 5.5%;
  align-items: center;
  flex: 1;
  padding: 148px 0 74px;
}
.hero-copy {
  min-width: 0;
  max-width: 560px;
  position: relative;
  z-index: 2;
  transform: translate3d(0, calc(var(--scroll, 0) * -26px), 0);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  letter-spacing: 1.6px;
  color: #b0c9ca;
}
.live-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px #8ce8d166;
}
.hero h1 {
  width: max-content;
  white-space: nowrap;
  font-size: clamp(40px, 4.35vw, 64px);
  line-height: 1.26;
  letter-spacing: -1.8px;
  font-weight: 500;
  margin: 25px 0 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--mint);
  font-weight: 400;
}
.hero-lead {
  font-size: 21px;
  line-height: 1.5;
  color: #f0f4ef;
  margin-bottom: 14px;
}
.hero-description {
  font-size: 14px;
  line-height: 1.95;
  color: #b7c9cd;
  max-width: 470px;
}
.hero-actions {
  display: flex;
  gap: 29px;
  align-items: center;
  margin-top: 29px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 17px 23px;
  border-radius: 5px;
  font-size: 14px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #8ce8d120;
}
.button.primary {
  color: #0b343c;
  background: var(--mint);
}
.button > span:last-child {
  font-size: 21px;
}
.text-link {
  display: flex;
  gap: 17px;
  align-items: center;
  font-size: 13px;
  color: #dce8e7;
}
.text-link > span:last-child {
  color: var(--mint);
}
.hero-origin {
  font-size: 11px;
  color: #a5bcc3;
  margin-top: 27px;
}
.hero-foot {
  height: 55px;
  border-top: 1px solid #a0cecf26;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #819fa8;
  position: relative;
}
.hero-foot a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 1px;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 22px;
  background: linear-gradient(#a7ead8, transparent);
  animation: scroll-drift 2s ease-in-out infinite;
}
.hero-art {
  position: relative;
  perspective: 1200px;
  min-width: 0;
  padding: 60px 0;
  isolation: isolate;
  transform: translate3d(0, calc(var(--scroll, 0) * 30px), 0);
}
.intro {
  padding: 105px 0 57px;
}
.eyebrow.dark {
  color: #9db8b6;
  font-size: 10px;
}
.intro h2 {
  font-size: clamp(29px, 3vw, 41px);
  font-weight: 500;
  letter-spacing: -1.2px;
  margin: 20px 0 16px;
}
.intro p {
  font-size: 15px;
  color: #98acb3;
  line-height: 1.8;
}
.scene-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #08131ced;
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scene-nav > .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.scene-nav a {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  font-size: 12px;
  color: #a0b3b9;
  position: relative;
  transition: color 0.3s;
}
.scene-nav a span:first-child {
  font-size: 9px;
  color: #708c97;
}
.scene-nav a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 32px;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.scene-nav a[aria-current] {
  color: var(--mint);
}
.scene-nav a[aria-current]:after {
  transform: scaleX(1);
}
.scene {
  position: relative;
  padding: 95px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 65px;
}
.scene-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 7.5%;
  align-items: center;
}
.scene-discover .scene-layout,
.scene-market .scene-layout {
  grid-template-columns: 1.17fr 0.83fr;
}
.scene-discover .scene-copy,
.scene-market .scene-copy {
  grid-column: 2;
  grid-row: 1;
}
.scene-discover .scene-visual,
.scene-market .scene-visual {
  grid-column: 1;
  grid-row: 1;
}
.scene-discover,
.scene-market {
  background: #0b1923;
}
.scene-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #91abb1;
  font-size: 9px;
  letter-spacing: 1.5px;
}
.scene-kicker > span:first-child {
  font-size: 13px;
  color: #8bbcaf;
}
.scene-copy > h2 {
  font-size: 13px;
  color: #a7d9cc;
  font-weight: 500;
  margin: 23px 0 13px;
}
.scene-copy h3 {
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.7px;
  white-space: pre-line;
  margin-bottom: 22px;
}
.scene-copy > p {
  font-size: 14px;
  line-height: 1.95;
  color: #b5c4c8;
  margin-top: 11px;
}
.scene-copy > p.scene-detail {
  color: #8fa5ae;
  font-size: 13px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0;
}
.tags span {
  font-size: 10px;
  color: #adc5c3;
  border: 1px solid #9ab8b32b;
  border-radius: 4px;
  padding: 6px 9px;
}
.scene-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  color: #a7ead8;
  padding: 10px 0;
  border-bottom: 1px solid #9ab8ad55;
}
.scene-link > span:last-child {
  font-size: 21px;
  transition: transform 0.3s;
}
.scene-link:hover > span:last-child {
  transform: translate(3px, -3px);
}
.scene-visual {
  min-width: 0;
  position: relative;
  background: #101f2a;
  border: 1px solid #99bbc62b;
  border-radius: 8px;
  padding: 22px 23px 18px;
  box-shadow: 0 27px 45px -30px #0009;
  isolation: isolate;
  overflow: hidden;
}
.scene-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: none;
  background-size: 18px 18px;
}
.visual-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #7fabae;
}
.scene-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 720/500;
  animation: illustration-float 8s ease-in-out infinite;
}
.scene-visual figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7299a1;
  font-size: 8px;
  letter-spacing: 1px;
}
.visual-line {
  flex: 1;
  height: 1px;
  background: #55838930;
}
.scene-visual .live-dot {
  width: 4px;
  height: 4px;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js-motion .reveal:not(.visible) {
  opacity: 1;
  transform: translate3d(0, 32px, 0);
}
.js-motion .reveal {
  transition:
    opacity 0.85s var(--ease),
    transform 1s var(--ease);
}
.scene-visual.reveal {
  transition-delay: 0.12s;
}
.closing {
  background: var(--navy);
  color: #f0f5f1;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.closing:before {
  content: "";
  width: 500px;
  height: 500px;
  border: 1px solid #88bcb024;
  border-radius: 50%;
  position: absolute;
  right: 15%;
  top: -190px;
  pointer-events: none;
}
.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}
.closing h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -1px;
  margin-top: 17px;
  white-space: pre-line;
}
.closing .button {
  white-space: nowrap;
}
footer {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 38px 0 100px;
  font-size: 10px;
  color: #84938d;
}
footer .brand {
  font-size: 18px;
  margin-right: auto;
  color: #e3eae9;
}
footer .brand b {
  color: #a7ead8;
}
.media-controls {
  position: fixed;
  right: 24px;
  bottom: max(22px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  z-index: 100;
  display: flex;
  align-items: center;
  background: #092330ed;
  border: 1px solid #c4e9e180;
  border-radius: 50px;
  box-shadow: 0 6px 22px #02182128;
  color: #f0faf7;
  padding: 3px;
  backdrop-filter: blur(16px);
}
.media-controls button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.media-controls button:focus-visible {
  outline: 2px solid #a7ead8;
  outline-offset: 2px;
  border-radius: 50px;
}
.media-controls button:hover {
  color: #a7ead8;
}
.control-divider {
  height: 15px;
  width: 1px;
  background: #91bcb431;
}
.equalizer {
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 14px;
}
.equalizer i {
  width: 2px;
  height: 3px;
  background: #a7ead8;
  border-radius: 2px;
  transform-origin: center;
}
.equalizer i:nth-child(2) {
  height: 9px;
}
.equalizer i:nth-child(3) {
  height: 13px;
}
.equalizer i:nth-child(4) {
  height: 6px;
}
#sound-toggle[aria-pressed="true"] .equalizer i {
  animation: sound-wave 0.9s ease-in-out infinite alternate;
}
.equalizer i:nth-child(2) {
  animation-delay: -0.4s !important;
}
.equalizer i:nth-child(3) {
  animation-delay: -0.7s !important;
}
.equalizer i:nth-child(4) {
  animation-delay: -0.2s !important;
}
.motion-symbol {
  font-size: 11px;
  color: #9fdac9;
}
.noscript {
  padding: 20px;
  text-align: center;
  font-size: 12px;
}
@keyframes illustration-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}
@keyframes scroll-drift {
  0%,
  100% {
    transform: translateY(-3px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}
@keyframes sound-wave {
  to {
    transform: scaleY(0.3);
  }
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
}
.motion-paused .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.motion-paused .hero-media video,
.motion-paused .hero-copy,
.motion-paused .hero-art {
  transform: none;
}
.motion-paused {
  scroll-behavior: auto;
}
html[lang="en"] .hero h1 {
  font-size: clamp(35px, 3.45vw, 50px);
  letter-spacing: -1.5px;
}
html[lang="en"] .hero-description {
  font-size: 13px;
}
html[lang="en"] .hero-lead {
  font-size: 18px;
}
html[lang="en"] .scene-copy h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}
@media (min-width: 1500px) {
  .hero-layout {
    gap: 8%;
  }
  .hero-art {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 1050px) {
  .wrap,
  .header {
    width: 89%;
  }
  .hero {
    height: auto;
    min-height: 780px;
  }
  .hero-layout {
    gap: 4%;
    grid-template-columns: 1fr 1fr;
    padding: 165px 0 90px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    gap: 19px;
  }
  .button {
    gap: 26px;
  }
  .scene {
    padding: 80px 0;
  }
  .scene-layout {
    gap: 5%;
  }
  .scene-visual {
    padding: 18px 15px;
  }
  .scene-copy h3 {
    font-size: 28px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }
  .header {
    height: 77px;
  }
  .header nav {
    display: none;
  }
  .header-right {
    gap: 13px;
  }
  .header-cta {
    gap: 12px;
    font-size: 11px;
  }
  .brand {
    font-size: 22px;
  }
  .hero {
    min-height: 0;
    height: auto;
  }
  .hero-media:after {
    background:
      linear-gradient(180deg, #071e2ae6, #092632ac 60%, #071a25 100%),
      linear-gradient(90deg, #071a2580, transparent);
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 43px;
    padding: 135px 0 37px;
  }
  .hero-copy {
    max-width: 570px;
  }
  .hero h1 {
    font-size: clamp(21px, 6.5vw, 48px);
    margin: 24px 0 20px;
    letter-spacing: -1.2px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.95;
    max-width: 470px;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .hero-origin {
    font-size: 10px;
    margin-top: 21px;
  }
  .hero-art {
    width: 94%;
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 0 65px;
  }
  .hero-foot {
    font-size: 7px;
    height: 52px;
    letter-spacing: 0.6px;
  }
  .hero-foot a {
    font-size: 9px;
    gap: 13px;
  }
  .hero-foot > a > span:first-child {
    display: none;
  }
  .intro {
    padding: 65px 0 34px;
  }
  .intro h2 {
    font-size: 30px;
    line-height: 1.5;
    margin-top: 15px;
  }
  .intro p {
    font-size: 13px;
  }
  .scene-nav a {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 10px;
    padding: 14px 0;
    line-height: 1.3;
  }
  .scene-nav a span:first-child {
    font-size: 8px;
  }
  .scene-nav a:after {
    right: 15px;
  }
  .scene {
    padding: 50px 0 58px;
    scroll-margin-top: 74px;
  }
  .scene-layout,
  .scene-discover .scene-layout,
  .scene-market .scene-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .scene-copy {
    max-width: 580px;
  }
  .scene-discover .scene-copy,
  .scene-market .scene-copy,
  .scene-discover .scene-visual,
  .scene-market .scene-visual {
    grid-column: auto;
    grid-row: auto;
  }
  .scene-copy > h2 {
    margin-top: 20px;
  }
  .scene-copy h3 {
    font-size: 28px;
    line-height: 1.48;
    margin-bottom: 18px;
  }
  .scene-copy > p {
    font-size: 14px;
  }
  .scene-copy > p.scene-detail {
    font-size: 13px;
  }
  .tags {
    margin: 20px 0 12px;
  }
  .scene-visual {
    padding: 18px 12px 15px;
    border-radius: 10px;
  }
  .visual-label {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .scene-visual figcaption {
    font-size: 7px;
  }
  .closing {
    padding: 57px 0;
  }
  .closing-inner {
    display: block;
  }
  .closing h2 {
    font-size: 29px;
    margin-bottom: 27px;
  }
  .closing .button {
    font-size: 12px;
    padding: 15px 20px;
  }
  footer {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 29px;
    font-size: 9px;
  }
  footer .brand {
    width: 100%;
    margin: 0;
    font-size: 19px;
  }
  .media-controls {
    right: max(15px, env(safe-area-inset-right, 0px));
    bottom: max(15px, calc(env(safe-area-inset-bottom, 0px) + 10px));
  }
  .media-controls button {
    padding: 10px 13px;
    font-size: 12px;
  }
  html[lang="en"] .hero h1 {
    font-size: clamp(20px, 5.5vw, 40px);
  }
  html[lang="en"] .hero-lead {
    font-size: 17px;
  }
  html[lang="en"] .scene-nav a {
    font-size: 9px;
  }
  html[lang="en"] .scene-copy h3 {
    font-size: 28px;
  }
  .reveal {
    transition-delay: 0 !important;
  }
}
@media (max-width: 370px) {
  .header-right {
    gap: 2px;
  }
  .header-cta {
    gap: 8px;
  }
  .brand {
    font-size: 20px;
  }
  .hero-layout {
    padding-top: 118px;
  }
  .hero h1 {
    font-size: 21px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-art {
    width: 100%;
  }
  .scene-nav a {
    font-size: 9px;
  }
  .scene-copy h3 {
    font-size: 26px;
  }
  .hero-origin {
    font-size: 9px;
  }
  .intro h2 {
    font-size: 26px;
  }
  .hero-actions {
    gap: 18px;
  }
  .text-link {
    font-size: 11px;
  }
  .button {
    font-size: 12px;
    padding: 15px 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-media video,
  .hero-copy,
  .hero-art {
    transform: none !important;
  }
}
.scene-visual.offscreen img {
  animation-play-state: paused;
}
.illustration-button {
  display: block;
  width: 100%;
  padding: 0;
  text-align: inherit;
  cursor: zoom-in;
}
.illustration-button:hover img {
  filter: brightness(1.07);
}
dialog {
  width: min(1440px, 94vw);
  border: 1px solid #6c9993;
  border-radius: 12px;
  background: #0b2632;
  color: #e7f2ee;
  padding: 20px;
  max-height: 90svh;
  box-shadow: 0 30px 100px #0008;
}
dialog::backdrop {
  background: #061821db;
  backdrop-filter: blur(8px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.dialog-top button {
  font-size: 30px;
  line-height: 1;
  padding: 4px 8px;
}
.dialog-scroll {
  overflow: auto;
  margin-top: 15px;
}
.dialog-scroll img {
  width: 100%;
  min-width: 660px;
}
.dialog-hint {
  font-size: 11px;
  color: #8db4ae;
  margin: 10px 0 0;
  display: none;
}
@media (max-width: 760px) {
  dialog {
    padding: 14px;
  }
  .dialog-hint {
    display: block;
  }
}
.hero-actions .button {
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    gap: 20px;
    padding-left: 19px;
    padding-right: 19px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 9px;
    line-height: 1.5;
  }
}
@media (max-width: 370px) {
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
}
/* Cinematic cover: leave the flight path visible on the right. */
.hero-media video {
  opacity: 1;
  filter: saturate(0.9);
  object-position: 62% center;
}
.hero-media:after {
  background:
    linear-gradient(
      90deg,
      #07111bee 0%,
      #07111bca 29%,
      #07111b55 56%,
      #07111b0d 82%
    ),
    linear-gradient(0deg, #071a25 0%, transparent 28%, #07111b55 100%);
}
.hero-horizon {
  display: none;
}
.hero-layout {
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  padding-top: 155px;
}
.hero-copy {
  max-width: 540px;
}
.hero-art.film-aside {
  align-self: end;
  display: flex;
  justify-content: flex-end;
  padding: 0 0 40px;
  min-height: 0;
  perspective: none;
  transform: none;
}
.hero-live-preview {
  display: block;
  width: 240px;
  padding: 19px 20px;
  background: #07162287;
  border-top: 1px solid #aacbc95c;
  border-bottom: 1px solid #aacbc92e;
  backdrop-filter: blur(12px);
  transition:
    background 0.3s,
    transform 0.3s;
}
.hero-live-preview:hover {
  background: #0a233bd9;
  transform: translateY(-3px);
}
.hero-live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: #a8c6c4;
  letter-spacing: 1px;
}
.hero-live-wave {
  margin-left: auto;
  color: #9cdcc9;
  font-size: 12px;
}
.hero-live-preview strong {
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin: 16px 0 8px;
  color: #e4eee9;
}
.hero-live-desc {
  font-size: 10px;
  color: #9db3bb;
  line-height: 1.7;
  display: block;
}
.hero-live-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #a7ead8;
  margin-top: 20px;
}
.hero-live-action > span:last-child {
  font-size: 20px;
}
@media (max-width: 1050px) {
  .hero-layout {
    gap: 6%;
  }
  .hero-art.film-aside {
    padding-bottom: 20px;
  }
  .hero-live-preview {
    width: 220px;
  }
}
@media (max-width: 760px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 130px;
    gap: 120px;
    padding-bottom: 30px;
  }
  .hero-art.film-aside {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 0;
  }
  .hero-live-preview {
    width: 225px;
  }
  .hero-media video {
    object-position: 68% center;
    filter: saturate(0.9);
  }
  .hero-media:after {
    background:
      linear-gradient(
        180deg,
        #06121bd9 0%,
        #06121bb0 42%,
        #06121b20 69%,
        #071a25 100%
      ),
      linear-gradient(90deg, #07111b66, transparent 75%);
  }
  .hero-copy {
    transform: none;
  }
  .hero {
    min-height: 920px;
  }
}
@media (max-width: 370px) {
  .hero-layout {
    padding-top: 112px;
    gap: 80px;
  }
  .hero {
    min-height: 900px;
  }
}

/* Keep both original product screens and the explanatory workflow illustrations. */
.visual-tabs {
  display: flex;
  gap: 6px;
  margin: 15px 0 10px;
}
.visual-tab {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #8eb0b3;
  font-size: 11px;
  transition:
    color 0.2s,
    background 0.2s;
}
.visual-tab[aria-pressed="true"] {
  color: #e2f5ed;
  border-color: #9acdbc44;
  background: #9acdbc12;
}
.visual-tab:hover {
  color: #e2f5ed;
}
.scene-visual .illustration-button {
  aspect-ratio: 720/500;
  display: grid;
  place-items: center;
}
.scene-visual .illustration-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scene-visual[data-visual-mode="product"] img {
  animation: none;
  aspect-ratio: auto;
  height: auto;
}
.scene-visual[data-visual-mode="product"] .illustration-button {
  aspect-ratio: auto;
  margin-top: 18px;
}
.scene-visual figcaption {
  margin-top: 12px;
}
