@font-face {
  font-family: "Muntrie Digital";
  src:
    url("./assets/fonts/digital.woff2") format("woff2"),
    url("./assets/fonts/digital.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg-top: #2f3a46;
  --bg-base: #11171d;
  --bg-bottom: #090d12;
  --panel: rgba(20, 27, 34, 0.46);
  --panel-strong: rgba(18, 25, 32, 0.68);
  --panel-soft: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f8fb;
  --text-soft: rgba(244, 248, 251, 0.76);
  --text-faint: rgba(244, 248, 251, 0.5);
  --accent: #8fddff;
  --accent-strong: #d7fff2;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1200px, calc(100vw - 40px));
  --copy-font:
    "Avenir Next", "SF Pro Display", "Segoe UI Variable", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(138, 203, 255, 0.18), transparent 38%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-base) 36%, var(--bg-bottom) 100%);
  color: var(--text);
  font-family: var(--copy-font);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(315deg, rgba(142, 221, 255, 0.08), transparent 25%);
  opacity: 0.45;
  pointer-events: none;
}

body.legal-page {
  --legal-shell-width: min(1500px, calc(100vw - 96px));
  --legal-panel: rgba(13, 18, 23, 0.34);
  --legal-border: rgba(255, 255, 255, 0.09);
  background-color: #06080b;
  background-image:
    linear-gradient(180deg, rgba(4, 7, 10, 0.42) 0%, rgba(7, 10, 14, 0.8) 46%, #0d1318 100%),
    url("./assets/images/scene-british-columbia.jpg"),
    linear-gradient(180deg, #06080b 0%, #0b1015 44%, #0d1318 100%);
  background-position:
    center top,
    center top,
    center;
  background-repeat: no-repeat;
  background-size:
    cover,
    cover,
    auto;
  background-attachment:
    fixed,
    fixed,
    scroll;
}

body.legal-page::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%);
  opacity: 0.46;
}

body.legal-page .ambient-orb {
  display: none;
}

body.legal-page .ambient-grid {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0.75px, transparent 0.85px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.48) 64%, transparent 100%);
  opacity: 0.16;
}

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

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

/* ── Skip-to-content ── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #081117;
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0;
  transition: top 200ms ease, opacity 200ms ease;
}

.skip-link:focus {
  top: 24px;
  opacity: 1;
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Hamburger toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 260ms ease, opacity 260ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer-cta {
  display: none;
}

.ambient-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.26;
  pointer-events: none;
  z-index: -2;
}

.ambient-orb-one {
  top: 5%;
  right: -5%;
  width: 30rem;
  height: 30rem;
  background: rgba(143, 221, 255, 0.46);
}

.ambient-orb-two {
  bottom: 8%;
  left: -10%;
  width: 28rem;
  height: 28rem;
  background: rgba(130, 170, 255, 0.28);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 80%);
  opacity: 0.1;
  pointer-events: none;
  z-index: -3;
}

.glass {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: var(--content-width);
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
}

.legal-shell-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--legal-shell-width, min(1500px, calc(100vw - 96px)));
  max-width: var(--legal-shell-width, min(1500px, calc(100vw - 96px)));
  margin: 0 auto;
  padding: 12px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  border-color: var(--legal-border, rgba(255, 255, 255, 0.09));
  background: rgba(10, 14, 18, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.legal-page .site-header {
  top: 0;
  z-index: 28;
  width: var(--legal-shell-width, min(1500px, calc(100vw - 96px)));
  max-width: var(--legal-shell-width, min(1500px, calc(100vw - 96px)));
  margin: 0 auto;
  padding: 12px 16px 10px;
  border-color: var(--legal-border, rgba(255, 255, 255, 0.09));
  background: rgba(10, 14, 18, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

body.legal-page .site-header .brand-copy small {
  display: none;
}

body.legal-page .site-header .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

body.legal-page .site-header .brand-copy strong {
  font-size: 0.96rem;
}

body.legal-page .site-nav {
  position: relative;
  display: inline-flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 22px;
  padding-bottom: 10px;
}

body.legal-page .site-nav a {
  color: rgba(244, 248, 251, 0.58);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.legal-page .site-nav a::after {
  bottom: -8px;
}

body.legal-page .site-header .header-actions {
  margin-left: auto;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-copy small {
  color: var(--text-faint);
  font-size: 0.76rem;
}

.legal-brand .brand-copy small {
  display: none;
}

.legal-shell-header .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.legal-shell-header .brand-copy strong {
  font-size: 0.96rem;
}

.legal-brand {
  color: var(--text);
  border-radius: 18px;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.legal-brand:hover,
.legal-brand:focus-visible {
  color: var(--text);
  opacity: 0.86;
  transform: translateY(-1px);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.legal-shell-actions {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.legal-switch {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding-bottom: 10px;
  color: var(--text-soft);
}

.legal-switch a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(244, 248, 251, 0.58);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 180ms ease;
}

.legal-switch a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms ease;
}

.legal-switch a:hover,
.legal-switch a:focus-visible {
  color: var(--text);
}

.legal-switch a[aria-current="page"] {
  color: rgba(244, 248, 251, 0.96);
}

.legal-switch a[aria-current="page"]::after {
  transform: scaleX(1);
}

.legal-header-actions {
  justify-self: end;
  gap: 8px;
}

.locale-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.locale-button {
  border: 0;
  background: transparent;
  color: rgba(244, 248, 251, 0.58);
  min-width: 42px;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.locale-button:hover,
.locale-button:focus-visible {
  color: var(--text);
}

.locale-button.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 248, 251, 0.96);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.button-primary {
  color: #081117;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 18px 45px rgba(123, 201, 255, 0.24);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-1px);
}

.section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 26px;
  padding-top: 52px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.closing-copy h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3rem, 4.9vw, 4.7rem);
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  max-width: 18ch;
  text-wrap: pretty;
}

.hero-title-line {
  display: block;
  text-wrap: pretty;
}

.hero-title-line-secondary {
  color: rgba(244, 248, 251, 0.92);
}

.hero-lead,
.section-heading p,
.feature-card p,
.experience-card p,
.principle-card p,
.scene-card-copy p,
.closing-copy p {
  color: var(--text-soft);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-lead {
  max-width: 35rem;
  margin: 0;
  font-size: 1.01rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.hero-stats {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 0;
  border-top: 0;
}

.hero-stats:empty {
  display: none;
}

.hero-stat {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  min-width: 0;
}

.hero-stat dt {
  margin: 0;
  color: rgba(244, 248, 251, 0.84);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.hero-stat dd {
  display: none;
}

.hero-media {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(72vw, 760px);
  height: 38%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(137, 212, 255, 0.16), transparent 70%);
  filter: blur(44px);
  opacity: 0.5;
  pointer-events: none;
}

.preview-sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 31, 0.24);
  color: rgba(244, 248, 251, 0.74);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.preview-sound-toggle:hover,
.preview-sound-toggle:focus-visible {
  color: var(--text);
}

.preview-sound-toggle[aria-pressed="true"] {
  border-color: rgba(143, 221, 255, 0.22);
  background: rgba(143, 221, 255, 0.1);
  color: var(--text);
}

.sound-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.preview-sound-toggle-overlay {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.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;
}

.sound-wave,
.sound-slash {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  transform-origin: center;
}

.preview-sound-toggle[aria-pressed="false"] .sound-wave {
  opacity: 0;
  transform: scale(0.88);
}

.preview-sound-toggle[aria-pressed="true"] .sound-slash {
  opacity: 0;
  transform: scale(0.88);
}

.device-shell {
  position: relative;
  width: min(100%, 940px);
  margin: 0 auto;
  aspect-ratio: 20 / 9;
  padding: 11px;
  border-radius: 34px;
  justify-self: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(15, 21, 28, 0.98), rgba(11, 16, 22, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.device-shell::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 36px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(5, 9, 13, 0.74);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.03);
  z-index: 6;
}

.device-shell::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 23%;
  width: 4px;
  height: 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  opacity: 0.32;
}

.stage-preview {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(8, 14, 20, 0.34);
}

.stage-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -22px 48px rgba(0, 0, 0, 0.08);
  z-index: 2;
  pointer-events: none;
}

.stage-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage-background {
  position: absolute;
  left: -25%;
  top: -25%;
  width: 150%;
  height: 150%;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 20, 0.06), rgba(7, 14, 20, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    var(--stage-background-image) center / cover no-repeat;
  transform: translate3d(var(--stage-background-x, 0px), var(--stage-background-y, 0px), 0);
  filter: saturate(0.84) contrast(1.02) brightness(0.92);
  transition: opacity 900ms ease;
  will-change: transform, opacity;
}

.stage-background.is-active {
  opacity: 1;
}

/* ── Scene rotation indicator ── */
.stage-indicators {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 20, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stage-indicators:empty {
  display: none;
}

.stage-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.stage-indicator:hover {
  background: rgba(255, 255, 255, 0.2);
}

.stage-indicator:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.stage-indicator.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.25);
}

