:root {
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --surface: #ffffff;
  --surface-muted: #f6f8fb;
  --ink: #0f172a;
  --muted: #475569;
  --faint: #64748b;
  --line: rgba(15, 23, 42, 0.06);
  --line-strong: rgba(15, 23, 42, 0.1);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --blue: #1d4ed8;
  --blue-deep: #1e40af;
  --sky: #0ea5e9;
  --cyan: #06b6d4;
  --orange: #f97316;
  --green: #16a36a;
  --radius-lg: 8px;
  --radius-md: 4px;
  --radius-sm: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
  --shadow-strong: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.065);
  --hero-wash-a: rgba(219, 235, 255, 0.78);
  --hero-wash-b: rgba(239, 247, 255, 0.64);
  --scene-primary: rgba(29, 78, 216, 0.24);
  --scene-secondary: rgba(14, 165, 233, 0.22);
  --scene-third: rgba(99, 102, 241, 0.14);
  --disc-x: 66%;
  --disc-y: 27%;
  --disc-size: 430px;
  --sail-x: 66%;
  --sail-y: 11%;
  --sail-rotate: -17deg;
  --veil-x: 72%;
  --veil-y: 20%;
  --veil-rotate: 16deg;
  --font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-hero-bg="1"] {
  --hero-wash-a: rgba(224, 239, 255, 0.82);
  --hero-wash-b: rgba(235, 247, 252, 0.66);
  --scene-primary: rgba(30, 64, 175, 0.22);
  --scene-secondary: rgba(6, 182, 212, 0.2);
  --scene-third: rgba(124, 92, 255, 0.12);
  --disc-x: 70%;
  --disc-y: 26%;
  --disc-size: 470px;
  --sail-x: 62%;
  --sail-y: 14%;
  --sail-rotate: -8deg;
  --veil-x: 82%;
  --veil-y: 17%;
  --veil-rotate: 22deg;
}

body[data-hero-bg="2"] {
  --hero-wash-a: rgba(235, 241, 255, 0.82);
  --hero-wash-b: rgba(226, 249, 253, 0.54);
  --scene-primary: rgba(14, 165, 233, 0.22);
  --scene-secondary: rgba(29, 78, 216, 0.22);
  --scene-third: rgba(99, 102, 241, 0.13);
  --disc-x: 63%;
  --disc-y: 30%;
  --disc-size: 410px;
  --sail-x: 69%;
  --sail-y: 8%;
  --sail-rotate: -24deg;
  --veil-x: 69%;
  --veil-y: 30%;
  --veil-rotate: 10deg;
}

body[data-hero-bg="3"] {
  --hero-wash-a: rgba(228, 242, 255, 0.76);
  --hero-wash-b: rgba(242, 246, 255, 0.66);
  --scene-primary: rgba(37, 99, 235, 0.24);
  --scene-secondary: rgba(56, 189, 248, 0.2);
  --scene-third: rgba(6, 182, 212, 0.13);
  --disc-x: 73%;
  --disc-y: 20%;
  --disc-size: 450px;
  --sail-x: 64%;
  --sail-y: 18%;
  --sail-rotate: -31deg;
  --veil-x: 75%;
  --veil-y: 28%;
  --veil-rotate: 6deg;
}

body[data-hero-bg="4"] {
  --hero-wash-a: rgba(226, 244, 252, 0.78);
  --hero-wash-b: rgba(237, 242, 255, 0.64);
  --scene-primary: rgba(14, 165, 233, 0.2);
  --scene-secondary: rgba(30, 64, 175, 0.24);
  --scene-third: rgba(99, 102, 241, 0.12);
  --disc-x: 68%;
  --disc-y: 18%;
  --disc-size: 500px;
  --sail-x: 72%;
  --sail-y: 15%;
  --sail-rotate: -12deg;
  --veil-x: 64%;
  --veil-y: 25%;
  --veil-rotate: 18deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg);
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.22);
  outline-offset: 3px;
}

button {
  font: inherit;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  animation: bgIn 360ms var(--ease) 40ms forwards;
  pointer-events: none;
  transform: translateZ(0);
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.72) 0%, rgba(248, 250, 252, 0.38) 44%, rgba(248, 250, 252, 0.04) 100%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.48) 0%, rgba(248, 250, 252, 0.08) 42%, rgba(248, 250, 252, 0.58) 100%);
  opacity: 0.18;
  transition: opacity 720ms var(--ease) 420ms;
  pointer-events: none;
}

body.is-page-ready .page-bg::before {
  opacity: 1;
}

.motion-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #e7f0ff;
  transform: translateZ(0);
  will-change: opacity;
}

.motion-bg__image,
.motion-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-bg__image {
  background-position: 72% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.motion-bg__video {
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.96;
  pointer-events: none;
}

.motion-bg.is-static .motion-bg__video {
  display: none;
}

.motion-bg[data-motion-index="0"] .motion-bg__image,
.motion-bg[data-motion-index="0"] .motion-bg__video,
.motion-bg[data-motion-index="3"] .motion-bg__image,
.motion-bg[data-motion-index="3"] .motion-bg__video {
  background-position: 76% center;
  object-position: 76% center;
}

.motion-bg[data-motion-index="1"] .motion-bg__image,
.motion-bg[data-motion-index="1"] .motion-bg__video,
.motion-bg[data-motion-index="2"] .motion-bg__image,
.motion-bg[data-motion-index="2"] .motion-bg__video {
  background-position: 70% center;
  object-position: 70% center;
}

.motion-bg[data-motion-index="4"] .motion-bg__image,
.motion-bg[data-motion-index="4"] .motion-bg__video {
  background-position: 74% center;
  object-position: 74% center;
}

.aura,
.mesh-layer,
.glass-orb,
.fluid-ribbon,
.cloud-scene,
.cloud-orbit {
  display: none;
}

.mesh-layer {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.03) 1px, transparent 1px),
    radial-gradient(circle, rgba(14, 165, 233, 0.038) 1px, transparent 1.4px);
  background-size: 64px 64px, 64px 64px, 22px 22px;
  mask-image: linear-gradient(to bottom, black 0%, black 42%, transparent 82%);
}

