:root {
  --bg: #050813;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.18);
  --violet: #7e49ff;
  --ticker: rgba(58, 12, 126, 0.92);
  --green: #66f2a9;
}

* {
  box-sizing: border-box;
}

@property --chip-glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --interest-left-offset {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}

@property --interest-right-offset {
  syntax: "<percentage>";
  inherits: true;
  initial-value: -16.6666667%;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    sans-serif;
  line-height: 1.5;
}

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

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

.app {
  min-height: 100vh;
  overflow-x: clip;
  background: #030611;
}

@property --theme-split-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 50%;
}

.theme-split-experience {
  --theme-split-x: 50%;
  --interest-left-offset: 0%;
  --interest-right-offset: -16.6666667%;
  --theme-light-surface: #ffffff;
  --theme-core-light-surface: linear-gradient(0deg, #fefdfd 0%, #fefdfd 100%),
    linear-gradient(180deg, #fcfcfa 0%, #fcfcfa 77.97%, #f7f7f5 100%);

  position: relative;
  overflow: clip;
  isolation: isolate;
  background: #000;
  transition: --theme-split-x 0s linear;
}

.theme-split-snap-animating {
  transition: --theme-split-x 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-layer {
  --growth-surface: #000000;
  --theme-ink: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.76);
  --theme-muted-strong: rgba(255, 255, 255, 0.9);
  --theme-soft: rgba(255, 255, 255, 0.66);
  --theme-line: rgba(255, 255, 255, 0.18);
  --theme-control-bg: rgba(4, 6, 14, 0.86);
  --theme-control-border: rgba(255, 255, 255, 0.12);
  --theme-nav-bg: rgba(4, 6, 14, 0.46);
  --theme-ticker: rgba(58, 12, 126, 0.92);
  --theme-button-bg: #ffffff;
  --theme-button-ink: #080810;
  --theme-copy-shadow: 0 20px 52px rgba(0, 0, 0, 0.62);
  --theme-card-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --theme-mosaic-scrim: transparent;
  --theme-panel-overlay: rgba(3, 16, 30, 0.6);
  --theme-chip-bg: #f6fcff;
  --theme-chip-ink: #2e3442;
  --theme-core-bg: linear-gradient(
    180deg,
    #000 -4.88%,
    #030014 7.45%,
    #030014 83.55%,
    #02000a 97.1%,
    #000 111.43%
  );
  --theme-nvidia-mask: linear-gradient(66deg, #000 8.54%, rgba(0, 0, 0, 0) 90.66%);
  --theme-footer-bg: #000;
  --theme-asset-filter: none;
  --theme-logo-filter: none;
  --theme-video-filter: brightness(0.9) contrast(1.08) saturate(0.95);

  color: var(--theme-ink);
  background: var(--growth-surface);
}

.theme-rest-layers {
  position: relative;
  background: #000;
}

.theme-layer-dark {
  position: relative;
  z-index: 1;
}

.theme-layer-light {
  --growth-surface: var(--theme-light-surface);
  --theme-ink: #07111f;
  --theme-muted: rgba(7, 17, 31, 0.7);
  --theme-muted-strong: rgba(7, 17, 31, 0.84);
  --theme-soft: rgba(7, 17, 31, 0.58);
  --theme-line: rgba(7, 17, 31, 0.16);
  --theme-control-bg: rgba(255, 255, 255, 0.84);
  --theme-control-border: rgba(15, 32, 54, 0.14);
  --theme-nav-bg: rgba(250, 253, 255, 0.78);
  --theme-ticker: rgba(227, 236, 255, 0.96);
  --theme-button-bg: #07111f;
  --theme-button-ink: #ffffff;
  --theme-copy-shadow: none;
  --theme-card-shadow: 0 24px 60px rgba(68, 91, 132, 0.16);
  --theme-mosaic-scrim: transparent;
  --theme-panel-overlay: rgba(246, 251, 255, 0.74);
  --theme-chip-bg: #ffffff;
  --theme-chip-ink: #122033;
  --theme-core-bg: var(--theme-core-light-surface);
  --theme-nvidia-mask: linear-gradient(66deg, #000 8.54%, rgba(0, 0, 0, 0) 90.66%);
  --theme-footer-bg: #f4f8ff;
  --theme-asset-filter: none;
  --theme-logo-filter: brightness(0) saturate(100%) invert(7%) sepia(24%) saturate(1308%)
    hue-rotate(180deg) brightness(96%) contrast(96%);
  --theme-video-filter: brightness(0.9) contrast(1.08) saturate(0.95);

  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
  clip-path: inset(0 calc(100% - var(--theme-split-x)) 0 0);
}

.theme-split-control {
  position: absolute;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.theme-split-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  pointer-events: none;
}

.theme-split-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--theme-split-x);
  width: 3px;
  background: #f7e7ce;
  transform: translateX(-50%);
}

.theme-split-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--theme-split-x);
  width: 96px;
  cursor: ew-resize;
  pointer-events: auto;
  touch-action: none;
  transform: translateX(-50%);
}

.theme-split-snapped-left .theme-split-hit {
  transform: translateX(0);
}

.theme-split-snapped-right .theme-split-hit {
  transform: translateX(-100%);
}

.theme-split-hit:focus-visible {
  outline: 2px solid #70e0ff;
  outline-offset: 4px;
}

.theme-split-edge-badge {
  position: absolute;
  top: 50%;
  display: flex;
  height: 37px;
  align-items: center;
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid #22262f;
  box-shadow: 0 11px 25px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-split-edge-badge-left {
  left: 0;
  padding: 2px 3px 2px 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-left: 0;
  justify-content: flex-end;
  transform: translate(-100%, -50%);
}

.theme-split-edge-badge-right {
  right: 0;
  padding: 2px 10px 2px 3px;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  justify-content: flex-start;
  transform: translate(100%, -50%);
}

.theme-split-edge-disc {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  color: #11131a;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}

.theme-split-edge-disc svg {
  display: block;
  width: 19px;
  height: 19px;
}

.theme-split-snapped-left .theme-split-edge-badge-left {
  opacity: 1;
  transform: translate(0, -50%);
}

.theme-split-snapped-right .theme-split-edge-badge-right {
  opacity: 1;
  transform: translate(0, -50%);
}

.theme-split-snapped-left .theme-split-line,
.theme-split-snapped-right .theme-split-line {
  opacity: 0;
}

.theme-split-line {
  transition: opacity 200ms ease;
}

.theme-split-handle {
  position: absolute;
  top: var(--theme-split-handle-y, 50%);
  left: 50%;
  display: flex;
  width: 96px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.theme-split-handle img {
  display: block;
  width: 100%;
  height: 100%;
}

.theme-split-dragging .theme-split-handle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 140ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-split-dragging,
.theme-split-dragging * {
  user-select: none;
}

.sequence-section {
  position: relative;
  min-height: 500vh;
  background: #030611;
}

.phase-scroll-space {
  position: relative;
  height: 400vh;
  pointer-events: none;
}

.phase-target {
  position: absolute;
  left: 0;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.phase-target-25 {
  top: 0;
}

.phase-target-50 {
  top: 100vh;
}

.phase-target-75 {
  top: 200vh;
}

.sequence-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #030611 url("/frames/hero_0001.webp") center / cover no-repeat;
}

.sequence-sticky::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 6, 17, 0.16) 0%, rgba(3, 6, 17, 0) 42%),
    linear-gradient(
      90deg,
      rgba(3, 6, 17, 0.64) 0%,
      rgba(3, 6, 17, 0.1) 42%,
      rgba(3, 6, 17, 0.44) 100%
    ),
    radial-gradient(circle at 50% 68%, rgba(126, 73, 255, 0.12), transparent 46%);
}