.stage-aura,
.stage-vignette {
  position: absolute;
  pointer-events: none;
}

.stage-aura {
  display: none;
}

.stage-aura-one {
  inset: 8% auto auto 4%;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  animation: stageAuraDrift 10s ease-in-out infinite alternate;
}

.stage-aura-two {
  top: 6%;
  right: 2%;
  width: 260px;
  height: 240px;
  background: rgba(255, 255, 255, 0.14);
  animation: stageAuraDrift 12s ease-in-out infinite alternate-reverse;
}

.stage-vignette {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, transparent 34%, rgba(7, 12, 18, 0.05) 72%, rgba(5, 9, 14, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 9, 14, 0.03), rgba(5, 9, 14, 0.08));
}

.stage-center,
.stage-watermark {
  position: absolute;
  z-index: 3;
}

.stage-center {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 48px;
  z-index: 4;
}

.stage-label {
  display: none;
}

.digital-time {
  font-family: "Muntrie Digital", monospace;
  display: inline-grid;
  grid-template-columns:
    var(--time-slot-width, 0.62em)
    var(--time-slot-width, 0.62em)
    var(--time-separator-width, 0.14em)
    var(--time-slot-width, 0.62em)
    var(--time-slot-width, 0.62em)
    var(--time-separator-width, 0.14em)
    var(--time-slot-width, 0.62em)
    var(--time-slot-width, 0.62em);
  align-items: center;
  justify-content: center;
  justify-items: center;
  max-inline-size: none;
  margin: 0;
  overflow: visible;
  --time-slot-width: 0.54em;
  --time-separator-width: 0.324em;
  font-size: var(--time-font-size, clamp(6.8rem, 13.6vw, 13.4rem));
  line-height: 1;
  letter-spacing: 0;
  color: rgba(248, 250, 251, 0.96);
  text-shadow: 0 1px 2px rgba(7, 10, 14, 0.24);
  -webkit-text-stroke: 1px rgba(26, 31, 36, 0.24);
  animation: none;
  inline-size: var(--time-inline-size, calc(var(--time-slot-width, 0.54em) * 6 + var(--time-separator-width, 0.324em) * 2));
}

.time-digit,
.time-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.time-digit {
  width: var(--time-slot-width, 0.62em);
  min-width: 0;
  overflow: hidden;
  padding-inline: 0;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.time-separator {
  width: var(--time-separator-width, 0.14em);
  min-width: 0;
  overflow: hidden;
  transform: translateY(-0.01em);
}

.stage-watermark {
  display: none;
}

.floating-card-kicker,
.feature-kicker,
.scene-kicker {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.experience-card h3,
.feature-card h3,
.scene-card-copy h3,
.principle-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 16ch;
  text-wrap: pretty;
}

.section-heading p {
  max-width: 36rem;
  margin: 10px 0 0;
}

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

.experience-card,
.principle-card,
.feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid transparent;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

@media (hover: hover) {
  .experience-card:hover,
  .principle-card:hover,
  .feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  }

  .scene-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  }

  .scene-card:hover img {
    transform: scale(1.03);
  }
}

.card-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--text-faint);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
}

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

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

.scene-card {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid transparent;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.scene-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 400ms ease;
}

.scene-card-copy {
  padding: 20px 20px 24px;
}

.legal-summary-card,
.legal-section-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.legal-summary-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 228px);
  min-height: 64px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #040507;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-decoration: none;
  justify-content: flex-start;
}

.store-badge-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  color: #fff;
}

.store-badge--apple .store-badge-icon {
  width: 28px;
  height: 34px;
}

.store-badge--google .store-badge-icon {
  width: 30px;
  height: 30px;
}

.store-badge-svg {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
}

.store-badge-title {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.store-badge-static {
  pointer-events: none;
}

.legal-main {
  width: min(980px, calc(100vw - 40px));
  margin: 0 auto;
  padding-top: 28px;
  min-width: 0;
}

.about-main,
.support-main {
  width: var(--legal-shell-width, min(1500px, calc(100vw - 96px)));
  max-width: var(--legal-shell-width, min(1500px, calc(100vw - 96px)));
}

.legal-main .section {
  width: 100%;
}

.legal-hero {
  padding-top: 40px;
  padding-bottom: 24px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-intro {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.06rem;
  overflow-wrap: anywhere;
}

.legal-outline,
.legal-summary-shell,
.legal-contact-shell,
.legal-section-shell {
  padding-top: 0;
}

.legal-contact-shell,
.support-routing-section {
  scroll-margin-top: 132px;
}

.legal-outline {
  padding-bottom: 24px;
}

.legal-outline-shell {
  display: grid;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(143, 221, 255, 0.08), transparent 48%);
}

.legal-outline-label {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-outline-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.legal-outline-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.legal-outline-link:hover,
.legal-outline-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transform: translateY(-1px);
}

.legal-outline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(143, 221, 255, 0.1);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.legal-outline-text {
  min-width: 0;
  line-height: 1.45;
  text-wrap: balance;
}

.legal-summary-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-contact-grid {
  padding-top: 0;
  display: block;
}

.legal-summary-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.legal-summary-card p {
  margin-bottom: 0;
}

.legal-contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  font-weight: 600;
  word-break: break-all;
}

.legal-contact-static {
  color: var(--text);
}

.legal-contact-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
}

.legal-contact-panel-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.legal-contact-panel-copy h3,
.legal-contact-panel-copy p,
.legal-contact-row h4,
.legal-contact-row p {
  margin: 0;
}

.legal-contact-panel-copy h3 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.legal-contact-panel-copy > p:last-child {
  color: var(--text-soft);
  line-height: 1.68;
}

.legal-contact-list {
  display: grid;
  gap: 10px;
}

.legal-contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.026);
}

.legal-contact-row-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.legal-contact-row h4 {
  font-size: 1rem;
  line-height: 1.25;
}

.legal-contact-row p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.legal-contact-row .legal-contact-link {
  justify-self: end;
  max-width: 100%;
}