.aura {
  position: absolute;
  width: 46vw;
  min-width: 420px;
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.38;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: auraDrift 24s var(--ease) infinite alternate;
}

.aura-blue {
  top: -16%;
  left: -10%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.16), transparent 68%);
}

.aura-violet {
  top: 8%;
  right: -12%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 68%);
  animation-delay: -3s;
}

.aura-cyan {
  bottom: 18%;
  left: 34%;
  width: 34vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
  animation-delay: -6s;
}

.glass-orb {
  position: absolute;
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(208, 222, 245, 0.08));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.55), 0 20px 80px rgba(15, 23, 42, 0.05);
  opacity: 0.08;
}

.orb-one {
  width: 140px;
  height: 140px;
  right: 14%;
  top: 18%;
  animation: floatSoft 28s var(--ease) infinite alternate;
}

.orb-two {
  width: 84px;
  height: 84px;
  left: 8%;
  top: 48%;
  animation: floatSoft 32s var(--ease) infinite alternate-reverse;
}

.fluid-ribbon {
  position: absolute;
  width: 480px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.055), rgba(29, 78, 216, 0.045), transparent);
  transform: rotate(-18deg);
  opacity: 0.12;
}

.ribbon-one {
  right: -8%;
  top: 30%;
}

.ribbon-two {
  left: -16%;
  top: 64%;
  transform: rotate(16deg);
  opacity: 0.22;
}

.cloud-scene,
.cloud-orbit {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.cloud-disc {
  left: var(--disc-x);
  top: var(--disc-y);
  width: var(--disc-size);
  height: var(--disc-size);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.72), transparent 26%),
    radial-gradient(circle at 50% 50%, var(--scene-primary), rgba(255, 255, 255, 0.06) 62%, transparent 72%);
  opacity: 0.78;
  transform: translate3d(-50%, -50%, 0);
  animation: cloudDiscDrift 28s var(--ease) infinite alternate;
}

.cloud-sail {
  left: var(--sail-x);
  top: var(--sail-y);
  width: min(42vw, 560px);
  min-width: 360px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 56% 44% 54% 46% / 18% 52% 48% 82%;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08) 38%, var(--scene-primary) 74%, var(--scene-secondary)),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.66), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  opacity: 0.9;
  transform: rotate(var(--sail-rotate)) translate3d(0, 0, 0);
  animation: cloudSailDrift 26s var(--ease) infinite alternate;
}

.cloud-veil {
  left: var(--veil-x);
  top: var(--veil-y);
  width: min(44vw, 620px);
  min-width: 380px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: linear-gradient(92deg, transparent 4%, rgba(255, 255, 255, 0.48), var(--scene-third), transparent 94%);
  opacity: 0.74;
  transform: rotate(var(--veil-rotate)) translate3d(0, 0, 0);
  animation: cloudVeilDrift 22s var(--ease) infinite alternate;
}

.cloud-orbit {
  width: min(42vw, 620px);
  min-width: 380px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top-color: rgba(29, 78, 216, 0.34);
  border-left-color: rgba(14, 165, 233, 0.28);
  border-radius: 50%;
  opacity: 0.86;
}

.orbit-one {
  right: 3%;
  top: 22%;
  transform: rotate(-18deg);
  animation: orbitDriftOne 30s var(--ease) infinite alternate;
}

.orbit-two {
  right: 10%;
  top: 34%;
  width: min(50vw, 720px);
  opacity: 0.5;
  transform: rotate(-8deg);
  animation: orbitDriftTwo 24s var(--ease) infinite alternate;
}

.orbit-three {
  right: -10%;
  top: 16%;
  width: min(28vw, 400px);
  height: 86px;
  opacity: 0.42;
  transform: rotate(-34deg);
  animation: orbitDriftThree 32s var(--ease) infinite alternate;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  height: 60px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  pointer-events: auto;
  transition: height 320ms var(--ease), background-color 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}