.sequence-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.star-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.78;
  background-image:
    radial-gradient(circle at 7% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 39% 7%, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 19%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 87% 37%, rgba(255, 255, 255, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 93% 71%, rgba(255, 255, 255, 0.68) 0 1px, transparent 2px);
}

.intro-header,
.data-chrome,
.final-brand {
  position: absolute;
  z-index: 20;
}

.intro-header {
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 126px;
  padding: 28px 42px;
  background: transparent;
}

.data-chrome {
  top: 0;
  right: 0;
  left: 0;
}

.final-brand {
  top: 64px;
  left: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.44);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: clamp(48px, 4.8vw, 66px);
  height: clamp(48px, 4.8vw, 66px);
  flex: 0 0 auto;
  place-items: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  place-items: center;
}

.icon-button img {
  display: block;
}

.language-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  overflow: visible;
  border-radius: 50%;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms ease,
    opacity 220ms ease;
}

.language-toggle:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.24));
  transform: translateY(-1px);
}

.language-toggle:active {
  transform: scale(0.92);
}

.language-icon-wrap {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  transform-origin: center;
  animation: language-swap 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.language-icon-wrap svg {
  display: block;
  width: 32px;
  height: 32px;
}

.login-button,
.primary-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--theme-button-ink, #07101f);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  background: var(--theme-button-bg, #f8fbff);
  border: 1px solid var(--theme-line, rgba(255, 255, 255, 0.72));
  border-radius: 4px;
}

.control-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 58px;
  padding: 0 28px;
  background: var(--theme-control-bg, rgba(4, 6, 14, 0.72));
  border-bottom: 1px solid var(--theme-control-border, rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(10px);
}

.control-bar-title {
  padding: 0;
  color: var(--theme-ink, #f3f5ff);
  font-family: Inter, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 850;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.control-bar .top-actions {
  justify-self: end;
  gap: 12px;
}

.menu-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-ink, #f3f5ff);
  font-size: 14px;
  font-weight: 850;
}

.menu-icon {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.auth-page {
  --theme-ink: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.76);
  --theme-muted-strong: rgba(255, 255, 255, 0.9);
  --theme-line: rgba(255, 255, 255, 0.18);
  --theme-control-bg: rgba(4, 6, 14, 0.94);
  --theme-control-border: rgba(255, 255, 255, 0.12);
  --theme-button-bg: #ffffff;
  --theme-button-ink: #080810;

  min-height: 100vh;
  color: #07111f;
  background: #ffffff;
}

.auth-shell {
  display: grid;
  min-height: calc(100vh - 58px);
  grid-template-columns: minmax(0, 60%) minmax(430px, 40%);
}

.auth-visual {
  position: relative;
  display: flex;
  min-height: calc(100vh - 58px);
  padding: clamp(72px, 9.3vw, 150px);
  overflow: hidden;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #120023;
}

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

.auth-visual-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, #130024 0%, rgba(13, 0, 36, 0.8) 50%, rgba(14, 0, 36, 0) 100%),
    rgba(19, 0, 36, 0.48);
}

.auth-visual-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  transform: translateX(20px);
}

.auth-control-bar .control-bar-title {
  color: #ffffff;
}

.auth-visual-copy h1 {
  margin: 0;
  font-size: clamp(38px, 3.35vw, 60px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}

.auth-visual-copy h1 span {
  display: block;
  white-space: nowrap;
}

.auth-title-cn {
  font-size: 0.86em;
}

.auth-visual-copy p {
  max-width: 640px;
  margin: 32px 0 0;
  color: rgba(175, 207, 255, 0.82);
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 700;
  line-height: 1.55;
}

.auth-visual-copy > p span {
  display: block;
  white-space: nowrap;
}

.auth-visual-copy blockquote {
  margin: 48px 0 0;
  padding-left: 28px;
  border-left: 3px solid #22a36c;
}

.auth-visual-copy blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.16vw, 22px);
  font-weight: 500;
}