.legal-section-list {
  padding-top: 0;
  display: grid;
  gap: 18px;
}

.legal-section-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  scroll-margin-top: 132px;
}

.legal-section-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.legal-section-card p:last-of-type {
  margin-bottom: 0;
}

.legal-section-card:target {
  border-color: rgba(143, 221, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(143, 221, 255, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.legal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.72;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
  transform: translateY(-50%);
}

.about-hero {
  padding-top: 40px;
  padding-bottom: 24px;
}

.about-hero h1,
.about-product-copy h2,
.about-contact-copy h2,
.about-compliance-panel h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.about-hero h1 {
  max-width: 100%;
  font-size: clamp(3rem, 6.8vw, 5.2rem);
  text-wrap: wrap;
}

body[data-locale="zh"] .about-hero h1,
body[data-locale="zh"] .support-hero h1 {
  font-size: clamp(3rem, 4.5vw, 4rem);
  letter-spacing: -0.02em;
}

body[data-locale="zh"] .about-hero h1,
body[data-locale="zh"] .support-hero h1,
body[data-locale="zh"] .about-product-copy h2,
body[data-locale="zh"] .about-contact-copy h2,
body[data-locale="zh"] .about-compliance-panel h2,
body[data-locale="zh"] .support-primary-route h2,
body[data-locale="zh"] .support-section-heading h2,
body[data-locale="zh"] .support-note-panel h2 {
  word-break: normal;
  line-break: loose;
  overflow-wrap: normal;
}

.about-hero .legal-intro,
.support-hero .legal-intro {
  max-width: min(72rem, 100%);
}

.about-product-section,
.about-contact-section,
.about-compliance-section {
  padding-top: 0;
}

.about-product-section {
  display: grid;
  gap: 22px;
}

.about-product-copy {
  display: grid;
  gap: 14px;
  max-width: min(68rem, 100%);
}

.about-product-copy h2,
.about-contact-copy h2,
.about-compliance-panel h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
}

.about-product-copy p:last-child,
.about-contact-copy p,
.about-compliance-panel p:last-child {
  max-width: min(58rem, 100%);
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

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

.about-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.about-card-index {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-card h3,
.about-card p {
  margin: 0;
}

.about-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.about-card p {
  color: var(--text-soft);
  line-height: 1.62;
}

.about-contact-panel,
.about-compliance-panel {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
}

.about-contact-panel {
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
}

.about-contact-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

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

.about-contact-list article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.026);
}

.about-contact-list span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.35;
}

.about-contact-list a {
  color: var(--accent-strong);
  font-weight: 700;
  word-break: break-all;
}

.about-compliance-panel {
  max-width: min(760px, 100%);
}

.support-hero {
  padding-top: 40px;
  padding-bottom: 24px;
}

.support-hero h1,
.support-primary-route h2,
.support-section-heading h2,
.support-note-panel h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.support-hero h1 {
  max-width: 100%;
  font-size: clamp(3rem, 6.8vw, 5.2rem);
  text-wrap: wrap;
}

.support-routing-section,
.support-checklist-section,
.support-bottom-section {
  padding-top: 0;
}

.support-routing-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
}

.support-primary-route,
.support-section-heading,
.support-note-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.support-primary-route h2,
.support-section-heading h2,
.support-note-panel h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
}

.support-primary-route p,
.support-section-heading,
.support-route-card p,
.support-check-card p,
.support-note-panel p {
  color: var(--text-soft);
  line-height: 1.68;
}

.support-primary-route p,
.support-note-panel p {
  margin: 0;
}

.support-email-link,
.support-route-card a,
.support-text-link {
  color: var(--accent-strong);
  font-weight: 800;
  word-break: break-word;
}

.support-email-link {
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(215, 255, 242, 0.2);
  background: rgba(215, 255, 242, 0.07);
}

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

.support-route-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.026);
}

.support-route-card h3,
.support-route-card p,
.support-check-card h3,
.support-check-card p {
  margin: 0;
}

.support-route-card h3 {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.18;
}

.support-checklist-section {
  display: grid;
  gap: 22px;
}

.support-section-heading {
  max-width: min(62rem, 100%);
}

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

.support-check-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.support-check-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

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

.support-note-panel {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
}

.support-text-link {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(215, 255, 242, 0.36);
  text-underline-offset: 5px;
}

body.legal-page .legal-outline-shell,
body.legal-page .legal-summary-card,
body.legal-page .legal-contact-panel,
body.legal-page .legal-section-card,
body.legal-page .about-card,
body.legal-page .about-contact-panel,
body.legal-page .about-compliance-panel,
body.legal-page .support-routing-panel,
body.legal-page .support-check-card,
body.legal-page .support-note-panel {
  border-color: var(--legal-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, var(--legal-panel), rgba(8, 12, 17, 0.42));
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body.legal-page .legal-outline-shell {
  background:
    linear-gradient(135deg, rgba(143, 221, 255, 0.075), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    linear-gradient(180deg, var(--legal-panel), rgba(8, 12, 17, 0.42));
}

.closing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(143, 221, 255, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.closing-copy {
  max-width: 42rem;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-faint);
  font-size: 0.92rem;
}

.legal-footer {
  width: min(980px, calc(100vw - 40px));
  padding-top: 18px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.global-footer {
  width: 100%;
  max-width: none;
  margin: clamp(64px, 8vw, 112px) auto 0;
  padding: clamp(44px, 6vw, 72px) 0 clamp(34px, 5vw, 58px);
  display: block;
  color: rgba(244, 248, 251, 0.62);
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0), rgba(11, 15, 19, 0.88) 14%, #0a0e12 100%);
  font-size: 0.9rem;
}

.global-footer-inner {
  width: min(1500px, calc(100vw - 96px));
  max-width: min(1500px, calc(100vw - 96px));
  margin: 0 auto;
  border-top: 1px solid rgba(244, 248, 251, 0.13);
}

.global-footer-directory {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 110px);
  padding: clamp(38px, 5vw, 58px) 0 clamp(46px, 6vw, 78px);
}

.global-footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
  min-width: 0;
}

.global-footer-column h2 {
  margin: 0 0 6px;
  color: rgba(244, 248, 251, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.global-footer-column a,
.global-footer-utility-links a {
  width: fit-content;
  max-width: 100%;
  color: rgba(244, 248, 251, 0.58);
  line-height: 1.4;
  word-break: break-word;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.global-footer-column a:hover,
.global-footer-column a:focus-visible,
.global-footer-utility-links a:hover,
.global-footer-utility-links a:focus-visible {
  color: rgba(244, 248, 251, 0.96);
  transform: translateX(2px);
}

.global-footer-brand-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding: 22px 0;
  border-top: 1px solid rgba(244, 248, 251, 0.12);
}

.global-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(244, 248, 251, 0.94);
  font-weight: 800;
  line-height: 1;
}

.global-footer-brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.global-footer-brand span {
  font-size: 1.06rem;
}

.global-footer-brand-row p {
  margin: 0;
  color: rgba(244, 248, 251, 0.52);
  line-height: 1.55;
}

.global-footer-utility-links {
  display: inline-flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.global-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(244, 248, 251, 0.08);
  color: rgba(244, 248, 251, 0.42);
  font-size: 0.82rem;
  line-height: 1.5;
}

.global-footer-bottom small,
.global-footer-bottom span {
  margin: 0;
  color: inherit;
}

.global-footer-bottom span {
  text-align: right;
}

.app-embedded .legal-shell-header {
  display: none;
}

.app-embedded .legal-main {
  padding-top: 0;
}

.app-embedded .legal-hero {
  padding-top: 20px;
}

.app-embedded .footer-home-link {
  display: none;
}

.app-embedded .legal-outline {
  padding-bottom: 20px;
}

.app-embedded .legal-outline-shell {
  padding: 18px;
}

.app-embedded .legal-footer {
  margin-top: 4px;
  padding-top: 14px;
  padding-bottom: 28px;
}

.app-embedded .footer-brand {
  display: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@keyframes stagePan {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-1.8%, -1.1%, 0);
  }
}