main,
.site-footer,
.floating-actions {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  height: 56px;
  border-color: rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding-left: clamp(24px, 3.1vw, 40px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  animation: navIn 440ms var(--ease) 140ms forwards;
  transition:
    min-height 360ms var(--ease),
    padding 360ms var(--ease);
}

.site-header.is-scrolled .nav-shell {
  width: 100%;
  min-height: 100%;
  padding-left: clamp(24px, 3.1vw, 40px);
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.site-header.is-scrolled .nav-action {
  min-height: 40px;
  padding-inline: 15px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(135deg, rgba(29, 78, 216, 0.92), rgba(14, 165, 233, 0.72));
  box-shadow: 0 8px 18px rgba(30, 64, 175, 0.14);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px 8px auto 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(34deg);
  transform-origin: center;
}

.brand-mark::after {
  inset: auto 8px 9px 8px;
  transform: rotate(-34deg);
}

.brand-node {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.node-a {
  left: 8px;
  top: 9px;
}

.node-b {
  right: 8px;
  top: 13px;
}

.node-c {
  left: 14px;
  bottom: 8px;
}

.brand-text {
  font-size: 15px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.4vw, 28px);
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 60px;
  padding: 0 1px;
  opacity: 1;
  transition: color 180ms var(--ease), opacity 180ms var(--ease), transform 180ms var(--ease);
}

.nav-links a.has-menu::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.82;
}

.nav-links a:hover {
  color: var(--blue);
  opacity: 1;
  transform: none;
}

.nav-links .is-active {
  color: #006eff;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}

.nav-action {
  align-self: center;
  min-height: 42px;
  padding: 0 22px;
  color: #ffffff;
  background: #006eff;
  box-shadow: none;
  font-size: 14px;
}

.button {
  justify-content: space-between;
  min-width: 180px;
  padding: 0 24px;
  min-height: 48px;
  font-size: 15px;
}

.button::after,
.nav-action::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button-primary {
  color: #ffffff;
  background: #006eff;
  box-shadow: none;
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(0, 110, 255, 0.24);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.button:hover,
.nav-action:hover {
  background: #0052d9;
  border-color: #0052d9;
  color: #ffffff;
}

.button-secondary:hover {
  background: rgba(0, 110, 255, 0.06);
  border-color: rgba(0, 110, 255, 0.42);
  color: #0052d9;
}

.nav-right {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-self: end;
  min-width: max-content;
}

.nav-mini {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 14px;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #ffffff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 24px;
  width: min(420px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(0, -10px, 0) scale(0.98);
  visibility: hidden;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 650;
}

.mobile-menu a:hover {
  background: var(--surface-muted);
}

.section-shell {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 100vh;
  padding: clamp(120px, 13vh, 150px) 0 clamp(56px, 6vw, 72px);
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.64) 0%, rgba(248, 250, 252, 0.28) 48%, rgba(248, 250, 252, 0.02) 100%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.26) 0%, rgba(248, 250, 252, 0.04) 52%, rgba(248, 250, 252, 0.46) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.eyebrow,
.section-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0, 110, 255, 0.22);
  border-radius: var(--radius-sm);
  color: var(--blue-deep);
  background: rgba(0, 110, 255, 0.045);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 13px;
  font-weight: 700;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero .hero-actions .button {
  min-width: 256px;
}

.support-note {
  margin: 18px 0 0;
  color: oklch(52% 0.032 255);
  font-size: 14px;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 620ms var(--ease) var(--reveal-delay, 0ms), transform 620ms var(--ease) var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: revealUp 500ms var(--ease) forwards;
}

.reveal-1 {
  animation-delay: 270ms;
}

.reveal-2 {
  animation-delay: 380ms;
}

.reveal-3 {
  animation-delay: 500ms;
}

.reveal-4 {
  animation: none;
  opacity: 1;
  transform: none;
}

.reveal-5 {
  animation-delay: 760ms;
}

.hero-actions.reveal .button {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: revealUp 480ms var(--ease) forwards;
}

.hero-actions.reveal .button:first-child {
  animation-delay: 620ms;
}

.hero-actions.reveal .button:nth-child(2) {
  animation-delay: 700ms;
}

.reveal-panel {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  animation: panelIn 520ms var(--ease) 660ms forwards;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.glass-panel,
.glass-card,
.feature-card,
.model-grid article,
.model-grid .model-card,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hub-panel {
  position: relative;
  width: min(500px, 100%);
  padding: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hub-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 110, 255, 0.035), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.panel-topline,
.service-list,
.panel-section-title,
.panel-models {
  position: relative;
}

.panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.panel-topline h2 {
  margin-bottom: 5px;
  font-size: 24px;
}

.panel-topline p {
  margin: 0;
  color: var(--faint);
  font-size: 14px;
}

.panel-meta {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.3fr 0.82fr;
  gap: 8px;
  margin-bottom: 12px;
}

.panel-meta span {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 720;
}

.panel-meta b {
  display: block;
  margin-bottom: 2px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  width: max-content;
  min-width: max-content;
  padding: 6px 9px;
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: var(--radius-sm);
  color: var(--green);
  background: rgba(22, 163, 74, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.service-row strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 14px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-row em {
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.service-row .status-available {
  color: var(--green);
}

.service-dot {
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
}

.service-dot.alt {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(29, 78, 216, 0.12);
}

.panel-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.panel-section-title {
  display: flex;
  justify-content: space-between;
  margin: 0 0 8px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
  font-weight: 850;
}

.panel-models span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.panel-models em {
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.panel-models .status-available,
.model-grid .status-available {
  color: var(--green);
}

.model-logo {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #111827;
  background: #ffffff;
  box-shadow: none;
}

.model-logo img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.floating-model {
  position: absolute;
  display: none;
  z-index: 2;
  opacity: 0;
  animation: iconFloatIn 300ms var(--ease) 940ms forwards, modelDrift 9s var(--ease) 1180ms infinite alternate;
}

.floating-model .model-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  opacity: 0.42;
}

.floating-model .model-logo img {
  width: 25px;
  height: 25px;
}

.model-float-one {
  top: 64px;
  left: -24px;
}

.model-float-two {
  top: 78px;
  right: 8px;
  animation-delay: 990ms, 1220ms;
}

.model-float-three {
  bottom: 56px;
  left: -28px;
  animation-delay: 1040ms, 1260ms;
}

.model-float-four {
  left: 50%;
  top: 18px;
  animation-delay: 1080ms, 1300ms;
}

.model-float-five {
  right: 18%;
  bottom: 34px;
  animation-delay: 1120ms, 1340ms;
}

.model-float-six {
  right: -20px;
  top: 48%;
  animation-delay: 1160ms, 1380ms;
}

.logo-belt {
  margin: 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #ffffff;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  contain: layout paint;
}

.belt-track {
  display: flex;
  width: 100%;
  animation: beltMove 34s linear infinite;
}

.belt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 7px;
}

.belt-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.belt-row .model-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
}

.belt-row .model-logo img {
  width: 18px;
  height: 18px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(30px, 5vw, 50px);
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.cta-panel h2 {
  margin: 14px 0 14px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.feature-copy p,
.cta-panel p {
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17px);
}

.entry-section,
.models-section,
.feature-section,
.scenes-section,
.bottom-cta {
  padding: clamp(60px, 7vw, 88px) 0;
  clip-path: inset(0 -100vmax);
}

.entry-section {
  background: rgba(241, 245, 249, 0.78);
  box-shadow: 0 0 0 100vmax rgba(241, 245, 249, 0.78);
}

.models-section,
.scenes-section {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.78);
}

.feature-section {
  background: rgba(246, 248, 251, 0.8);
  box-shadow: 0 0 0 100vmax rgba(246, 248, 251, 0.8);
}

.platform-section {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.82);
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-width: 0;
  min-height: 520px;
  padding: clamp(20px, 2.1vw, 26px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(25px, 2.4vw, 32px);
}

.card-copy p:not(.card-kicker) {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 22px;
}

.tag-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--surface-muted);
  font-size: 12px;
  font-weight: 720;
}

.mockup {
  min-height: 252px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  box-shadow: none;
  overflow: hidden;
}

.chat-mockup {
  display: grid;
  grid-template-columns: 34% 1fr;
}

.chat-mockup aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: #eef4fb;
}

.mock-title,
.model-switch span,
.console-head span {
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
}

.chat-mockup aside b {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.model-switch {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.model-switch strong {
  color: var(--blue);
  font-size: 13px;
}

.bubble {
  max-width: 92%;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: 13px;
}

.bubble.assistant {
  background: #ffffff;
}

.bubble.user {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.96);
  background: var(--blue-deep);
}

.input-bar {
  margin-top: auto;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--faint);
  background: #ffffff;
  font-size: 13px;
}

.console-mockup {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-head strong {
  color: var(--ink);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.metric-row span {
  min-width: 0;
  padding: 10px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
}

.metric-row b {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.request-list {
  display: grid;
  gap: 8px;
}

.request-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
}

.request-list em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.model-grid article,
.model-grid .model-card {
  min-width: 0;
  min-height: 96px;
  padding: 10px;
  border-radius: var(--radius-md);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease);
}

.model-grid strong,
.model-grid span,
.model-grid p {
  display: block;
}

.model-grid .model-card {
  color: inherit;
}

.model-grid strong {
  margin: 8px 0 2px;
  font-size: 14px;
}

.model-grid p {
  min-height: 18px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.model-grid span {
  width: max-content;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
  font-size: 12px;
  font-weight: 720;
}

.model-grid .status-available {
  background: rgba(22, 163, 74, 0.08);
}

@media (hover: hover) {
  .model-grid article:hover,
  .model-grid .model-card:hover,
  .feature-card:hover,
  .scene-grid article:hover,
  .product-card:hover {
    transform: translate3d(0, -2px, 0);
    border-color: rgba(29, 78, 216, 0.18);
    background: #ffffff;
  }
}

.feature-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.feature-copy {
  position: sticky;
  top: 96px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-card {
  min-height: 144px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease);
}

.feature-card .line-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.feature-card span {
  display: inline-flex;
  vertical-align: middle;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.feature-card h3 {
  margin: 16px 0 7px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.platform-section {
  border-top: 1px solid var(--line);
}

.platform-section .feature-grid {
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.platform-section .feature-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.platform-section .feature-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.platform-section .feature-card:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.bottom-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.scene-grid article {
  min-height: 116px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: none;
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease);
}

.scene-grid h3 {
  margin: 14px 0 6px;
  font-size: 17px;
}

.scene-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.line-icon {
  display: block;
  width: 28px;
  height: 28px;
  color: #006eff;
  border: 1px solid rgba(0, 110, 255, 0.28);
  border-radius: var(--radius-sm);
  background-color: #f8fbff;
  position: relative;
  overflow: hidden;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0;
}

.line-icon::before {
  left: 7px;
  right: 7px;
  top: 9px;
  height: 2px;
}

.line-icon::after {
  left: 7px;
  right: 12px;
  top: 16px;
  height: 2px;
}

.line-icon.icon-models {
  background:
    radial-gradient(circle at 8px 8px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 20px 8px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 14px 20px, currentColor 0 2px, transparent 2.5px),
    linear-gradient(28deg, transparent 44%, rgba(0, 110, 255, 0.52) 45% 49%, transparent 50%),
    linear-gradient(152deg, transparent 44%, rgba(0, 110, 255, 0.52) 45% 49%, transparent 50%),
    #f8fbff;
}

.line-icon.icon-models::before,
.line-icon.icon-models::after {
  content: none;
}

.line-icon.icon-workflow::before {
  left: 7px;
  top: 7px;
  width: 14px;
  height: 2px;
  box-shadow: 0 6px 0 rgba(0, 110, 255, 0.72), 0 12px 0 rgba(0, 110, 255, 0.72);
}

.line-icon.icon-workflow::after {
  left: 6px;
  top: 6px;
  width: 2px;
  height: 2px;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.line-icon.icon-history::before {
  left: 6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-left-color: rgba(0, 110, 255, 0.18);
  border-radius: 50%;
  background: transparent;
}

.line-icon.icon-history::after {
  left: 14px;
  top: 10px;
  width: 2px;
  height: 7px;
  transform: rotate(-40deg);
  transform-origin: bottom center;
  box-shadow: -3px 5px 0 currentColor;
}

.line-icon.icon-prompt::before {
  left: 8px;
  top: 6px;
  width: 11px;
  height: 15px;
  border: 2px solid currentColor;
  border-bottom-color: transparent;
  background: transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 74%, 0 100%);
}

.line-icon.icon-prompt::after {
  left: 11px;
  top: 10px;
  width: 6px;
  height: 2px;
}

.line-icon.icon-gateway {
  background:
    radial-gradient(circle at 8px 14px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 20px 8px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 20px 20px, currentColor 0 2px, transparent 2.5px),
    linear-gradient(25deg, transparent 42%, rgba(0, 110, 255, 0.48) 43% 47%, transparent 48%),
    linear-gradient(155deg, transparent 42%, rgba(0, 110, 255, 0.48) 43% 47%, transparent 48%),
    #f8fbff;
}

.line-icon.icon-gateway::before,
.line-icon.icon-gateway::after {
  content: none;
}

.line-icon.icon-key::before {
  left: 6px;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.line-icon.icon-key::after {
  left: 15px;
  top: 13px;
  width: 9px;
  height: 2px;
  box-shadow: 5px 3px 0 currentColor;
}

.line-icon.icon-quota {
  background:
    linear-gradient(to top, currentColor 0 8px, transparent 8px) 7px 15px / 3px 9px no-repeat,
    linear-gradient(to top, currentColor 0 13px, transparent 13px) 13px 10px / 3px 14px no-repeat,
    linear-gradient(to top, currentColor 0 18px, transparent 18px) 19px 5px / 3px 19px no-repeat,
    #f8fbff;
}

.line-icon.icon-quota::before,
.line-icon.icon-quota::after {
  content: none;
}

.line-icon.icon-system::before {
  left: 6px;
  top: 7px;
  width: 16px;
  height: 13px;
  border: 2px solid currentColor;
  background: transparent;
}

.line-icon.icon-system::after {
  left: 7px;
  top: 12px;
  width: 14px;
  height: 2px;
  box-shadow: 5px -4px 0 -0.5px currentColor, 5px 4px 0 -0.5px currentColor;
}

.line-icon.write::before {
  left: 7px;
  top: 14px;
  width: 15px;
  height: 2px;
  transform: rotate(-35deg);
}

.line-icon.write::after {
  left: 6px;
  top: 19px;
  width: 7px;
  height: 2px;
  background: rgba(0, 110, 255, 0.48);
}

.line-icon.doc::before {
  left: 8px;
  top: 5px;
  width: 12px;
  height: 17px;
  border: 2px solid currentColor;
  background: transparent;
}

.line-icon.doc::after {
  left: 11px;
  top: 12px;
  width: 7px;
  height: 2px;
  box-shadow: 0 5px 0 rgba(0, 110, 255, 0.6);
}

.line-icon.study::before {
  left: 6px;
  top: 8px;
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-top-width: 1px;
  background: transparent;
  clip-path: polygon(0 0, 50% 18%, 100% 0, 100% 100%, 50% 84%, 0 100%);
}

.line-icon.study::after {
  left: 13px;
  top: 10px;
  width: 2px;
  height: 9px;
  background: rgba(0, 110, 255, 0.55);
}

.line-icon.code {
  background:
    linear-gradient(45deg, transparent 0 44%, currentColor 45% 53%, transparent 54%) 7px 9px / 7px 10px no-repeat,
    linear-gradient(-45deg, transparent 0 44%, currentColor 45% 53%, transparent 54%) 14px 9px / 7px 10px no-repeat,
    #f8fbff;
}

.line-icon.code::before,
.line-icon.code::after {
  content: none;
}

.line-icon.tool::before {
  left: 8px;
  top: 7px;
  width: 13px;
  height: 2px;
  transform: rotate(45deg);
}

.line-icon.tool::after {
  left: 7px;
  top: 17px;
  width: 14px;
  height: 2px;
  transform: rotate(-45deg);
}

.line-icon.support::before {
  left: 7px;
  top: 7px;
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: transparent;
}

.line-icon.support::after {
  left: 18px;
  top: 17px;
  width: 5px;
  height: 2px;
  box-shadow: -12px -2px 0 currentColor;
}

.line-icon.create::before {
  left: 13px;
  top: 6px;
  width: 2px;
  height: 16px;
}

.line-icon.create::after {
  left: 6px;
  top: 13px;
  width: 16px;
  height: 2px;
  box-shadow: 0 0 0 0 currentColor;
}

.line-icon.compare {
  background:
    linear-gradient(currentColor, currentColor) 8px 8px / 4px 14px no-repeat,
    linear-gradient(rgba(0, 110, 255, 0.5), rgba(0, 110, 255, 0.5)) 17px 6px / 4px 16px no-repeat,
    #f8fbff;
}

.line-icon.compare::before {
  left: 6px;
  top: 20px;
  width: 16px;
  height: 2px;
  background: rgba(0, 110, 255, 0.6);
}

.line-icon.compare::after {
  content: none;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(286px, 24vw, 360px);
  padding: clamp(42px, 5vw, 68px) 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 55, 174, 0.92) 0%, rgba(15, 85, 215, 0.7) 42%, rgba(89, 138, 244, 0.26) 100%),
    url("extracted-action-panel-motion/assets/images/action-panel-bg-pc.jpg") center / cover no-repeat;
  color: #ffffff;
  box-shadow: none;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 33, 112, 0.44) 0%, rgba(0, 83, 201, 0.16) 48%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 50, 150, 0.12));
  pointer-events: none;
  z-index: 1;
}

.cta-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-motion video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.cta-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 80px));
  max-width: none;
  margin: 0 auto;
}