.auth-visual-copy cite {
  display: block;
  margin-top: 8px;
  color: #20a96b;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.auth-panel {
  position: relative;
  display: flex;
  min-height: calc(100vh - 58px);
  padding: clamp(52px, 6vw, 96px) clamp(44px, 7vw, 112px);
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.auth-close {
  position: absolute;
  top: 22px;
  right: 28px;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 50%;
  place-items: center;
}

.auth-close svg {
  width: 20px;
  height: 20px;
}

.auth-close path {
  fill: none;
  stroke: #07111f;
  stroke-width: 2;
  stroke-linecap: round;
}

.auth-card {
  width: min(100%, 420px);
}

.auth-card h2 {
  margin: 0;
  color: #07111f;
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: 0;
}

.auth-subtitle {
  margin: 10px 0 0;
  color: rgba(7, 17, 31, 0.72);
  font-size: 17px;
  font-weight: 700;
}

.auth-tabs {
  display: flex;
  gap: 28px;
  margin-top: 42px;
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
}

.auth-tabs button {
  position: relative;
  padding: 0 0 16px;
  color: rgba(7, 17, 31, 0.66);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.auth-tabs .auth-tab-active {
  color: #07111f;
}

.auth-tabs .auth-tab-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: #07111f;
}

.auth-form {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.auth-field {
  display: grid;
  gap: 10px;
}

.auth-field-label {
  color: rgba(7, 17, 31, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.auth-input-wrap {
  display: flex;
  height: 58px;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: #f1f2f4;
  border-radius: 4px;
}

.auth-input-wrap svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #8a9099;
}

.auth-input-wrap svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-input-wrap input {
  min-width: 0;
  flex: 1;
  color: #07111f;
  font-size: 15px;
  background: transparent;
  border: 0;
  outline: 0;
}

.auth-input-wrap input::placeholder {
  color: #a8aeb8;
}

.auth-eye {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  place-items: center;
}

.auth-eye svg {
  width: 25px;
  height: 17px;
}

.auth-eye svg * {
  fill: #74777f;
  stroke: none;
}

.auth-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  align-items: end;
}

.auth-code-row > button {
  height: 58px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  background: #001329;
  border: 0;
  border-radius: 4px;
}

.auth-check {
  display: flex;
  min-height: 22px;
  align-items: center;
  gap: 10px;
  color: rgba(7, 17, 31, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.auth-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #001329;
}

.auth-check a {
  color: #b88a1d;
}

.auth-check > a {
  margin-left: auto;
  color: #07111f;
}

.auth-submit {
  display: inline-flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  background: #001329;
  border: 0;
  border-radius: 4px;
}

.auth-divider {
  height: 1px;
  margin: 46px 0 38px;
  background: rgba(7, 17, 31, 0.08);
}

.auth-google {
  display: inline-flex;
  width: 100%;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #1d2632;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 4px;
}

.auth-google svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.auth-footer {
  margin-top: clamp(56px, 8vh, 96px);
  color: rgba(7, 17, 31, 0.38);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.auth-footer p {
  margin: 0 0 8px;
}

.auth-footer nav {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.breadcrumb {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.92));
  font-size: clamp(14px, 1.35vw, 20px);
  font-weight: 500;
  background: var(--theme-nav-bg, rgba(4, 6, 14, 0.46));
  border-bottom: 1px solid var(--theme-control-border, rgba(255, 255, 255, 0.08));
}

.breadcrumb a:not(:last-child)::after {
  margin-left: 12px;
  color: var(--theme-soft, rgba(255, 255, 255, 0.62));
  content: "|";
}

.ticker {
  width: calc(100% - clamp(32px, 12vw, 320px));
  min-width: min(100%, 320px);
  height: 42px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--theme-ticker, var(--ticker));
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  will-change: transform;
  animation: ticker-loop 23s linear infinite;
}

.ticker-group {
  display: flex;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
  color: var(--theme-muted-strong, #f6efff);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.ticker-group span:first-child {
  color: var(--green);
  font-weight: 800;
}

.subscription-page {
  --theme-ink: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.76);
  --theme-muted-strong: rgba(255, 255, 255, 0.9);
  --theme-soft: rgba(255, 255, 255, 0.62);
  --theme-line: rgba(255, 255, 255, 0.2);
  --theme-control-bg: rgba(10, 10, 12, 0.96);
  --theme-control-border: rgba(255, 255, 255, 0.12);
  --theme-nav-bg: rgba(10, 10, 12, 0.96);
  --theme-button-bg: #ffffff;
  --theme-button-ink: #07111f;
  --theme-footer-bg: #000;
  --theme-logo-filter: none;

  min-height: 100vh;
  color: #1a1f2b;
  background: #f5f5f5;
}

.subscription-chrome {
  position: sticky;
  top: 0;
  z-index: 80;
}

.subscription-letter {
  padding: clamp(80px, 7vw, 128px) 24px clamp(72px, 7vw, 112px);
}

.subscription-letter-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.subscription-letter-head img {
  display: block;
  width: clamp(96px, 8vw, 136px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(8%) sepia(12%) saturate(1220%) hue-rotate(179deg)
    brightness(95%) contrast(94%);
}

.subscription-letter-head h1 {
  margin: 16px 0 0;
  color: #303030;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 850;
  line-height: 1.1;
}

.subscription-letter-head p {
  margin: 8px 0 0;
  color: #a4acb8;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
}

.subscription-letter-card {
  --subscription-sign-gap: 28px;

  display: flex;
  width: min(1132px, calc(100vw - 48px));
  margin: clamp(42px, 4.2vw, 68px) auto 0;
  padding: clamp(41px, 4vw, 65px) clamp(41px, 4vw, 65px) var(--subscription-sign-gap);
  flex-direction: column;
  color: #4d4d4d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1.78;
  background: #ffffff;
  border: 1px solid #e0e3e8;
}

.subscription-letter-card p {
  margin: 0 0 26px;
}

.subscription-letter-card ol {
  margin: 29px 0;
  padding: 0 0 0 42px;
  border-left: 3px solid #5c4ad8;
}

.subscription-letter-card li {
  margin: 10px 0;
}

.subscription-letter-card strong {
  color: #3a3a3a;
  font-weight: 850;
}

.subscription-feedback span {
  display: block;
}

.subscription-cta {
  display: flex;
  min-height: 55px;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 0;
  font-size: 16px;
  font-weight: 850;
  font-family: inherit;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #332a72 0%, #6150d8 100%);
  cursor: pointer;
}

.subscription-letter-card .subscription-sign {
  margin: var(--subscription-sign-gap) 0 0 auto;
  color: #9ba3af;
  font-weight: 700;
  text-align: right;
}

.waitlist-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 3, 8, 0.5);
  animation: waitlist-layer-in 220ms ease both;
}

.waitlist-modal {
  position: relative;
  width: min(500px, calc(100vw - 32px));
  min-height: 286px;
  padding: 36px 34px 40px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  border-radius: 32.022px;
  background: linear-gradient(180deg, #0e0a1b 0%, #393081 100%);
  box-shadow:
    0 10.007px 15.01px -3.002px rgba(0, 0, 0, 0.1),
    0 4.003px 6.004px -4.003px rgba(0, 0, 0, 0.1);
  animation: waitlist-modal-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.waitlist-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  color: #ffffff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.waitlist-modal-close svg {
  width: 18px;
  height: 18px;
}

.waitlist-modal-close path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.waitlist-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.waitlist-title-wrap {
  position: relative;
  display: grid;
  min-height: 62px;
  place-items: center;
}

.waitlist-title {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.waitlist-title span {
  display: block;
}

.waitlist-title-thanks {
  opacity: 0;
  transform: translateY(8px);
}

.waitlist-modal-submitted .waitlist-title-entry {
  opacity: 0;
  transform: translateY(-8px);
}

.waitlist-modal-submitted .waitlist-title-thanks {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 110ms;
}

.waitlist-subtitle {
  margin: 15px 0 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.waitlist-form {
  position: relative;
  width: 340px;
  height: 60px;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(12, 9, 25, 0.18),
    0 3px 10px rgba(255, 255, 255, 0.18);
  transform-origin: center;
  transition:
    width 620ms cubic-bezier(0.72, 0, 0.18, 1),
    box-shadow 420ms ease;
}

.waitlist-form-submitted {
  width: 171px;
  box-shadow:
    inset 0 0 0 1px rgba(12, 9, 25, 0.14),
    0 3px 12px rgba(255, 255, 255, 0.2);
}

.waitlist-field {
  display: block;
  height: 100%;
}

.waitlist-field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.waitlist-field input {
  width: 100%;
  height: 100%;
  padding: 0 82px 0 25px;
  color: #151515;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  background: transparent;
  transition:
    opacity 220ms ease,
    transform 360ms ease;
}

.waitlist-field input::placeholder {
  color: #202020;
  opacity: 1;
}

.waitlist-form-submitted .waitlist-field input {
  opacity: 0;
  transform: scaleX(0.72);
}

.waitlist-submit {
  position: absolute;
  top: 50%;
  right: 7px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 6px solid #000000;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transform-origin: center;
  transition:
    right 620ms cubic-bezier(0.72, 0, 0.18, 1),
    width 420ms ease,
    height 420ms ease,
    border-width 420ms ease,
    background 420ms ease,
    transform 620ms cubic-bezier(0.72, 0, 0.18, 1);
}

.waitlist-submit-arrow,
.waitlist-submit-check {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
}

.waitlist-submit-arrow {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 180ms ease,
    transform 260ms ease;
}

.waitlist-submit-check {
  opacity: 0;
  transform: scale(0.55) rotate(-16deg);
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.2, 1.25, 0.28, 1);
}

.waitlist-submit svg {
  display: block;
}

.waitlist-form-submitted .waitlist-submit {
  right: 50%;
  width: 49px;
  height: 49px;
  border: 8.006px solid var(--color-black-solid, #000);
  border-radius: 99.069px;
  background: var(--color-grey-9640, rgba(245, 245, 245, 0.4));
  cursor: default;
  transform: translate(50%, -50%) rotate(360deg);
}

.waitlist-form-submitted .waitlist-submit-arrow {
  opacity: 0;
  transform: translateX(18px);
}

.waitlist-form-submitted .waitlist-submit-check {
  opacity: 1;
  transform: scale(0.7) rotate(0deg);
  transition-delay: 420ms;
}

@keyframes waitlist-layer-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes waitlist-modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  .waitlist-modal-layer {
    padding: 14px;
  }

  .waitlist-modal {
    min-height: 276px;
    padding: 34px 20px 36px;
    border-radius: 26px;
  }

  .waitlist-kicker {
    font-size: 14px;
  }

  .waitlist-title-wrap {
    min-height: 58px;
  }

  .waitlist-title {
    font-size: 23px;
  }

  .waitlist-subtitle {
    font-size: 12px;
  }

  .waitlist-form {
    width: min(340px, 100%);
  }

  .waitlist-form-submitted {
    width: 171px;
  }
}

.phase-copy {
  position: absolute;
  z-index: 12;
  color: #fff;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
  will-change: transform, opacity;
}

.phase-copy h1,
.phase-copy h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.phase-copy .launch-title {
  display: inline-flex;
  align-items: center;
  gap: 0.16em;
  line-height: 1;
  white-space: nowrap;
}

.launch-title-en,
.launch-title-cn {
  display: block;
  flex: 0 0 auto;
  line-height: 1;
}

.launch-title-cn {
  transform: translateY(-0.01em);
}

.phase-copy h1,
.phase-copy-left h2,
.phase-copy-center h2 {
  font-size: clamp(40px, 4.2vw, 64px);
}

.phase-copy-intro h1,
.phase-copy-left h2,
.phase-copy-center h2 {
  white-space: nowrap;
}

.phase-copy p {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.58;
}

.phase-copy-intro {
  top: 35.2%;
  right: 0;
  left: 0;
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}

.phase-copy-intro p,
.phase-copy-center p {
  margin-right: auto;
  margin-left: auto;
}

.phase-copy-left {
  top: 38%;
  left: 11%;
  width: min(980px, calc(100% - 56px));
}

.phase-copy-center {
  top: 43%;
  right: 0;
  left: 0;
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}

.phase-copy-metrics {
  bottom: 7%;
  left: 6.2%;
  width: min(1180px, calc(100% - 56px));
}

.phase-copy-metrics h2 {
  font-size: clamp(34px, 3.35vw, 56px);
}

.phase-copy-metrics p {
  max-width: 720px;
  margin-top: 18px;
}

.metric-line {
  display: block;
}

.metric-line-nowrap {
  white-space: nowrap;
}

.primary-link {
  min-width: 166px;
  margin-top: 34px;
  box-shadow: 0 18px 48px rgba(127, 92, 255, 0.22);
}

.primary-link::after {
  margin-left: 12px;
  content: ">";
}

.play-button {
  position: relative;
  width: 42px;
  height: 26px;
  margin-top: 42px;
  cursor: pointer;
  background: rgba(3, 6, 17, 0.26);
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
}

.play-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  transform: translate(-35%, -50%);
}

.mini-links {
  position: absolute;
  right: 50%;
  bottom: 5.2%;
  z-index: 12;
  display: flex;
  width: min(500px, calc(100% - 48px));
  gap: 40px;
  transform: translateX(50%);
}

.mini-link {
  position: relative;
  flex: 1;
  padding-bottom: 11px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.mini-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.86);
}

.scroll-cue {
  position: absolute;
  right: 5.2%;
  bottom: 5.5%;
  z-index: 12;
  display: grid;
  width: 34px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  place-items: center;
}

.scroll-cue span {
  position: relative;
  width: 3px;
  height: 34px;
  background: #ffffff;
}

.scroll-cue span::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.growth-continuation {
  --mosaic-side-column: 32.8%;
  --mosaic-center-column: 32%;
  --mosaic-column-gap: 1.2%;

  position: relative;
  overflow: hidden;
  color: var(--theme-ink, #fff);
  background: var(--growth-surface);
}

.growth-preview-stable {
  --growth-surface: #000000;
  --growth-surface-light: #ffffff;
  --theme-ink: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.76);
  --theme-muted-strong: rgba(255, 255, 255, 0.9);
  --theme-soft: rgba(255, 255, 255, 0.66);
  --theme-line: rgba(255, 255, 255, 0.18);
  --theme-nav-bg: rgba(4, 6, 14, 0.46);
  --theme-button-bg: #ffffff;
  --theme-button-ink: #080810;
  --theme-copy-shadow: 0 20px 52px rgba(0, 0, 0, 0.62);
  --theme-card-shadow: none;
  --theme-video-filter: brightness(0.9) contrast(1.08) saturate(0.95);
  --theme-video-card-bg: #111111;
  --theme-control-border: rgba(255, 255, 255, 0.045);
  --theme-title-start: #ffffff;
  --theme-title-end: rgba(255, 255, 255, 0.35);
}

.growth-preview-spacer {
  min-height: 1600px;
  pointer-events: none;
}

.mosaic-hero {
  position: relative;
  min-height: 1600px;
  overflow: hidden;
  background: var(--growth-surface);
}

.growth-preview-stable .mosaic-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: var(--growth-surface-light);
  clip-path: inset(0 calc(100% - var(--theme-split-x, 0%)) 0 0);
}