@keyframes stageCardFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes stageTimePulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
  }

  50% {
    text-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
  }
}

@keyframes stageAuraDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(12px, -12px, 0);
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav,
  body.legal-page .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 30;
    width: min(320px, 80vw);
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 0 0 auto;
    gap: 8px;
    padding: 88px 28px 28px;
    background: linear-gradient(180deg, rgba(15, 21, 28, 0.96), rgba(11, 16, 22, 0.98));
    border-left: 1px solid var(--border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 320ms ease, visibility 320ms ease;
  }

  .site-nav.is-open,
  body.legal-page .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a,
  body.legal-page .site-nav a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a::after,
  body.legal-page .site-nav a::after {
    display: none;
  }

  .nav-drawer-cta,
  body.legal-page .site-nav .nav-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    min-height: 48px;
    width: 100%;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 600;
    color: #081117;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    border-bottom: none !important;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 320ms ease, visibility 320ms ease;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .hero-copy {
    gap: 14px;
    max-width: 40rem;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-lead {
    max-width: 34rem;
  }

  .device-shell {
    width: min(100%, 860px);
  }

  .stage-center {
    padding: 40px;
  }

  .digital-time {
    font-size: var(--time-font-size, clamp(5.4rem, 12vw, 10.4rem));
  }

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

  .experience-grid,
  .principle-grid,
  .scene-grid,
  .legal-outline-nav,
  .legal-summary-grid,
  .about-card-grid,
  .support-checklist-grid,
  .support-bottom-section {
    grid-template-columns: 1fr;
  }

  .legal-contact-panel,
  .about-contact-panel,
  .support-routing-panel {
    grid-template-columns: 1fr;
  }

  .closing-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-shell-header,
  body.legal-page .site-header {
    width: min(calc(100vw - 40px), 100%);
    max-width: min(calc(100vw - 40px), 100%);
  }

  .global-footer-inner {
    width: min(calc(100vw - 40px), 100%);
    max-width: min(calc(100vw - 40px), 100%);
  }

  .global-footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 56px;
  }

  .global-footer-brand-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .global-footer-utility-links {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  body.legal-page .site-header {
    top: 12px;
    width: min(calc(100vw - 28px), 100%);
    max-width: min(calc(100vw - 28px), 100%);
    display: grid;
    grid-template-columns: minmax(0, auto) 44px auto;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
  }

  body.legal-page .site-header .header-actions {
    justify-self: end;
    margin-left: 0;
  }

  body[data-locale="zh"] .about-hero h1,
  body[data-locale="zh"] .support-hero h1 {
    font-size: clamp(2.1rem, 7.2vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-break: auto;
  }

  body[data-locale="zh"] .about-product-copy h2,
  body[data-locale="zh"] .about-contact-copy h2,
  body[data-locale="zh"] .about-compliance-panel h2,
  body[data-locale="zh"] .support-primary-route h2,
  body[data-locale="zh"] .support-section-heading h2,
  body[data-locale="zh"] .support-note-panel h2 {
    font-size: clamp(1.7rem, 6.8vw, 2.2rem);
    overflow-wrap: anywhere;
    word-break: break-word;
    line-break: auto;
  }
}

@media (max-width: 780px) {
  :root {
    --content-width: min(calc(100vw - 28px), 100%);
  }

  .site-header {
    top: 12px;
    padding: 14px;
  }

  .legal-shell-header,
  body.legal-page .site-header {
    top: 12px;
    width: min(calc(100vw - 28px), 100%);
    max-width: min(calc(100vw - 28px), 100%);
    padding: 14px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: minmax(0, auto) 44px auto;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
  }

  body.legal-page .site-header .brand {
    min-width: 0;
  }

  body.legal-page .site-header .header-actions {
    justify-self: end;
    margin-left: 0;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .legal-shell-actions {
    display: inline-flex;
    align-items: center;
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .locale-button {
    min-width: 44px;
    padding: 8px 8px;
    font-size: 0.84rem;
  }

  .legal-shell-actions .locale-toggle {
    width: auto;
  }

  .legal-shell-actions .locale-button {
    flex: 0 0 auto;
  }

  .legal-switch {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .legal-main,
  .legal-footer {
    width: min(calc(100vw - 28px), 100%);
    min-width: 0;
  }

  .global-footer {
    margin-top: 58px;
    padding-bottom: 34px;
  }

  .global-footer-inner {
    width: min(calc(100vw - 28px), 100%);
    max-width: min(calc(100vw - 28px), 100%);
    padding-top: 28px;
  }

  .global-footer-directory {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }

  .global-footer-brand-row {
    gap: 14px;
    padding: 18px 0;
  }

  .global-footer-utility-links {
    gap: 12px 16px;
  }

  .global-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .global-footer-bottom span {
    text-align: left;
  }

  .legal-hero {
    padding-top: 30px;
    padding-bottom: 20px;
    min-width: 0;
  }

  .legal-hero h1 {
    font-size: clamp(2.5rem, 9vw, 3.7rem);
    overflow-wrap: anywhere;
  }

  .about-hero {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  .about-product-copy h2,
  .about-contact-copy h2,
  .about-compliance-panel h2,
  .support-primary-route h2,
  .support-section-heading h2,
  .support-note-panel h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .support-hero {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .support-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  body[data-locale="zh"] .about-hero h1,
  body[data-locale="zh"] .support-hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-break: auto;
  }

  body[data-locale="zh"] .about-product-copy h2,
  body[data-locale="zh"] .about-contact-copy h2,
  body[data-locale="zh"] .about-compliance-panel h2,
  body[data-locale="zh"] .support-primary-route h2,
  body[data-locale="zh"] .support-section-heading h2,
  body[data-locale="zh"] .support-note-panel h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.2rem);
    overflow-wrap: anywhere;
    word-break: break-word;
    line-break: auto;
  }

  .about-card,
  .about-contact-panel,
  .about-compliance-panel,
  .support-routing-panel,
  .support-check-card,
  .support-note-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .about-card,
  .support-check-card {
    min-height: 0;
  }

  .about-contact-list,
  .support-route-grid {
    grid-template-columns: 1fr;
  }

  .legal-intro {
    font-size: 0.98rem;
    line-height: 1.68;
    max-width: 100%;
  }

  .legal-outline {
    padding-bottom: 20px;
  }

  .legal-outline-shell {
    padding: 18px;
    gap: 14px;
  }

  .legal-outline-link {
    min-height: 50px;
    padding: 11px 12px;
  }

  .legal-contact-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .legal-contact-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 15px;
  }

  .legal-contact-row .legal-contact-link {
    justify-self: start;
  }

  .legal-section-card {
    scroll-margin-top: 110px;
  }

  .legal-contact-shell,
  .support-routing-section {
    scroll-margin-top: 110px;
  }

  .hero {
    padding-top: 28px;
    min-height: auto;
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 3.9rem);
  }

  .hero-copy {
    gap: 12px;
    justify-items: start;
    text-align: left;
  }

  .hero-title {
    max-width: none;
  }

  .hero-lead {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

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

  .device-shell {
    width: 100%;
    padding: 7px;
    border-radius: 24px;
  }

  .device-shell::before {
    left: 12px;
    width: 6px;
    height: 24px;
  }

  .device-shell::after {
    top: 21%;
    height: 42px;
  }

  .stage-preview {
    border-radius: 16px;
  }

  .stage-center {
    padding: 24px;
  }

  .digital-time {
    font-size: var(--time-font-size, clamp(3.6rem, 10.2vw, 6.4rem));
  }

  .preview-sound-toggle {
    min-height: 42px;
    min-width: 42px;
  }

  .preview-sound-toggle-overlay {
    top: 14px;
    right: 14px;
  }

  .stage-indicators {
    bottom: 14px;
    padding: 5px 10px;
  }

  .closing-panel {
    padding: 24px;
  }
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 14% 14%, rgba(126, 204, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(179, 255, 222, 0.14), transparent 24%),
    radial-gradient(circle at 48% 76%, rgba(255, 215, 163, 0.1), transparent 34%),
    linear-gradient(180deg, #0e141a 0%, #0a1015 34%, #06090d 100%);
}

body[data-page="home"]::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(315deg, rgba(143, 221, 255, 0.08), transparent 22%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.03), transparent 42%);
  opacity: 0.86;
}

body[data-page="home"] .ambient-grid {
  opacity: 0.14;
}

body[data-page="home"] .ambient-orb-one {
  top: -4%;
  right: -2%;
  width: 40rem;
  height: 40rem;
  opacity: 0.38;
  background: rgba(108, 192, 255, 0.34);
}

body[data-page="home"] .ambient-orb-two {
  bottom: -2%;
  left: -6%;
  width: 34rem;
  height: 34rem;
  opacity: 0.3;
  background: rgba(170, 255, 222, 0.2);
}

body[data-page="home"] .site-header {
  width: min(1320px, calc(100vw - 40px));
  padding: 14px 20px;
  border-radius: 28px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(12, 17, 23, 0.8), rgba(12, 17, 23, 0.56)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 22%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

body[data-page="home"] .site-nav {
  gap: 22px;
}

body[data-page="home"] .header-actions {
  gap: 10px;
}

body[data-page="home"] .home-main .section,
body[data-page="home"] .site-footer {
  width: min(1320px, calc(100vw - 40px));
}

body[data-page="home"] .home-main .section {
  padding: 34px 0 92px;
}

body[data-page="home"] .hero {
  gap: 0;
  padding-top: 54px;
}

body[data-page="home"] .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

body[data-page="home"] .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(235, 247, 255, 0.84);
  letter-spacing: 0.16em;
}

body[data-page="home"] .hero-copy {
  align-content: center;
  justify-items: start;
  gap: 18px;
  max-width: 38rem;
  margin: 0;
  text-align: left;
}

body[data-page="home"] .hero-title {
  max-width: 12ch;
}

body[data-page="home"] .hero h1 {
  font-size: clamp(4.2rem, 6.4vw, 7.35rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

body[data-page="home"] .hero-title-line-secondary {
  color: rgba(215, 240, 255, 0.88);
}

body[data-page="home"] .hero-lead {
  max-width: 34rem;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

body[data-page="home"] .hero-actions {
  justify-content: flex-start;
  margin-top: 6px;
}

body[data-page="home"] .button {
  min-height: 54px;
  padding: 0 22px;
}

body[data-page="home"] .button-primary {
  background: linear-gradient(135deg, #cbffd8, #8fddff 56%, #7abfff);
  box-shadow: 0 22px 56px rgba(119, 198, 255, 0.26);
}

body[data-page="home"] .button-secondary {
  background: rgba(255, 255, 255, 0.05);
}

body[data-page="home"] .hero-stats {
  justify-content: flex-start;
  gap: 10px;
  margin: 4px 0 0;
}

body[data-page="home"] .hero-stat {
  min-height: 38px;
  padding: 0 14px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-page="home"] .hero-story {
  width: 100%;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(10, 16, 21, 0.38), rgba(10, 16, 21, 0.16));
}

body[data-page="home"] .hero-story-kicker,
body[data-page="home"] .workbench-card-label {
  margin: 0 0 12px;
  color: rgba(235, 247, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

body[data-page="home"] .hero-story-lines {
  display: grid;
}

body[data-page="home"] .hero-story-lines p {
  margin: 0;
  padding: 14px 0;
  color: var(--text-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .hero-story-lines p:first-child {
  padding-top: 0;
  border-top: 0;
}

body[data-page="home"] .hero-story-lines p:last-child {
  padding-bottom: 0;
}

body[data-page="home"] .hero-media {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

body[data-page="home"] .hero-media::before {
  display: none;
}

body[data-page="home"] .hero-canvas {
  position: relative;
  width: 100%;
  padding: 24px;
  border-radius: 36px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(143, 221, 255, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(185, 255, 223, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

body[data-page="home"] .hero-canvas::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 24%);
  pointer-events: none;
}

body[data-page="home"] .hero-canvas-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

body[data-page="home"] .hero-canvas-copy {
  max-width: 31rem;
}

body[data-page="home"] .hero-canvas-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body[data-page="home"] .hero-canvas-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 18rem;
}

body[data-page="home"] .hero-canvas-pill,
body[data-page="home"] .hero-prompt-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.84rem;
}

body[data-page="home"] .hero-workspace {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

body[data-page="home"] .hero-prompt-card {
  padding: 24px 22px;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 17, 22, 0.92), rgba(12, 17, 22, 0.76)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 32%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-page="home"] .hero-prompt-copy {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
  text-wrap: pretty;
}

body[data-page="home"] .hero-prompt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

body[data-page="home"] .hero-preview-column {
  position: relative;
  min-height: clamp(420px, 48vw, 720px);
  padding: 32px 18px 24px 48px;
}

body[data-page="home"] .hero-preview-column::before {
  content: "";
  position: absolute;
  inset: 10% 8% 7% 16%;
  border-radius: 42px;
  background: radial-gradient(circle at center, rgba(143, 221, 255, 0.18), transparent 64%);
  filter: blur(24px);
  opacity: 0.85;
  pointer-events: none;
}

body[data-page="home"] .hero-preview-column .device-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  aspect-ratio: 17 / 12;
}

body[data-page="home"] .stage-preview {
  border-radius: 26px;
  background: rgba(7, 11, 15, 0.64);
}

body[data-page="home"] .stage-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    linear-gradient(180deg, transparent 74%, rgba(5, 9, 14, 0.2));
}

body[data-page="home"] .preview-sound-toggle-overlay {
  top: 16px;
  right: 16px;
}

body[data-page="home"] .stage-indicators {
  bottom: 18px;
  padding: 7px 13px;
  background: rgba(10, 15, 20, 0.28);
}

body[data-page="home"] .hero-media-note {
  position: absolute;
  z-index: 3;
  max-width: 240px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 18, 24, 0.9), rgba(12, 18, 24, 0.72)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 36%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .hero-media-note strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.42;
}

body[data-page="home"] .hero-media-note-primary {
  top: 18px;
  left: 0;
}

body[data-page="home"] .hero-media-note-secondary {
  right: 0;
  bottom: 0;
  max-width: 292px;
}

body[data-page="home"] .hero-signal-list {
  display: grid;
  gap: 10px;
}

body[data-page="home"] .hero-signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

body[data-page="home"] .hero-signal-row strong {
  text-align: right;
  color: var(--text);
  font-size: 0.94rem;
}

body[data-page="home"] .section-shell {
  display: grid;
  gap: 26px;
}

body[data-page="home"] .section-shell-split {
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  align-items: start;
}

body[data-page="home"] .section-shell-split .section-heading {
  position: sticky;
  top: 112px;
}

body[data-page="home"] .section-heading {
  max-width: 40rem;
  margin: 0;
}

body[data-page="home"] .section-heading .eyebrow {
  margin-bottom: 16px;
}

body[data-page="home"] .section-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

body[data-page="home"] .section-heading p {
  max-width: 34rem;
  margin-top: 14px;
}

body[data-page="home"] .section-panel {
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(10, 15, 20, 0.32), rgba(10, 15, 20, 0.12));
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body[data-page="home"] .section-panel-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(10, 15, 20, 0.34), rgba(10, 15, 20, 0.14));
}

body[data-page="home"] .experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .experience-card,
body[data-page="home"] .feature-card,
body[data-page="home"] .principle-card,
body[data-page="home"] .scene-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(14, 20, 26, 0.86), rgba(14, 20, 26, 0.64)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 36%);
  box-shadow: none;
}

body[data-page="home"] .experience-card {
  min-height: 232px;
}

body[data-page="home"] .experience-card:first-child {
  grid-column: span 2;
}

body[data-page="home"] .experience-card:last-child {
  background:
    radial-gradient(circle at top right, rgba(143, 221, 255, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(14, 20, 26, 0.86), rgba(14, 20, 26, 0.64));
}

body[data-page="home"] .feature-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .feature-card {
  grid-column: span 3;
  min-height: 220px;
}

body[data-page="home"] .feature-card:nth-child(1),
body[data-page="home"] .feature-card:nth-child(4),
body[data-page="home"] .feature-card:nth-child(7) {
  grid-column: span 6;
  min-height: 260px;
}

body[data-page="home"] .feature-card:nth-child(2),
body[data-page="home"] .feature-card:nth-child(5),
body[data-page="home"] .feature-card:nth-child(8) {
  background:
    radial-gradient(circle at top left, rgba(184, 255, 224, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(14, 20, 26, 0.86), rgba(14, 20, 26, 0.64));
}

body[data-page="home"] .scene-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .scene-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .scene-card:first-child {
  grid-column: span 7;
}

body[data-page="home"] .scene-card:nth-child(2),
body[data-page="home"] .scene-card:nth-child(3) {
  grid-column: span 5;
}

body[data-page="home"] .scene-card img {
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

body[data-page="home"] .scene-card:first-child img {
  aspect-ratio: 16 / 9;
  min-height: 420px;
}

body[data-page="home"] .scene-card-copy {
  flex: 1;
  padding: 24px;
}

body[data-page="home"] .principle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .principle-card {
  min-height: 220px;
}

body[data-page="home"] .principle-card:nth-child(2) {
  background:
    radial-gradient(circle at top, rgba(143, 221, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(14, 20, 26, 0.86), rgba(14, 20, 26, 0.64));
}

body[data-page="home"] .closing-panel {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(143, 221, 255, 0.14), transparent 30%),
    radial-gradient(circle at left bottom, rgba(184, 255, 224, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

body[data-page="home"] .site-footer {
  padding: 0 0 52px;
}

body[data-page="home"] .site-footer p,
body[data-page="home"] .site-footer small {
  margin: 0;
}

@media (max-width: 1120px) {
  body[data-page="home"] .hero-grid,
  body[data-page="home"] .section-shell-split {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .section-shell-split .section-heading {
    position: static;
  }

  body[data-page="home"] .hero-copy {
    max-width: none;
  }

  body[data-page="home"] .hero-title {
    max-width: 10ch;
  }

  body[data-page="home"] .hero-workspace {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-preview-column {
    min-height: auto;
    padding: 26px 0 52px;
  }

  body[data-page="home"] .hero-preview-column::before {
    inset: 12% 8% 8% 8%;
  }

  body[data-page="home"] .hero-media-note-primary {
    top: 10px;
    left: 10px;
  }

  body[data-page="home"] .hero-media-note-secondary {
    right: 10px;
    bottom: -4px;
  }

  body[data-page="home"] .experience-grid,
  body[data-page="home"] .principle-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .experience-card:first-child {
    grid-column: auto;
  }

  body[data-page="home"] .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .feature-card,
  body[data-page="home"] .feature-card:nth-child(1),
  body[data-page="home"] .feature-card:nth-child(4),
  body[data-page="home"] .feature-card:nth-child(7) {
    grid-column: auto;
    min-height: 220px;
  }

  body[data-page="home"] .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .scene-card:first-child {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .scene-card:nth-child(2),
  body[data-page="home"] .scene-card:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  body[data-page="home"] .site-header,
  body[data-page="home"] .home-main .section,
  body[data-page="home"] .site-footer {
    width: min(calc(100vw - 28px), 100%);
  }

  body[data-page="home"] .hero {
    padding-top: 30px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(3.2rem, 12vw, 4.6rem);
  }

  body[data-page="home"] .hero-title,
  body[data-page="home"] .hero-canvas-copy h2,
  body[data-page="home"] .section-heading h2 {
    max-width: none;
  }

  body[data-page="home"] .hero-story,
  body[data-page="home"] .hero-canvas,
  body[data-page="home"] .section-panel,
  body[data-page="home"] .closing-panel {
    padding: 20px;
    border-radius: 24px;
  }

  body[data-page="home"] .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  body[data-page="home"] .hero-canvas-header {
    flex-direction: column;
  }

  body[data-page="home"] .hero-canvas-pills {
    justify-content: flex-start;
    max-width: none;
  }

  body[data-page="home"] .hero-preview-column {
    padding: 18px 0 0;
  }

  body[data-page="home"] .hero-preview-column::before {
    inset: 15% 0 22% 0;
  }

  body[data-page="home"] .hero-preview-column .device-shell {
    padding: 8px;
    border-radius: 24px;
    aspect-ratio: 17 / 14;
  }

  body[data-page="home"] .stage-preview {
    border-radius: 18px;
  }

  body[data-page="home"] .hero-media-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  body[data-page="home"] .feature-grid,
  body[data-page="home"] .scene-grid,
  body[data-page="home"] .principle-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .scene-card:first-child,
  body[data-page="home"] .scene-card:nth-child(2),
  body[data-page="home"] .scene-card:nth-child(3),
  body[data-page="home"] .feature-card {
    grid-column: auto;
  }

  body[data-page="home"] .scene-card img,
  body[data-page="home"] .scene-card:first-child img {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
}

[data-locale="zh"] .hero h1 {
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  letter-spacing: -0.08em;
}

[data-locale="zh"] .hero-copy {
  max-width: 58rem;
}

[data-locale="zh"] .hero-title {
  max-width: none;
}

[data-locale="zh"] .hero-title-line {
  white-space: nowrap;
  word-break: keep-all;
  line-break: strict;
}

[data-locale="zh"] .hero-lead {
  max-width: 42rem;
  word-break: keep-all;
  line-break: strict;
}

[data-locale="zh"] .section-heading h2,
[data-locale="zh"] .closing-copy h2 {
  max-width: 20ch;
  word-break: keep-all;
  line-break: strict;
}

[data-locale="zh"] .section-heading p,
[data-locale="zh"] .closing-copy p {
  max-width: 42rem;
  word-break: keep-all;
  line-break: strict;
}

[data-locale="zh"] .hero-stat dt {
  letter-spacing: 0.08em;
}

body[data-page="home"][data-locale="zh"] .hero-title {
  max-width: 7.5ch;
}

body[data-page="home"][data-locale="zh"] .hero-title-line,
body[data-page="home"][data-locale="zh"] .hero-prompt-copy,
body[data-page="home"][data-locale="zh"] .hero-story-lines p {
  white-space: normal;
  word-break: keep-all;
  line-break: strict;
}

body[data-page="home"][data-locale="zh"] .hero-canvas-copy h2 {
  max-width: 11ch;
  font-size: clamp(1.66rem, 3vw, 2.3rem);
  word-break: keep-all;
  line-break: strict;
}

@media (max-width: 780px) {
  [data-locale="zh"] .hero-title-line {
    white-space: normal;
  }

  body[data-page="home"][data-locale="zh"] .hero h1 {
    font-size: clamp(2.78rem, 10.8vw, 4rem);
  }

  body[data-page="home"][data-locale="zh"] .hero-title {
    max-width: 8ch;
  }

  body[data-page="home"][data-locale="zh"] .hero-canvas-copy h2 {
    font-size: clamp(1.44rem, 8.2vw, 1.92rem);
  }

  body[data-page="home"][data-locale="zh"] .hero-prompt-tag,
  body[data-page="home"][data-locale="zh"] .hero-canvas-pill {
    padding: 0 10px;
    font-size: 0.78rem;
  }
}

body[data-page="home"] .ambient-orb {
  display: none;
}

body[data-page="home"] .ambient-grid {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.24) 1px, transparent 1.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.44) 74%, transparent 100%);
  opacity: 0.18;
}

body[data-page="home"] .site-header {
  width: min(1240px, calc(100vw - 40px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="home"] .brand-copy small {
  display: none;
}

body[data-page="home"] .site-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

body[data-page="home"] .site-nav a::after {
  bottom: -6px;
  background: rgba(255, 255, 255, 0.48);
}

body[data-page="home"] .locale-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .header-cta {
  border: 0;
  background: #f7f8fb;
  color: #090b0f;
  box-shadow: none;
}

body[data-page="home"] .hero {
  position: relative;
  min-height: calc(100svh - 82px);
  padding-top: clamp(56px, 10vh, 88px);
  padding-bottom: clamp(96px, 14vh, 148px);
  overflow: hidden;
}

body[data-page="home"] .hero::before,
body[data-page="home"] .hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  height: clamp(140px, 14vw, 240px);
  border-radius: 999px;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.96;
}

body[data-page="home"] .hero::before {
  left: -16vw;
  right: 48%;
  bottom: 10%;
  background:
    linear-gradient(90deg, rgba(123, 92, 255, 0) 0%, rgba(160, 128, 255, 0.92) 24%, rgba(182, 208, 255, 0.96) 72%, rgba(196, 219, 255, 0) 100%);
  transform: rotate(13deg);
  animation: heroLightLeft 18s ease-in-out infinite alternate;
}

body[data-page="home"] .hero::after {
  left: 48%;
  right: -14vw;
  bottom: 8%;
  background:
    linear-gradient(90deg, rgba(201, 226, 255, 0) 0%, rgba(172, 139, 255, 0.94) 28%, rgba(151, 189, 255, 0.96) 64%, rgba(206, 228, 255, 0) 100%);
  transform: rotate(-12deg);
  animation: heroLightRight 22s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  min-height: calc(100svh - 140px);
  gap: clamp(36px, 7vh, 72px);
  align-content: space-between;
  justify-items: center;
}

body[data-page="home"] .hero-copy {
  justify-items: center;
  gap: 18px;
  max-width: 72rem;
  text-align: center;
}

body[data-page="home"] .hero .eyebrow,
body[data-page="home"] .hero-actions,
body[data-page="home"] .hero-stats,
body[data-page="home"] .hero-story,
body[data-page="home"] .hero-canvas-header,
body[data-page="home"] .hero-prompt-card,
body[data-page="home"] .hero-media-note,
body[data-page="home"] .stage-indicators {
  display: none !important;
}

body[data-page="home"] .hero-title {
  max-width: 9.5ch;
}

body[data-page="home"] .hero h1 {
  font-size: clamp(4.8rem, 10vw, 8.8rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

body[data-page="home"] .hero-lead {
  max-width: 54rem;
  font-size: clamp(1.08rem, 1.9vw, 1.5rem);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.84);
}

body[data-page="home"] .hero-media {
  width: 100%;
  justify-content: center;
}

body[data-page="home"] .hero-canvas {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="home"] .hero-canvas::before {
  display: none;
}

body[data-page="home"] .hero-workspace {
  display: block;
}

body[data-page="home"] .hero-preview-column {
  position: relative;
  width: min(920px, calc(100vw - 72px));
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

body[data-page="home"] .hero-preview-column::before {
  display: none;
}

body[data-page="home"] .hero-preview-column .device-shell {
  width: 100%;
  aspect-ratio: 20 / 9;
  padding: 10px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(32, 36, 49, 0.92), rgba(15, 18, 24, 0.94)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 24%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 96px rgba(4, 6, 12, 0.48);
}

body[data-page="home"] .device-shell::before,
body[data-page="home"] .device-shell::after {
  display: none;
}

body[data-page="home"] .stage-preview {
  border-radius: 24px;
  background: rgba(5, 8, 12, 0.94);
}

body[data-page="home"] .stage-preview::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 14%),
    linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.34));
}

body[data-page="home"] .stage-center {
  padding: 24px;
}

body[data-page="home"] .digital-time {
  font-size: var(--time-font-size, clamp(3.4rem, 6vw, 5.4rem));
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.44);
}

body[data-page="home"] .preview-sound-toggle-overlay {
  top: 14px;
  right: 14px;
  min-width: 38px;
  min-height: 38px;
  background: rgba(10, 12, 18, 0.42);
}

body[data-page="home"][data-locale="zh"] .hero-title {
  max-width: 6.4ch;
}

body[data-page="home"][data-locale="zh"] .hero h1 {
  font-size: clamp(4.2rem, 9.2vw, 8rem);
}

@media (max-width: 900px) {
  body[data-page="home"] .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 88px;
  }

  body[data-page="home"] .hero::before {
    left: -34vw;
    right: 36%;
    bottom: 20%;
  }

  body[data-page="home"] .hero::after {
    left: 38%;
    right: -28vw;
    bottom: 16%;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.24rem, 9.8vw, 3.9rem);
  }

  body[data-page="home"] .hero-copy {
    width: 100%;
  }

  body[data-page="home"] .hero-title,
  body[data-page="home"][data-locale="zh"] .hero-title {
    max-width: 5.4ch;
  }

  body[data-page="home"] .hero-lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  body[data-page="home"] .hero-grid {
    min-height: auto;
    align-content: start;
  }

  body[data-page="home"] .hero-preview-column {
    width: min(100%, calc(100vw - 28px));
  }

  body[data-page="home"][data-locale="zh"] .hero h1 {
    font-size: clamp(2.02rem, 8.9vw, 3.32rem);
  }

  body[data-page="home"][data-locale="zh"] .hero-title {
    max-width: 4.8ch;
  }

  body[data-page="home"] .hero-preview-column .device-shell {
    padding: 8px;
    border-radius: 24px;
  }

  body[data-page="home"] .stage-preview {
    border-radius: 18px;
  }
}

@keyframes heroLightLeft {
  0% {
    transform: translate3d(0, 0, 0) rotate(13deg) scaleX(1);
    opacity: 0.9;
  }

  100% {
    transform: translate3d(3vw, -2vh, 0) rotate(10deg) scaleX(1.08);
    opacity: 1;
  }
}

@keyframes heroLightRight {
  0% {
    transform: translate3d(0, 0, 0) rotate(-12deg) scaleX(1);
    opacity: 0.88;
  }

  100% {
    transform: translate3d(-3vw, -2.5vh, 0) rotate(-9deg) scaleX(1.1);
    opacity: 1;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 50% 34%, rgba(30, 46, 60, 0.38), transparent 44%),
    linear-gradient(180deg, #07090d 0%, #091019 56%, #0c1822 100%);
}

body[data-page="home"]::before {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%);
  opacity: 0.52;
}

body[data-page="home"] .ambient-grid {
  opacity: 0.24;
}

body[data-page="home"] .site-header {
  width: min(1240px, calc(100vw - 48px));
  margin-top: 18px;
}

body[data-page="home"] .site-nav,
body[data-page="home"] .nav-toggle {
  display: none !important;
}

body[data-page="home"] .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
}

body[data-page="home"] .brand-copy strong {
  font-size: 0.94rem;
}

body[data-page="home"] .locale-button {
  min-width: 48px;
  padding: 9px 10px;
}

body[data-page="home"] .header-cta {
  min-height: 56px;
  padding: 0 24px;
  font-size: 0.96rem;
  font-weight: 700;
}

body[data-page="home"] .hero {
  min-height: calc(100svh - 26px);
  padding-top: clamp(24px, 4vh, 40px);
  padding-bottom: clamp(26px, 4vh, 40px);
}

body[data-page="home"] .hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100svh - 124px);
  gap: clamp(18px, 3vh, 28px);
}

body[data-page="home"] .hero-copy {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  gap: 14px;
}

body[data-page="home"] .hero-title {
  max-width: none;
}

body[data-page="home"] .hero-title-line {
  white-space: nowrap;
}

body[data-page="home"] .hero-title-line-secondary {
  color: rgba(255, 255, 255, 0.96);
}

body[data-page="home"] .hero h1 {
  font-size: clamp(4.2rem, 7.6vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

body[data-page="home"] .hero-lead {
  max-width: 56rem;
  margin-top: 4px;
  font-size: clamp(0.98rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

body[data-page="home"] .hero-media {
  width: 100%;
  margin-top: auto;
}

body[data-page="home"] .hero-preview-column {
  width: min(840px, calc(100vw - 96px));
}

body[data-page="home"] .hero-preview-column::before,
body[data-page="home"] .hero-preview-column::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 12px;
  width: 56%;
  height: 132px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.98;
}

body[data-page="home"] .hero-preview-column::before {
  left: -22%;
  background:
    linear-gradient(90deg, rgba(153, 120, 255, 0) 0%, rgba(148, 128, 255, 0.9) 24%, rgba(187, 210, 255, 0.95) 72%, rgba(198, 221, 255, 0) 100%);
  transform: rotate(10deg);
  animation: heroPreviewBeamLeft 14s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-preview-column::after {
  right: -22%;
  background:
    linear-gradient(90deg, rgba(198, 221, 255, 0) 0%, rgba(170, 143, 255, 0.95) 28%, rgba(156, 192, 255, 0.95) 68%, rgba(198, 221, 255, 0) 100%);
  transform: rotate(-10deg);
  animation: heroPreviewBeamRight 16s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-preview-column .device-shell {
  width: min(840px, 100%);
  padding: 9px;
  border-radius: 32px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
}

body[data-page="home"] .stage-preview {
  border-radius: 22px;
  overflow: clip;
  contain: paint;
}

body[data-page="home"] .stage-backgrounds {
  overflow: clip;
  contain: paint;
}

body[data-page="home"] .stage-background {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(
      calc(var(--stage-background-x, 0px) * 0.08),
      calc(var(--stage-background-y, 0px) * 0.08),
      0
    )
    scale(1.12);
}

body[data-page="home"] .stage-center {
  padding: 18px 24px;
}

body[data-page="home"] .digital-time {
  font-size: var(--time-font-size, clamp(3rem, 5.4vw, 4.8rem));
}

body[data-page="home"][data-locale="zh"] .hero h1 {
  font-size: clamp(3.8rem, 7vw, 6.2rem);
}

body[data-page="home"][data-locale="zh"] .hero-title-line {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  body[data-page="home"] .hero h1 {
    font-size: clamp(3.4rem, 7.8vw, 5.3rem);
  }

  body[data-page="home"][data-locale="zh"] .hero h1 {
    font-size: clamp(3rem, 7vw, 4.9rem);
  }

  body[data-page="home"] .hero-preview-column {
    width: min(760px, calc(100vw - 64px));
  }
}

@media (max-width: 780px) {
  body[data-page="home"] .site-header {
    width: min(calc(100vw - 28px), 100%);
    margin-top: 12px;
  }

  body[data-page="home"] .header-actions {
    gap: 8px;
  }

  body[data-page="home"] .header-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  body[data-page="home"] .hero {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 26px;
  }

  body[data-page="home"] .hero-grid {
    min-height: auto;
    gap: 18px;
  }

  body[data-page="home"] .hero-copy,
  body[data-page="home"] .hero-media {
    padding-inline: 8px;
  }

  body[data-page="home"] .hero-title-line {
    white-space: normal;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2.7rem, 11.2vw, 3.7rem);
    line-height: 0.95;
  }

  body[data-page="home"][data-locale="zh"] .hero h1 {
    font-size: clamp(1.86rem, 7.8vw, 2.56rem);
  }

  body[data-page="home"][data-locale="zh"] .hero-title {
    max-width: none;
  }

  body[data-page="home"][data-locale="zh"] .hero-title-line {
    white-space: nowrap;
    word-break: keep-all;
    line-break: strict;
  }

  body[data-page="home"] .hero-lead {
    max-width: 22rem;
    font-size: 0.92rem;
  }

  body[data-page="home"] .hero-preview-column {
    width: min(100%, calc(100vw - 28px));
  }

  body[data-page="home"] .hero-preview-column::before,
  body[data-page="home"] .hero-preview-column::after {
    bottom: 8px;
    width: 58%;
    height: 88px;
    filter: blur(18px);
  }

  body[data-page="home"] .hero-preview-column::before {
    left: -14%;
  }

  body[data-page="home"] .hero-preview-column::after {
    right: -14%;
  }

  body[data-page="home"] .hero-preview-column .device-shell {
    padding: 7px;
    border-radius: 22px;
  }

  body[data-page="home"] .stage-preview {
    border-radius: 16px;
  }

  body[data-page="home"] .digital-time {
    font-size: var(--time-font-size, clamp(2.1rem, 7.4vw, 3.2rem));
  }
}

@keyframes heroPreviewBeamLeft {
  0% {
    transform: translate3d(0, 0, 0) rotate(10deg) scaleX(1);
  }

  100% {
    transform: translate3d(3vw, -1vh, 0) rotate(7deg) scaleX(1.08);
  }
}

@keyframes heroPreviewBeamRight {
  0% {
    transform: translate3d(0, 0, 0) rotate(-10deg) scaleX(1);
  }

  100% {
    transform: translate3d(-3vw, -1vh, 0) rotate(-7deg) scaleX(1.08);
  }
}