.cta-content > p:not(.section-kicker),
.cta-content > h2 {
  max-width: 780px;
}

.cta-content .hero-actions {
  max-width: 900px;
}

.cta-panel .section-kicker {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.cta-panel h2 {
  color: #ffffff;
}

.cta-panel p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .button-primary {
  border-color: rgba(255, 255, 255, 0.2);
  background: #006eff;
  color: #ffffff;
}

.cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cta-panel .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  padding: 0 20px max(96px, env(safe-area-inset-bottom));
  color: var(--muted);
  background: rgba(246, 248, 251, 0.94);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.footer-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 34px 0 32px;
  border-bottom: 1px solid var(--line-strong);
}

.footer-assurance div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-assurance strong {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.assurance-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #006eff, #79b7ff);
  box-shadow: 10px 8px 0 rgba(0, 110, 255, 0.12);
}

.assurance-icon::before,
.assurance-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.assurance-icon.clock::before {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
}

.assurance-icon.clock::after {
  width: 9px;
  height: 2px;
  transform: translate(3px, 0) rotate(90deg);
  box-shadow: -4px 4px 0 #ffffff;
}

.assurance-icon.record::before {
  width: 18px;
  height: 14px;
  border: 2px solid #ffffff;
  background: transparent;
}

.assurance-icon.record::after {
  width: 12px;
  height: 2px;
  box-shadow: 0 -4px 0 #ffffff, 0 4px 0 #ffffff;
}