.mosaic-hero::after {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  background: var(--theme-mosaic-scrim, transparent);
}

.mosaic-board {
  position: absolute;
  top: 72px;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1220px;
}

.mosaic-tile {
  position: absolute;
}

.mosaic-video-card {
  overflow: hidden;
  background: var(--theme-video-card-bg, #111);
  border: 1px solid var(--theme-control-border, rgba(255, 255, 255, 0.045));
  border-radius: 7px;
  box-shadow: var(--theme-card-shadow, 0 28px 80px rgba(0, 0, 0, 0.48));
}

.mosaic-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--theme-video-filter, brightness(0.9) contrast(1.08) saturate(0.95));
}

.mosaic-tile-1 {
  top: 0;
  left: 0;
  width: var(--mosaic-side-column);
  height: 430px;
}

.mosaic-tile-2 {
  top: 210px;
  left: calc(var(--mosaic-side-column) + var(--mosaic-column-gap));
  width: var(--mosaic-center-column);
  height: 530px;
}

.mosaic-tile-3 {
  top: 70px;
  right: 0;
  width: var(--mosaic-side-column);
  height: 430px;
}

.mosaic-tile-4 {
  top: 445px;
  left: 0;
  width: var(--mosaic-side-column);
  height: 380px;
}

.mosaic-tile-5 {
  top: 755px;
  left: calc(var(--mosaic-side-column) + var(--mosaic-column-gap));
  width: var(--mosaic-center-column);
  height: 230px;
}

.mosaic-tile-6 {
  top: 515px;
  right: 0;
  width: var(--mosaic-side-column);
  height: 380px;
}

.mosaic-tile-7 {
  top: 840px;
  left: 0;
  width: var(--mosaic-side-column);
  height: 430px;
}

.mosaic-tile-8 {
  top: 1000px;
  left: calc(var(--mosaic-side-column) + var(--mosaic-column-gap));
  width: var(--mosaic-center-column);
  height: 500px;
}

.mosaic-tile-9 {
  top: 910px;
  right: 0;
  width: var(--mosaic-side-column);
  height: 430px;
}

.mosaic-copy {
  position: relative;
  z-index: 12;
  display: flex;
  width: 100%;
  min-height: 690px;
  margin: 0 auto;
  padding: 160px 24px 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
  text-shadow: var(--theme-copy-shadow, 0 20px 52px rgba(0, 0, 0, 0.62));
}

.mosaic-copy-light {
  display: none;
}