.assurance-icon.person::before {
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.assurance-icon.person::after {
  bottom: 7px;
  width: 20px;
  height: 10px;
  border-radius: 10px 10px 0 0;
}

.assurance-icon.day::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.assurance-icon.day::after {
  content: "24";
  color: #006eff;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.footer-inner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(96px, 0.82fr)) minmax(360px, 1.6fr);
  gap: clamp(24px, 3.8vw, 56px);
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line-strong);
}

.footer-links div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-contact {
  min-width: 0;
}

.footer-contact > strong {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
}

.footer-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.footer-links .footer-qr-row {
  display: flex;
  gap: 30px;
  margin: 28px 0 28px;
}

.footer-qr {
  position: relative;
  display: block;
  width: 116px;
  height: 116px;
  margin: 0;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  background: #f8fbff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.footer-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-sample::before {
  content: "";
  position: absolute;
  inset: 10px;
  background:
    linear-gradient(90deg, #111827 0 8px, transparent 8px 14px, #111827 14px 20px, transparent 20px 29px, #111827 29px 36px, transparent 36px 48px, #111827 48px 56px, transparent 56px),
    linear-gradient(#111827 0 7px, transparent 7px 14px, #111827 14px 21px, transparent 21px 29px, #111827 29px 37px, transparent 37px 46px, #111827 46px 54px, transparent 54px);
  background-size: 42px 42px, 36px 36px;
  background-position: 0 0, 10px 8px;
  opacity: 0.92;
  image-rendering: pixelated;
}

.qr-sample::after {
  content: "";
  position: absolute;
  inset: 16px auto auto 16px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(#111827, #111827) 0 0 / 24px 5px no-repeat,
    linear-gradient(#111827, #111827) 0 19px / 24px 5px no-repeat,
    linear-gradient(#111827, #111827) 0 0 / 5px 24px no-repeat,
    linear-gradient(#111827, #111827) 19px 0 / 5px 24px no-repeat;
  box-shadow: 58px 0 0 rgba(17, 24, 39, 0.95), 0 58px 0 rgba(17, 24, 39, 0.95);
}

.qr-sample-miniapp::before {
  inset: 8px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, #111827 0deg 4deg, transparent 4deg 10deg),
    radial-gradient(circle, transparent 0 34px, #111827 35px 37px, transparent 38px);
  mask: radial-gradient(circle, transparent 0 26px, #000 27px 50px);
  opacity: 0.9;
}

.qr-sample-miniapp::after {
  inset: 22px auto auto 22px;
  width: 72px;
  height: 72px;
  border: 2px dashed rgba(17, 24, 39, 0.72);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.qr-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 34px;
  height: 24px;
  transform: translate3d(-50%, -50%, 0);
}

.qr-mark::before,
.qr-mark::after {
  content: "";
  position: absolute;
  border: 4px solid #0b82ff;
  background: #f8fbff;
}

.qr-mark::before {
  left: 0;
  bottom: 0;
  width: 20px;
  height: 15px;
  border-radius: 14px 14px 8px 8px;
}

.qr-mark::after {
  right: 0;
  bottom: 0;
  width: 21px;
  height: 18px;
  border-radius: 16px 16px 8px 8px;
}

.mini-program-dot {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #10c56f;
}

.footer-hotline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px !important;
  font-size: 16px !important;
}

.footer-hotline strong,
.footer-hotline a {
  display: inline;
  color: #34445f;
  font-size: 22px;
  font-weight: 800;
}

.footer-contact-button {
  display: grid;
  place-items: center;
  min-height: 52px;
  width: min(340px, 100%);
  background: #006eff;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 800;
}

.footer-contact-button:hover {
  background: #0052d9;
}

.footer-bottom {
  display: block;
  padding: 30px 0 0;
  color: var(--muted);
}

.footer-company {
  color: var(--ink) !important;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-bottom p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.footer-region {
  display: grid;
  place-items: center;
  width: 170px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.support-button,
.to-top {
  border: 1px solid #006eff;
  background: #006eff;
  box-shadow: 0 10px 22px rgba(0, 110, 255, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms var(--ease), opacity 220ms var(--ease), visibility 220ms var(--ease), border-color 180ms var(--ease), background-color 180ms var(--ease);
}

.support-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-height: 0;
  padding: 0;
  border-radius: 2px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 110, 255, 0.18);
}

.support-button::after {
  content: none;
}

.support-button-icon {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.to-top {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 8px, 0);
}

.to-top:not(.is-visible) {
  width: 44px;
  height: 0;
  margin-top: -10px;
  border-width: 0;
  overflow: hidden;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.support-button:hover,
.to-top:hover {
  transform: translate3d(0, -2px, 0);
  border-color: #0052d9;
  background: #0052d9;
  color: #ffffff;
}

.support-popover {
  position: absolute;
  right: 0;
  bottom: 146px;
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 0) scale(0.98);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms var(--ease);
}

.support-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.popover-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.popover-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

.popover-head p {
  max-width: 270px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.consult-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
}

.consult-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.consult-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 13px;
}

.support-popover dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.support-popover dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.support-popover dt,
.support-popover dd {
  margin: 0;
  font-size: 13px;
}

.support-popover dt {
  color: var(--faint);
  font-weight: 800;
}

.support-popover dd {
  color: var(--ink);
  text-align: right;
}

@media (max-width: 1120px) {
  .nav-shell {
    width: min(1200px, 100%);
    gap: 14px;
  }

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

  .nav-mini {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 450px;
  }

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

@media (max-width: 860px) {
  .page-bg::before {
    background:
      linear-gradient(90deg, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0.58) 58%, rgba(248, 250, 252, 0.24) 100%),
      linear-gradient(180deg, rgba(248, 250, 252, 0.62) 0%, rgba(248, 250, 252, 0.2) 38%, rgba(248, 250, 252, 0.72) 100%);
  }

  .motion-bg__image {
    background-position: 72% top;
  }

  .motion-bg__video {
    display: none;
  }

  .site-header {
    top: 0;
    height: 56px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-scrolled {
    height: 56px;
  }

  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
    min-height: 100%;
    padding-left: 0;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    box-shadow: 0 5px 12px rgba(30, 64, 175, 0.12);
  }

  .brand-mark::before {
    inset: 8px 7px auto 7px;
  }

  .brand-mark::after {
    inset: auto 7px 8px 7px;
  }

  .brand-node {
    width: 4px;
    height: 4px;
  }

  .node-a {
    left: 7px;
    top: 8px;
  }

  .node-b {
    right: 7px;
    top: 11px;
  }

  .node-c {
    left: 12px;
    bottom: 7px;
  }

  .brand-text {
    font-size: 15px;
    font-weight: 800;
  }

  .site-header.is-scrolled .nav-shell {
    min-height: 100%;
  }

  .nav-links,
  .nav-right,
  .nav-action {
    display: none;
  }

  .mobile-menu {
    top: 100%;
    left: 0;
    right: auto;
    width: 100vw;
    padding: 6px 18px 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    transform: translate3d(0, -8px, 0);
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 56px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    margin: 0;
    background: currentColor;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 14px;
  }

  .mobile-menu a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.8px solid currentColor;
    border-right: 1.8px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.58;
  }

  .mobile-menu a:hover {
    background: transparent;
    color: #006eff;
  }

  .section-shell {
    width: min(100% - 28px, 720px);
  }

  .bottom-cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .hero {
    padding: 92px 0 40px;
    gap: 24px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(248, 250, 252, 0.36) 0%, rgba(248, 250, 252, 0.12) 46%, rgba(248, 250, 252, 0.54) 100%);
  }

  .cta-panel {
    min-height: 300px;
    padding: 44px 0;
    background:
      linear-gradient(90deg, rgba(8, 55, 174, 0.9) 0%, rgba(15, 85, 215, 0.72) 58%, rgba(89, 138, 244, 0.34) 100%),
      url("extracted-action-panel-motion/assets/images/action-panel-bg-mobile.jpg") center / cover no-repeat;
  }

  .cta-motion {
    display: none;
  }

  .cta-content {
    width: min(100% - 32px, 720px);
  }

  h1 {
    font-size: clamp(38px, 9vw, 48px);
    line-height: 1.1;
  }

  h1 span {
    display: block;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .hero .hero-actions .button {
    min-width: 0;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hub-panel {
    border-radius: var(--radius-lg);
    padding: 18px;
  }

  .entry-grid,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .feature-copy {
    position: static;
  }

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

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

  .model-grid article,
  .model-grid .model-card {
    min-height: 98px;
  }

  .footer-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 28px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 18px;
  }

  .footer-region {
    width: 170px;
  }
}

@media (max-width: 540px) {
  .page-bg .aura {
    min-width: 320px;
    opacity: 0.26;
    animation: none;
  }

  .mesh-layer {
    opacity: 0.2;
    background-size: 52px 52px, 52px 52px, 26px 26px;
  }

  .glass-orb,
  .fluid-ribbon,
  .cloud-scene,
  .cloud-orbit,
  .floating-model,
  .model-float-two,
  .model-float-three,
  .model-float-four,
  .model-float-five,
  .model-float-six {
    display: none;
  }

  .belt-track {
    animation-duration: 48s;
  }

  .floating-model {
    animation: iconFloatIn 240ms var(--ease) 920ms forwards;
  }

  .brand-text {
    font-size: 14px;
  }

  .hero {
    padding-top: 84px;
    gap: 18px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.14;
  }

  .hero-subtitle {
    margin-bottom: 22px;
    line-height: 1.68;
  }

  .support-note {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .section-heading h2,
  .feature-copy h2,
  .cta-panel h2 {
    font-size: clamp(24px, 6.6vw, 28px);
    line-height: 1.18;
  }

  .eyebrow,
  .section-kicker,
  .card-kicker {
    font-size: 12px;
  }

  .panel-topline {
    display: grid;
    gap: 10px;
  }

  .panel-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .panel-meta span {
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
  }

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

  .panel-models span {
    gap: 6px;
    padding: 7px;
    border-radius: var(--radius-sm);
    font-size: 12px;
  }

  .panel-models .model-logo {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
  }

  .panel-models .model-logo img {
    width: 17px;
    height: 17px;
  }

  .panel-models em {
    font-size: 10px;
  }

  .chat-mockup {
    grid-template-columns: 1fr;
  }

  .chat-mockup aside {
    display: none;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .platform-section .feature-card:nth-child(odd),
  .platform-section .feature-card:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-section .feature-card:last-child {
    border-bottom: 0;
  }

  .footer-assurance {
    grid-template-columns: 1fr;
    padding: 26px 0 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 32px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-qr-row {
    gap: 18px;
    margin: 22px 0 24px;
  }

  .footer-qr {
    width: 104px;
    height: 104px;
  }

  .footer-contact > strong {
    font-size: 20px;
  }

  .footer-contact p {
    font-size: 14px;
  }

  .footer-hotline strong,
  .footer-hotline a {
    font-size: 18px;
  }

  .footer-bottom {
    padding-top: 24px;
  }

  .footer-company {
    font-size: 18px;
  }

  .floating-actions {
    left: auto;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    flex-direction: column;
    justify-content: flex-end;
  }

  .support-button {
    width: 42px;
    height: 42px;
    min-width: 0;
    min-height: 0;
    padding: 0;
  }

  .support-button::before {
    content: none;
  }

  .support-button-icon {
    width: 23px;
    height: 23px;
  }

  .to-top {
    width: 42px;
    height: 42px;
  }

  .support-popover {
    right: 0;
    bottom: 132px;
  }

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

@media (pointer: coarse) {
  .nav-links a,
  .button,
  .support-button {
    min-height: 48px;
  }
}

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

  .page-bg,
  .reveal,
  .reveal-panel,
  .nav-shell,
  .floating-model,
  .cloud-scene,
  .cloud-orbit {
    opacity: 1 !important;
    transform: none !important;
  }

  .cloud-scene,
  .cloud-orbit {
    animation: none !important;
  }
}

@keyframes bgIn {
  to {
    opacity: 1;
  }
}

@keyframes navIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes iconFloatIn {
  to {
    opacity: 1;
  }
}

@keyframes modelDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes floatSoft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(12px, -14px, 0);
  }
}

@keyframes auraDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(14px, 10px, 0) scale(1.02);
  }
}

@keyframes beltMove {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes cloudDiscDrift {
  from {
    transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 0.58;
  }
  to {
    transform: translate3d(calc(-50% + 16px), calc(-50% - 10px), 0) scale(1.02);
    opacity: 0.7;
  }
}

@keyframes cloudSailDrift {
  from {
    transform: rotate(var(--sail-rotate)) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(var(--sail-rotate)) translate3d(18px, -12px, 0);
  }
}

@keyframes cloudVeilDrift {
  from {
    transform: rotate(var(--veil-rotate)) translate3d(0, 0, 0);
    opacity: 0.46;
  }
  to {
    transform: rotate(var(--veil-rotate)) translate3d(-18px, 8px, 0);
    opacity: 0.64;
  }
}

@keyframes orbitDriftOne {
  from {
    transform: rotate(-18deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(-18deg) translate3d(-22px, 10px, 0);
  }
}

@keyframes orbitDriftTwo {
  from {
    transform: rotate(-8deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(-8deg) translate3d(18px, -8px, 0);
  }
}

@keyframes orbitDriftThree {
  from {
    transform: rotate(-34deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(-34deg) translate3d(-14px, 14px, 0);
  }
}