.growth-preview-stable .mosaic-copy-light {
  --theme-ink: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.76);
  --theme-muted-strong: rgba(255, 255, 255, 0.9);
  --theme-soft: rgba(255, 255, 255, 0.66);
  --theme-line: rgba(7, 17, 31, 0.16);
  --theme-button-bg: #07111f;
  --theme-button-ink: #ffffff;
  --theme-copy-shadow: none;
  --theme-title-start: #ffffff;
  --theme-title-end: rgba(255, 255, 255, 0.35);

  position: absolute;
  inset: 0;
  z-index: 13;
  display: flex;
  color: #07111f;
  pointer-events: none;
  clip-path: inset(0 calc(100% - var(--theme-split-x, 0%)) 0 0);
}

.growth-preview-stable .mosaic-copy-light .mosaic-pill {
  --theme-muted-strong: rgba(7, 17, 31, 0.84);
  --theme-nav-bg: rgba(250, 253, 255, 0.78);
  --theme-line: rgba(7, 17, 31, 0.16);
}

.mosaic-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.86));
  font-size: 16px;
  font-weight: 700;
  background: var(--theme-nav-bg, rgba(255, 255, 255, 0.1));
  border: 1px solid var(--theme-line, rgba(255, 255, 255, 0.28));
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.mosaic-copy h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 1160px;
  margin: 24px 0 0;
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
  background: linear-gradient(
    108deg,
    var(--theme-title-start, #fff) 28%,
    var(--theme-title-end, rgba(255, 255, 255, 0.35)) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mosaic-copy h2 span,
.mosaic-copy h2 strong {
  display: block;
}

.mosaic-copy h2 strong {
  font: inherit;
}

.mosaic-title-line {
  white-space: nowrap;
}

.mosaic-copy p {
  max-width: min(1120px, 100%);
  margin: 22px 0 0;
  color: var(--theme-muted, rgba(255, 255, 255, 0.76));
  font-size: 15px;
  line-height: 1.72;
}

.mosaic-copy p span {
  display: block;
  white-space: nowrap;
}

.mosaic-start {
  display: inline-flex;
  min-width: 142px;
  min-height: 44px;
  margin-top: 38px;
  align-items: center;
  justify-content: center;
  color: var(--theme-button-ink, #0d0d0d);
  font-size: 13px;
  font-weight: 800;
  background: var(--theme-button-bg, #fff);
  border: 1px solid var(--theme-line, transparent);
  border-radius: 999px;
  box-shadow: 0 22px 54px rgba(255, 255, 255, 0.18);
}

.growth-preview-stable .mosaic-copy-light .mosaic-start {
  box-shadow: none;
}

.mosaic-kicker {
  margin-top: 58px;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.86));
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mosaic-device-gradient {
  display: block;
  width: 2px;
  height: 74px;
  margin-top: 10px;
  background: linear-gradient(180deg, var(--theme-ink, #fff) 0%, rgba(255, 255, 255, 0) 100%);
}

.interest-section {
  --interest-border-1: #48e7ea;
  --interest-border-2: #4853ea;
  --interest-border-3: #48e7ea;
  --interest-border-4: #4853ea;
  --interest-border-5: #ead248;
  --interest-border-6: #ea7348;
  --interest-border-7: #48e7ea;
  --interest-pad-x: 28px;
  --interest-pad-top: clamp(160px, 12vw, 220px);
  --interest-pad-bottom: 0px;

  position: relative;
  z-index: 9;
  padding: var(--interest-pad-top) var(--interest-pad-x) var(--interest-pad-bottom);
  overflow: hidden;
  text-align: center;
  color: var(--theme-ink, #fff);
  background: var(--growth-surface);
  animation: interest-sync 18s linear infinite;
}

.interest-section-split {
  --growth-surface: #000000;
  --theme-ink: #ffffff;
  --theme-muted-strong: rgba(255, 255, 255, 0.9);

  background: #000000;
}

.interest-section-split::before {
  position: absolute;
  inset: 0 0 -1px;
  z-index: 0;
  content: "";
  background: var(--theme-light-surface, #f5f8ff);
  clip-path: inset(0 calc(100% - var(--theme-split-x)) 0 0);
}

.interest-copy {
  position: relative;
  z-index: 1;
}

.interest-copy-light {
  --theme-ink: #07111f;
  --theme-muted-strong: rgba(7, 17, 31, 0.84);

  position: absolute;
  top: var(--interest-pad-top);
  right: var(--interest-pad-x);
  left: var(--interest-pad-x);
  z-index: 2;
  color: var(--theme-ink);
  pointer-events: none;
  clip-path: inset(0 calc(100% - var(--theme-split-x)) 0 0);
}

.post-interest-sections {
  position: relative;
  background: var(--growth-surface);
}

.post-interest-sections .core-features {
  margin-top: -1px;
}

.persistent-data-chrome {
  position: sticky;
  top: 0;
  z-index: 40;
}

.split-data-chrome {
  position: sticky;
  top: 0;
  z-index: 65;
  height: 58px;
  margin-bottom: -58px;
  overflow: hidden;
  background: #050813;
  contain: paint;
  transform: translateZ(0);
}

.split-data-chrome-layer {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
}

.split-data-chrome-dark {
  --theme-ink: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.76);
  --theme-muted-strong: rgba(255, 255, 255, 0.9);
  --theme-line: rgba(255, 255, 255, 0.18);
  --theme-control-border: rgba(255, 255, 255, 0.12);
  --theme-button-bg: #ffffff;
  --theme-button-ink: #080810;

  color: #ffffff;
}

.split-data-chrome-light {
  --theme-ink: #07111f;
  --theme-muted: rgba(7, 17, 31, 0.7);
  --theme-muted-strong: rgba(7, 17, 31, 0.84);
  --theme-line: rgba(7, 17, 31, 0.16);
  --theme-control-border: rgba(15, 32, 54, 0.14);
  --theme-button-bg: #07111f;
  --theme-button-ink: #ffffff;

  color: #07111f;
  pointer-events: none;
  clip-path: inset(0 calc(100% - var(--theme-split-x)) 0 0);
}

.split-control-bar {
  background: #050813;
  border-bottom-color: var(--theme-control-border);
  backdrop-filter: none;
}

.split-data-chrome-light .split-control-bar {
  background: #cfe3f6;
}

.split-data-chrome-light .menu-icon {
  filter: brightness(0) saturate(100%) invert(7%) sepia(24%) saturate(1308%) hue-rotate(180deg)
    brightness(96%) contrast(96%);
}

.split-data-chrome-light .language-icon-wrap svg path {
  fill: var(--theme-ink);
}

.persistent-data-chrome .control-bar {
  background: var(--theme-control-bg, rgba(4, 6, 14, 0.86));
}

.interest-section h2 {
  margin: 0;
  font-size: clamp(34px, 3.1vw, 46px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.interest-section p {
  margin: 28px auto 0;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.9));
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.35;
}

.interest-section p span {
  display: block;
  white-space: nowrap;
}

.interest-cloud {
  position: relative;
  z-index: 3;
  width: 100vw;
  margin: 56px auto 0;
  margin-left: 50%;
  padding: 12px 0;
  overflow: hidden;
  transform: translateX(-50%);
}

.interest-cloud-layer {
  display: grid;
  gap: 30px;
}

.interest-cloud-layer-light {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  color: #07111f;
  pointer-events: none;
  clip-path: inset(0 calc(100% - var(--theme-split-x)) 0 0);
}

.interest-marquee {
  display: flex;
  width: max-content;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.interest-marquee-left {
  transform: translate3d(var(--interest-left-offset), 0, 0);
}

.interest-marquee-right {
  transform: translate3d(var(--interest-right-offset), 0, 0);
}

.interest-row {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  flex-wrap: nowrap;
  transform: translate3d(0, 0, 0);
}

.interest-chip {
  position: relative;

  display: inline-flex;
  padding: 16.011px 24.017px;
  align-items: center;
  justify-content: center;
  color: var(--theme-chip-ink, #2e3442);
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  background:
    linear-gradient(var(--theme-chip-bg, #f6fcff), var(--theme-chip-bg, #f6fcff)) padding-box,
    conic-gradient(
        from var(--chip-glow-angle, 0deg),
        #6ff1ff,
        #8f7cff,
        #ff8bd4,
        #fff1a6,
        #7effde,
        #6ff1ff
      )
      border-box;
  border: 2px solid transparent;
  border-radius: 16788858px;
  animation: interest-chip-glow 6s linear infinite;
}

.interest-row .interest-chip:nth-child(7n + 1) {
  animation-delay: -0.2s;
}
.interest-row .interest-chip:nth-child(7n + 2) {
  animation-delay: -1.1s;
}
.interest-row .interest-chip:nth-child(7n + 3) {
  animation-delay: -2.3s;
}
.interest-row .interest-chip:nth-child(7n + 4) {
  animation-delay: -3.4s;
}
.interest-row .interest-chip:nth-child(7n + 5) {
  animation-delay: -4.1s;
}
.interest-row .interest-chip:nth-child(7n + 6) {
  animation-delay: -5.2s;
}
.interest-row .interest-chip:nth-child(7n) {
  animation-delay: -2.7s;
}

.interest-chip-placeholder {
  visibility: hidden;
  animation: none;
}

.interest-plain {
  color: #ffffff;
  font-family: var(--font-family-Font-1, Helvetica), Arial, sans-serif;
  font-size: 28.62px;
  font-style: normal;
  font-weight: var(--font-weight-300, 300);
  line-height: 36.025px;
  text-align: center;
  white-space: nowrap;
}

.interest-cloud-layer-light .interest-plain {
  color: #07111f;
}

.interest-symbol {
  display: inline-grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  color: #ffffff;
  place-items: center;
}

.interest-cloud-layer-light .interest-symbol {
  color: #07111f;
}

.interest-symbol svg {
  display: block;
  width: 100%;
  height: 100%;
}

.interest-symbol svg path {
  fill: currentColor;
}

.core-features {
  --core-art-width: 100vw;

  position: relative;
  min-height: clamp(765px, 54.4vw, 1228px);
  overflow: hidden;
  color: var(--theme-ink, #fff);
  text-align: center;
  background: var(
    --theme-core-bg,
    linear-gradient(180deg, #000 -4.88%, #030014 7.45%, #030014 83.55%, #02000a 97.1%, #000 111.43%)
  );
}

.core-features-bg {
  position: absolute;
  top: clamp(76px, 5.3vw, 120px);
  left: 50%;
  width: var(--core-art-width);
  height: auto;
  pointer-events: none;
  filter: var(--theme-asset-filter, none);
  transform: translateX(-50%);
}

.core-features-bg-light {
  opacity: 0;
}

.theme-layer-light .core-features-bg-dark {
  opacity: 0;
}

.theme-layer-light .core-features-bg-light {
  opacity: 1;
}

.core-features-content {
  position: relative;
  z-index: 1;
  width: var(--core-art-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 2.8vw, 64px) clamp(96px, 7.39vw, 167px);
}

.core-features-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(384px, calc(26.72vw - 50px), 554px);
}

.core-features h2 {
  margin: 0;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.9));
  font-size: clamp(36px, 3.15vw, 46px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.core-features-intro > p {
  margin: 16px 0 0;
  color: var(--theme-soft, rgba(255, 255, 255, 0.66));
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
}

.core-features-cta {
  display: inline-flex;
  min-width: 106px;
  min-height: 34px;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  color: var(--theme-button-ink, #080810);
  font-size: 12px;
  font-weight: 800;
  background: var(--theme-button-bg, #fff);
  border-radius: 999px;
}

.core-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(28px, 1.72vw, 39px);
  row-gap: clamp(32px, 1.97vw, 45px);
  margin-top: calc(450px + clamp(36px, 2.6vw, 56px));
  transform-origin: top center;
}

.core-feature-card {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-shadow: var(--theme-copy-shadow, 0 8px 20px rgba(0, 0, 0, 0.58));
}

.core-feature-card img {
  display: block;
  width: clamp(62px, 3.82vw, 86px);
  height: clamp(62px, 3.82vw, 86px);
  object-fit: contain;
  filter: var(--theme-logo-filter, none);
}

.core-feature-card h3 {
  margin: clamp(20px, 1.23vw, 28px) 0 0;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.88));
  font-size: clamp(20px, 1.23vw, 28px);
  font-weight: 500;
  line-height: 1.3;
}

.core-feature-card p {
  max-width: clamp(371px, 22.84vw, 516px);
  margin: clamp(10px, 0.62vw, 14px) 0 0;
  color: var(--theme-soft, rgba(255, 255, 255, 0.58));
  font-size: clamp(18px, 1.11vw, 25px);
  line-height: 1.55;
}

.nvidia-insight {
  position: relative;
  overflow: hidden;
  color: var(--theme-ink, #fff);
  background: var(--growth-surface, #000);
}

.nvidia-insight-image {
  display: block;
  width: 100%;
  height: auto;
  filter: var(--theme-asset-filter, none);
}

.nvidia-insight-mask {
  position: absolute;
  inset: 0;
  background: var(--theme-nvidia-mask, linear-gradient(66deg, #000 8.54%, rgba(0, 0, 0, 0) 90.66%));
}

.nvidia-insight-copy {
  position: absolute;
  top: 22%;
  left: 6.7%;
  z-index: 1;
  width: 44%;
  container-type: inline-size;
}

.nvidia-insight-eyebrow {
  margin: 0 0 1.7vw;
  color: var(--theme-soft, rgba(255, 255, 255, 0.68));
  font-size: clamp(11px, 2.6cqw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nvidia-insight h2 {
  margin: 0;
  color: var(--theme-ink, #fff);
  font-size: clamp(20px, 6.1cqw, 54px);
  font-weight: 760;
  line-height: 1.24;
  letter-spacing: 0;
}

.nvidia-insight h2 span {
  display: block;
  white-space: nowrap;
}

.nvidia-insight-copy > p:not(.nvidia-insight-eyebrow) {
  margin: 2.2vw 0 0;
  color: var(--theme-muted, rgba(255, 255, 255, 0.78));
  font-size: clamp(13px, 3.2cqw, 25px);
  line-height: 1.55;
}

.nvidia-insight-link {
  display: inline-flex;
  min-height: 32px;
  margin-top: 2.8vw;
  align-items: center;
  gap: 10px;
  color: var(--theme-ink, #fff);
  font-size: clamp(13px, 2.4cqw, 18px);
  font-weight: 700;
}

.nvidia-insight-link svg {
  display: block;
  width: 19px;
  height: 20px;
}

.follow-section {
  display: grid;
  min-height: clamp(420px, 27.34vw, 620px);
  margin-top: clamp(36px, 4vw, 80px);
  grid-template-columns: 1fr 1fr;
  color: var(--theme-ink, #fff);
  background: var(--growth-surface, #000);
}

.follow-panel,
.follow-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.follow-panel {
  background: var(--theme-follow-panel-bg, #03101e);
}

.follow-panel-image {
  position: absolute;
  inset: 0;
  display: none;
  width: 200%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.follow-panel-overlay {
  position: absolute;
  inset: 0;
  background: var(--theme-panel-overlay, var(--color-azure-660, rgba(3, 16, 30, 0.6)));
}

.theme-layer-light .follow-panel-overlay {
  background: #ebf6ff;
}

.follow-content {
  position: relative;
  z-index: 1;
  width: min(75.5%, 768px);
  margin: 0 auto;
  padding-top: clamp(56px, 4.1vw, 92px);
}

.follow-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.follow-topline h2 {
  margin: 0;
  color: var(--theme-ink, #fff);
  font-size: clamp(24px, 1.55vw, 36px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

.follow-topline a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.9));
  font-size: clamp(14px, 0.83vw, 18px);
  font-weight: 500;
  white-space: nowrap;
}

.follow-rule {
  height: 1px;
  margin-top: clamp(18px, 1.25vw, 28px);
  background: var(--theme-line, rgba(255, 255, 255, 0.82));
}

.follow-kicker {
  margin: clamp(34px, 2.4vw, 54px) 0 0;
  color: var(--theme-ink, #fff);
  font-size: clamp(13px, 0.72vw, 16px);
  font-weight: 800;
  line-height: 1.3;
}

.follow-heading {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--theme-ink, #fff);
  font-size: clamp(28px, 1.85vw, 42px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0;
}

.follow-form {
  display: grid;
  margin-top: clamp(18px, 1.25vw, 28px);
  grid-template-columns: minmax(0, 1fr) clamp(112px, 6.45vw, 150px);
  gap: clamp(18px, 1.15vw, 26px);
}

.follow-form input,
.follow-form button {
  height: clamp(54px, 3.9vw, 72px);
  border: 0;
  border-radius: 6px;
  font-family: inherit;
  font-size: clamp(16px, 0.95vw, 20px);
}

.follow-form input {
  min-width: 0;
  padding: 0 20px;
  color: #121820;
  background: rgba(255, 255, 255, 0.96);
}

.follow-form input::placeholder {
  color: rgba(18, 24, 32, 0.48);
}

.follow-form button {
  color: rgba(3, 16, 30, 0.38);
  font-weight: 700;
  background: #e2f0ff;
}

.follow-legal {
  margin: clamp(14px, 0.95vw, 20px) 0 0;
  color: var(--theme-muted-strong, rgba(255, 255, 255, 0.86));
  font-size: clamp(11px, 0.62vw, 14px);
  line-height: 1.55;
}

.follow-legal a {
  color: #6ca7ff;
}

.follow-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--theme-asset-filter, none);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--theme-ink, #fff);
  background: var(--theme-footer-bg, #000) url("/assets/pics/黑footer.png") center 34% / auto 132%
    no-repeat;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(78.2vw, 1780px);
  margin: 0 auto;
  padding: clamp(67px, 4.46vw, 101px) 0 clamp(46px, 3.74vw, 84px);
  grid-template-columns: 320px minmax(0, 1fr);
  column-gap: clamp(160px, 20vw, 460px);
}

.footer-brand-block {
  grid-column: 1;
  width: 320px;
}

.footer-logo-mark {
  display: block;
  width: 139px;
  height: 141px;
  object-fit: contain;
  filter: var(--theme-logo-filter, none);
}

.footer-email {
  margin: clamp(32px, 1.98vw, 45px) 0 0;
  color: var(--theme-muted, rgba(255, 255, 255, 0.82));
  font-size: clamp(14px, 0.83vw, 18px);
  line-height: 1.4;
  white-space: nowrap;
}

.footer-socials {
  display: flex;
  gap: 22px;
  margin-top: 24px;
}

.footer-social {
  display: flex;
  width: 36.025px;
  height: 36.025px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.001px solid var(--theme-line, var(--color-white-20, rgba(255, 255, 255, 0.2)));
  border-radius: 18.013px;
}

.footer-social svg {
  display: block;
}

.footer-nav {
  display: grid;
  grid-column: 2;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(72px, 6.4vw, 148px);
}

.footer-nav h3 {
  margin: 0 0 24px;
  color: var(--theme-ink, #fff);
  font-size: clamp(20px, 1vw, 24px);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-nav a {
  display: block;
  margin-top: 14px;
  color: var(--theme-soft, rgba(255, 255, 255, 0.62));
  font-size: clamp(16px, 0.88vw, 20px);
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  margin-top: clamp(75px, 4.68vw, 108px);
  padding-top: clamp(20px, 1.22vw, 27px);
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--theme-line, rgba(255, 255, 255, 0.55));
}

.footer-bottom p {
  margin: 0;
  color: var(--theme-soft, rgba(255, 255, 255, 0.38));
  font-size: clamp(13px, 0.72vw, 16px);
  line-height: 1.55;
}

.footer-bottom p:last-child {
  text-align: right;
}

.theme-layer-light .brand-mark img,
.theme-layer-light .menu-icon {
  filter: var(--theme-logo-filter);
}

.theme-layer-light .language-icon-wrap svg path,
.theme-layer-light .interest-symbol svg path,
.theme-layer-light .footer-social svg path {
  fill: var(--theme-ink);
}

.theme-layer-light .ticker-group span:first-child {
  color: #107f61;
}

.theme-layer-light .mosaic-copy,
.theme-layer-light .nvidia-insight {
  --theme-ink: #ffffff;
  --theme-muted: rgba(255, 255, 255, 0.76);
  --theme-muted-strong: rgba(255, 255, 255, 0.9);
  --theme-soft: rgba(255, 255, 255, 0.66);
  --theme-title-start: #ffffff;
  --theme-title-end: rgba(255, 255, 255, 0.35);
}

.theme-layer-light .mosaic-pill {
  --theme-muted-strong: rgba(7, 17, 31, 0.84);
  --theme-nav-bg: rgba(250, 253, 255, 0.78);
  --theme-line: rgba(7, 17, 31, 0.16);
}

.theme-layer-light .nvidia-insight-link svg path:first-child {
  fill: #f64137;
}

.theme-layer-light .nvidia-insight-link svg path:last-child {
  fill: #ffffff;
}

.theme-layer-light .site-footer {
  border-radius: 0;
  background: lightgray url("/assets/pics/白footer.png") 50% / cover no-repeat;
}

.theme-layer-light .site-footer::before {
  content: none;
}

@property --chip-glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes interest-sync {
  from {
    --interest-left-offset: 0%;
    --interest-right-offset: -16.6666667%;
  }

  to {
    --interest-left-offset: -16.6666667%;
    --interest-right-offset: 0%;
  }
}

@keyframes interest-chip-glow {
  from {
    --chip-glow-angle: 0deg;
  }

  to {
    --chip-glow-angle: 360deg;
  }
}

@keyframes ticker-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

@keyframes language-swap {
  from {
    opacity: 0;
    transform: rotate(-18deg) scale(0.72);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@media (min-width: 1600px) {
  .core-feature-grid {
    transform: scale(0.85);
  }
}

@media (max-width: 900px) {
  .growth-continuation {
    --mosaic-side-column: 32.6%;
    --mosaic-center-column: 32.6%;
    --mosaic-column-gap: 1.1%;
  }

  .sequence-sticky {
    min-height: 680px;
  }

  .intro-header {
    height: 70px;
    padding: 10px 20px;
  }

  .final-brand {
    top: 42px;
    left: 24px;
  }

  .brand {
    gap: 10px;
    font-size: 22px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .top-actions {
    gap: 8px;
  }

  .control-bar {
    grid-template-columns: auto 1fr auto;
    height: 58px;
    padding: 0 16px;
  }

  .control-bar-title {
    justify-self: center;
    font-size: 20px;
  }

  .control-bar .top-actions {
    gap: 6px;
  }

  .menu-label {
    font-size: 12px;
  }

  .breadcrumb {
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 16px;
    overflow-x: auto;
    font-size: 14px;
    white-space: nowrap;
  }

  .ticker {
    width: 100%;
    height: 34px;
  }

  .ticker-group {
    gap: 30px;
    padding-right: 30px;
    font-size: 12px;
  }

  .phase-copy-intro,
  .phase-copy-left,
  .phase-copy-center,
  .phase-copy-metrics {
    right: auto;
    left: 24px;
    width: calc(100% - 48px);
    margin: 0;
    text-align: left;
  }

  .phase-copy-intro {
    top: 32%;
  }

  .phase-copy-left,
  .phase-copy-center {
    top: 34%;
  }

  .phase-copy-metrics {
    bottom: 7%;
  }

  .phase-copy h1,
  .phase-copy-left h2,
  .phase-copy-center h2 {
    font-size: 38px;
  }

  .phase-copy-metrics h2 {
    font-size: 32px;
  }

  .phase-copy p {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    font-size: 16px;
  }

  .mini-links {
    right: auto;
    bottom: 72px;
    left: 24px;
    width: calc(100% - 96px);
    gap: 22px;
    transform: none;
  }

  .mini-link {
    font-size: 13px;
  }

  .scroll-cue {
    right: 20px;
    bottom: 22px;
  }

  .mosaic-hero {
    min-height: 1140px;
  }

  .growth-preview-spacer {
    min-height: 1140px;
  }

  .mosaic-board {
    top: 20px;
    width: min(820px, 180vw);
    height: 980px;
  }

  .mosaic-tile-1,
  .mosaic-tile-4,
  .mosaic-tile-7 {
    left: 0;
    width: var(--mosaic-side-column);
  }

  .mosaic-tile-2,
  .mosaic-tile-5,
  .mosaic-tile-8 {
    left: calc(var(--mosaic-side-column) + var(--mosaic-column-gap));
    width: var(--mosaic-center-column);
  }

  .mosaic-tile-3,
  .mosaic-tile-6,
  .mosaic-tile-9 {
    right: 0;
    width: var(--mosaic-side-column);
  }

  .mosaic-tile-1,
  .mosaic-tile-3,
  .mosaic-tile-7,
  .mosaic-tile-9 {
    height: 310px;
  }

  .mosaic-tile-2 {
    top: 145px;
    height: 390px;
  }

  .mosaic-tile-4 {
    top: 330px;
    height: 290px;
  }

  .mosaic-tile-5 {
    top: 550px;
    height: 170px;
  }

  .mosaic-tile-6 {
    top: 355px;
    height: 290px;
  }

  .mosaic-tile-7 {
    top: 635px;
  }

  .mosaic-tile-8 {
    top: 735px;
    height: 330px;
  }

  .mosaic-tile-9 {
    top: 660px;
  }

  .mosaic-copy {
    min-height: 660px;
    padding-top: 138px;
  }

  .mosaic-copy h2 {
    font-size: 42px;
  }

  .mosaic-copy p {
    font-size: 14px;
  }

  .mosaic-copy p span,
  .interest-section p span {
    white-space: normal;
  }

  .interest-section {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .core-features {
    --core-art-width: 100vw;

    min-height: 900px;
  }

  .core-features-bg {
    top: 150px;
  }

  .core-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    margin-top: 270px;
  }

  .nvidia-insight-copy {
    left: 32px;
    width: 42%;
  }

  .follow-section {
    grid-template-columns: 1fr;
  }

  .follow-panel {
    min-height: 520px;
  }

  .follow-photo {
    min-height: 420px;
  }

  .site-footer-inner {
    width: calc(100% - 64px);
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .footer-brand-block {
    grid-column: 1;
    width: auto;
  }

  .footer-nav {
    grid-column: 1;
    width: 100%;
    margin: 46px 0 0;
    column-gap: 36px;
  }

  .footer-bottom {
    margin-top: 52px;
  }

  .interest-row {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .intro-header .icon-button,
  .control-bar .icon-button {
    display: none;
  }

  .login-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .breadcrumb a:nth-child(n + 4) {
    display: none;
  }

  .phase-copy h1,
  .phase-copy-left h2,
  .phase-copy-center h2,
  .phase-copy-metrics h2 {
    font-size: 30px;
  }

  .metric-line-nowrap {
    font-size: clamp(22px, 7vw, 30px);
  }

  .phase-copy-intro h1,
  .phase-copy-center h2 {
    white-space: normal;
  }

  .primary-link {
    min-width: 138px;
  }

  .mini-links {
    width: calc(100% - 74px);
    gap: 14px;
  }

  .mosaic-hero {
    min-height: 1080px;
  }

  .growth-preview-spacer {
    min-height: 1080px;
  }

  .mosaic-board {
    top: 92px;
    width: 740px;
    transform: translateX(-50%) scale(0.78);
    transform-origin: top center;
  }

  .mosaic-copy {
    width: 100%;
    min-height: 630px;
    padding: 118px 16px 0;
  }

  .mosaic-pill {
    min-height: 30px;
    font-size: 13px;
  }

  .mosaic-copy h2 {
    font-size: clamp(22px, 7vw, 33px);
  }

  .mosaic-copy h2 strong {
    font-size: inherit;
  }

  .mosaic-copy p br {
    display: none;
  }

  .interest-section {
    --interest-pad-x: 16px;
    --interest-pad-top: 96px;
    --interest-pad-bottom: 0px;
  }

  .interest-section p br {
    display: none;
  }

  .interest-cloud {
    gap: 14px;
    margin-top: 36px;
  }

  .core-features {
    --core-art-width: 100vw;

    min-height: 1060px;
  }

  .core-features-content {
    padding-top: 48px;
  }

  .core-features h2 {
    font-size: 30px;
  }

  .core-features-content > p {
    font-size: 15px;
  }

  .core-features-bg {
    top: 130px;
  }

  .core-feature-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
    margin-top: 210px;
  }

  .core-feature-card p {
    max-width: 310px;
  }

  .nvidia-insight-mask {
    background: linear-gradient(66deg, #000 24%, rgba(0, 0, 0, 0.18) 100%);
  }

  .nvidia-insight-copy {
    top: 16%;
    left: 20px;
    width: 58%;
  }

  .follow-section {
    min-height: 0;
    margin-top: 36px;
  }

  .follow-panel {
    min-height: 620px;
  }

  .follow-content {
    width: calc(100% - 40px);
    padding-top: 42px;
  }

  .follow-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .follow-heading {
    font-size: 27px;
  }

  .follow-form {
    grid-template-columns: 1fr;
  }

  .follow-form button {
    width: 132px;
  }

  .site-footer-inner {
    width: calc(100% - 40px);
    padding-top: 29px;
  }

  .footer-logo-mark {
    width: 104px;
    height: 106px;
  }

  .footer-email {
    white-space: normal;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}



