:root {
  color-scheme: light;
  --paper: #f4f3f3;
  --paper-soft: #ecebea;
  --ink: #1d1c1b;
  --ink-soft: rgba(29, 28, 27, 0.68);
  --ink-muted: rgba(29, 28, 27, 0.46);
  --line: rgba(29, 28, 27, 0.16);
  --dark: #1c1b1a;
  --dark-soft: #252422;
  --dark-line: rgba(244, 243, 243, 0.18);
  --white: #ffffff;
  --green: #c8ff9a;
  --yellow: #f1c75f;
  --pink: #f7d0e5;
  --blue: #c8c0ff;
  --radius: 24px;
  --band-pink: #f6afff;
  --band-orange: #ffb592;
  --band-yellow: #fab920;
  --band-green: #84db1a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

img,
video {
  max-width: 100%;
}

.page-frame {
  width: calc(100vw - 80px);
  max-width: 1390px;
  margin: 0 auto;
}

section {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(0, 1.1fr) minmax(240px, 0.95fr);
  align-items: stretch;
  padding: 0 40px;
  color: rgba(244, 243, 243, 0.9);
  background: linear-gradient(180deg, rgba(28, 27, 26, 0.54), rgba(28, 27, 26, 0.08));
  backdrop-filter: blur(18px);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(28, 27, 26, 0.76);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
}

.brand {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  align-self: stretch;
  min-height: 0;
  opacity: 1;
}

.brand img {
  display: block;
  width: auto;
  height: 86%;
  max-height: 100%;
  max-width: none;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 22px;
  white-space: nowrap;
  flex-direction: row;
}
.nav-links .nav-item {
  display: inline-flex;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: nowrap;
}

.nav-item {
  min-height: 32px;
  color: rgba(244, 243, 243, 0.82);
  font-size: 16px;
  font-weight: 420;
}

.nav-actions {
  justify-content: flex-end;
  gap: 8px;
}

.pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 15px;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pill:hover,
.use-card:hover,
.price-grid article:hover,
.model-cards article:hover {
  transform: translateY(-2px);
}

.nav-pill {
  min-height: 44px;
}

.nav-pill.primary,
.hero-primary {
  color: var(--ink);
  background: rgba(244, 243, 243, 0.96);
  box-shadow: 0 18px 54px rgba(29, 28, 27, 0.08);
}

.nav-pill.ghost,
.hero-secondary {
  color: rgba(244, 243, 243, 0.9);
  border: 1px solid rgba(244, 243, 243, 0.22);
  background: rgba(244, 243, 243, 0.02);
}

.dark-outline {
  color: rgba(244, 243, 243, 0.94);
  border: 1px solid rgba(244, 243, 243, 0.62);
  background: rgba(244, 243, 243, 0.02);
}

.light-outline {
  color: var(--ink);
  border: 1px solid rgba(29, 28, 27, 0.18);
  background: rgba(244, 243, 243, 0.28);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border-radius: 14px;
  background: rgba(244, 243, 243, 0.16);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--paper);
}

.mega-panel,
.mobile-panel {
  position: absolute;
  top: 62px;
  color: var(--paper);
  border: 1px solid rgba(244, 243, 243, 0.16);
  border-radius: 22px;
  background: rgba(29, 28, 27, 0.84);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.mega-panel {
  left: 50%;
  width: 440px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px;
  transform: translateX(-50%);
}

.mega-panel[hidden],
.mobile-panel[hidden] {
  display: none;
}

.mega-panel p {
  margin: 0;
  color: rgba(244, 243, 243, 0.5);
  font-size: 12px;
  text-transform: uppercase;
}

.mega-panel div {
  display: grid;
  gap: 13px;
}

.mega-panel a,
.mobile-panel a {
  color: rgba(244, 243, 243, 0.88);
}

.mobile-panel {
  left: 20px;
  right: 20px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: #1c1b1a;
  isolation: isolate;
  perspective: 1500px;
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-orbit,
.hero-depth {
  position: absolute;
  inset: 0;
}

.hero-orbit {
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-style: preserve-3d;
  display: none;
}

.hero-depth {
  z-index: 2;
  background:
    radial-gradient(ellipse at 20% 45%, rgba(242, 248, 239, 0.024), transparent 38%),
    linear-gradient(to right, rgba(0, 10, 3, 0.022), rgba(0, 8, 2, 0.01) 48%, transparent 74%);
  -webkit-backdrop-filter: blur(5px) saturate(0.82);
  backdrop-filter: blur(5px) saturate(0.82);
  -webkit-mask-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.24) 55%, transparent 80%);
  mask-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.24) 55%, transparent 80%);
  pointer-events: none;
}

.hero-depth::before {
  content: "";
  position: absolute;
  left: -8vw;
  top: -8svh;
  width: min(1040px, 72vw);
  height: 118svh;
  background:
    radial-gradient(ellipse at 42% 38%, rgba(242, 248, 239, 0.026), transparent 48%),
    rgba(4, 14, 6, 0.01);
  -webkit-backdrop-filter: blur(12px) saturate(0.72) brightness(0.96);
  backdrop-filter: blur(12px) saturate(0.72) brightness(0.96);
  -webkit-mask-image: radial-gradient(ellipse at 42% 42%, black 0%, rgba(0, 0, 0, 0.74) 48%, transparent 84%);
  mask-image: radial-gradient(ellipse at 42% 42%, black 0%, rgba(0, 0, 0, 0.74) 48%, transparent 84%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(244, 243, 243, 0.018), transparent 32%, rgba(28, 27, 26, 0.68)),
    radial-gradient(ellipse at 18% 48%, rgba(2, 17, 7, 0.025), rgba(7, 18, 8, 0.012) 30%, transparent 58%),
    radial-gradient(ellipse at 54% 46%, rgba(244, 243, 243, 0.022), transparent 43%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.orbit-card {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 243, 243, 0.12);
  border-radius: 11px;
  background: rgba(244, 243, 243, 0.08);
  background-image: var(--orbit-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  will-change: transform, opacity, filter;
}

.orbit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.14));
}

.orbit-card.is-gradient {
  background-image: linear-gradient(112deg, var(--band-pink) 0%, var(--band-orange) 34%, var(--band-yellow) 63%, var(--band-green) 100%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: calc(100vw - 80px);
  max-width: 1390px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 26px;
  margin: 0 auto;
  padding: 184px 0 118px;
  pointer-events: none;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: rgba(244, 243, 243, 0.96);
  font-size: 43px;
  font-weight: 430;
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.hero-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(244, 243, 243, 0.72);
  font-size: 15px;
  line-height: 1.8;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}

.hero-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  pointer-events: auto;
}

.hero-buttons .pill {
  min-height: 52px;
  padding: 0 24px;
  font-size: 16px;
}

.hero-secondary {
  color: rgba(244, 243, 243, 0.86);
}

.pegasus-card {
  position: fixed;
  z-index: 92;
  right: 40px;
  bottom: 34px;
  width: 430px;
  min-height: 118px;
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr) 18px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  color: var(--paper);
  border: 1px solid rgba(244, 243, 243, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(92, 92, 90, 0.68), rgba(48, 47, 45, 0.74));
  box-shadow: inset 0 1px 0 rgba(244, 243, 243, 0.22), 0 28px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pegasus-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(244, 243, 243, 0.28), 0 0 0 1px rgba(200, 255, 154, 0.24), 0 34px 84px rgba(0, 0, 0, 0.26);
}

.pegasus-card img {
  width: 106px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
  flex: 0 0 auto;
}

.pegasus-card strong,
.pegasus-card small {
  display: block;
}

.pegasus-card span {
  min-width: 0;
}

.pegasus-card strong {
  font-size: 15px;
  font-weight: 520;
}

.pegasus-card small {
  margin-top: 7px;
  color: rgba(244, 243, 243, 0.92);
  font-size: 13px;
  line-height: 1.45;
}

.dark-section {
  color: var(--paper);
  background: var(--dark);
}

.results {
  padding: 108px 0 80px;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.44fr) minmax(0, 0.86fr);
  gap: clamp(56px, 5vw, 84px);
  border-left: 1px solid rgba(244, 243, 243, 0.22);
}

.result-steps {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding-left: 30px;
}

.step {
  max-width: 510px;
}

.step span,
.result-steps button {
  color: rgba(244, 243, 243, 0.78);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.4;
}

.step h2 {
  margin: 28px 0 24px;
  max-width: 470px;
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-size: clamp(48px, 3.75vw, 64px);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
}

.step p {
  max-width: 510px;
  margin: 0 0 38px;
  color: rgba(244, 243, 243, 0.64);
  font-size: 16px;
  font-weight: 430;
  line-height: 1.82;
}

.result-steps button {
  width: fit-content;
  display: grid;
  grid-template-columns: 42px auto;
  align-items: baseline;
  padding: 0;
  color: rgba(244, 243, 243, 0.34);
  font-size: 18px;
}

.result-steps strong {
  margin-left: 0;
  color: rgba(244, 243, 243, 0.52);
  font-size: 17px;
  font-weight: 540;
}

.scale-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0 0 86px 86px;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 56% 47%, rgba(244, 243, 243, 0.13), transparent 34%),
    radial-gradient(ellipse at 47% 70%, rgba(132, 219, 26, 0.11), transparent 42%),
    radial-gradient(ellipse at 80% 28%, rgba(246, 175, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(244, 243, 243, 0.055), rgba(244, 243, 243, 0.012));
}

.scale-visual::before,
.scale-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scale-visual::before {
  z-index: 4;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 36%, rgba(28, 27, 26, 0.22) 58%, rgba(28, 27, 26, 0.68) 100%),
    linear-gradient(90deg, rgba(28, 27, 26, 0.68), transparent 23%, transparent 76%, rgba(28, 27, 26, 0.54)),
    linear-gradient(180deg, rgba(28, 27, 26, 0.34), transparent 26%, transparent 68%, rgba(28, 27, 26, 0.72));
}

.scale-visual::after {
  z-index: 5;
  border: 1px solid rgba(244, 243, 243, 0.08);
  border-top: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 -52px 96px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(244, 243, 243, 0.05);
}

.scale-visual img {
  position: absolute;
  z-index: 1;
  top: 64px;
  left: 50%;
  width: 76%;
  max-width: 720px;
  opacity: 0.22;
  filter: saturate(0.52) brightness(1.1) blur(2.2px);
  transform: translateX(-50%) rotate(-3deg) scale(1.03);
}

.scale-orbit {
  position: absolute;
  z-index: 2;
  inset: 64px 4% 42px;
  border-radius: 50%;
  transform: perspective(920px) rotateX(64deg) rotateZ(-8deg);
}

.scale-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 243, 243, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 46px rgba(246, 175, 255, 0.08),
    inset 0 0 52px rgba(132, 219, 26, 0.07);
}

.scale-orbit span:nth-child(2) {
  inset: 16% 10%;
  border-color: rgba(250, 185, 32, 0.2);
  animation: scale-orbit-pulse 5.6s ease-in-out infinite;
}

.packet-stream {
  position: absolute;
  z-index: 3;
  inset: 16% 7% 14%;
  background-image:
    radial-gradient(circle, rgba(244, 243, 243, 0.36) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(200, 255, 154, 0.34) 0 2px, transparent 4px),
    radial-gradient(ellipse at 50% 50%, rgba(200, 255, 154, 0.12), transparent 58%);
  background-size: 68px 56px, 132px 106px, 100% 100%;
  mask-image: radial-gradient(ellipse at 54% 51%, #000 0 30%, rgba(0, 0, 0, 0.5) 48%, transparent 78%);
  filter: blur(0.6px);
  animation: packet-drift 11s linear infinite;
  opacity: 0.54;
}

.scale-node {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 8px;
  width: 164px;
  min-height: 94px;
  padding: 13px 16px;
  border: 1px solid rgba(244, 243, 243, 0.18);
  border-radius: 18px;
  color: rgba(244, 243, 243, 0.88);
  background:
    linear-gradient(180deg, rgba(244, 243, 243, 0.08), rgba(244, 243, 243, 0.02)),
    rgba(28, 27, 26, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 28px rgba(132, 219, 26, 0.06);
  animation: scale-node-breathe 4.8s ease-in-out infinite;
}

.node-ai {
  top: 18%;
  left: 8%;
  animation: node-ai-orbit 34s ease-in-out infinite, scale-node-breathe 4.8s ease-in-out infinite;
}

.node-danzhao {
  top: 14%;
  right: 9%;
  animation: node-danzhao-orbit 34s ease-in-out infinite, scale-node-breathe 4.8s ease-in-out infinite;
  animation-delay: -11.3s, -1.4s;
}

.node-campus {
  right: 17%;
  bottom: 12%;
  animation: node-campus-orbit 34s ease-in-out infinite, scale-node-breathe 4.8s ease-in-out infinite;
  animation-delay: -22.6s, -2.6s;
}

.scale-node small {
  width: fit-content;
  color: rgba(244, 243, 243, 0.42);
  font-size: 11px;
  line-height: 1;
}

.scale-node b {
  font-size: 17px;
  font-weight: 520;
  line-height: 1.1;
}

.scale-node span {
  color: rgba(244, 243, 243, 0.56);
  font-size: 12px;
  line-height: 1.2;
}

.scale-core {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: 188px;
  height: 188px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(244, 243, 243, 0.14);
  border-radius: 50%;
  color: rgba(244, 243, 243, 0.88);
  background:
    radial-gradient(circle at 48% 38%, rgba(244, 243, 243, 0.11), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(200, 255, 154, 0.1), transparent 66%),
    rgba(28, 27, 26, 0.3);
  box-shadow:
    0 0 62px rgba(200, 255, 154, 0.09),
    inset 0 0 46px rgba(244, 243, 243, 0.04);
  transform: translate(-50%, -44%);
}

.scale-core i {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-style: normal;
  font-weight: 500;
  line-height: 0.9;
}

.scale-core em {
  color: rgba(244, 243, 243, 0.52);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.scale-path {
  position: absolute;
  z-index: 4;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(244, 243, 243, 0.22), rgba(200, 255, 154, 0.16), transparent);
  opacity: 0.72;
}

.path-one {
  top: 34%;
  left: 22%;
  width: 235px;
  transform: rotate(12deg);
}

.path-two {
  top: 33%;
  right: 20%;
  width: 210px;
  transform: rotate(158deg);
}

.path-three {
  right: 27%;
  bottom: 27%;
  width: 196px;
  transform: rotate(-142deg);
}

.workflow-gradient {
  padding: 72px 0 76px;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(132, 219, 26, 0.16), transparent 38%),
    radial-gradient(ellipse at 82% 8%, rgba(246, 175, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #1c1b1a, #23221f);
}

.split-heading {
  min-height: 172px;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: clamp(30px, 3.5vw, 54px);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.workflow-gradient .split-heading {
  border-color: rgba(244, 243, 243, 0.16);
}

.split-heading h2,
.split-heading p {
  margin: 0;
  border-left: 1px solid transparent;
}

.split-heading h2 {
  max-width: 720px;
  padding: 0 34px;
  font-size: clamp(38px, 3.2vw, 52px);
  font-weight: 540;
  line-height: 1.12;
}

.split-heading p {
  max-width: 440px;
  padding-left: 34px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 430;
  line-height: 1.72;
}

.workflow-gradient .split-heading p {
  color: rgba(244, 243, 243, 0.68);
}

.workflow-white {
  padding: 84px 0 92px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(200, 255, 154, 0.16), transparent 34%),
    var(--paper);
}

.workflow-white .split-heading {
  margin-bottom: 54px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.metrics article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(236, 235, 234, 0));
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  font-size: 56px;
  font-weight: 390;
  line-height: 1;
}

.metrics strong span {
  background: linear-gradient(90deg, #f3b01f, #ffb9db, #a7b5ff, #58b867);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metrics p {
  max-width: 330px;
  margin: 0;
  color: rgba(29, 28, 27, 0.78);
  font-size: 16px;
  line-height: 1.62;
}

.use-cases {
  overflow: hidden;
  padding: 86px 0 96px;
  background:
    linear-gradient(180deg, var(--paper), #e7e6e3);
}

.use-case-track {
  position: relative;
  width: 100vw;
  margin-left: calc((100vw - min(1390px, calc(100vw - 80px))) / -2);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.use-case-track::before,
.use-case-track::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: 14vw;
  pointer-events: none;
}

.use-case-track::before {
  left: 0;
  background: linear-gradient(90deg, #f4f3f3, rgba(244, 243, 243, 0));
}

.use-case-track::after {
  right: 0;
  background: linear-gradient(270deg, #f4f3f3, rgba(244, 243, 243, 0));
}

.use-case-reel {
  width: max-content;
  display: flex;
  gap: 30px;
  padding: 0 30px;
  animation: film-strip-drift 42s linear infinite;
  will-change: transform;
}

.use-case-track:hover .use-case-reel {
  animation-play-state: paused;
}

.use-card {
  position: relative;
  flex: 0 0 auto;
  width: 500px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  color: var(--paper);
  border: 1px solid rgba(29, 28, 27, 0.08);
  border-radius: 36px;
  background: #111;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.use-card.feature {
  width: 600px;
}

.use-card:hover {
  box-shadow: 0 0 0 1px rgba(250, 185, 32, 0.18), 0 0 18px rgba(132, 219, 26, 0.22), 0 0 46px rgba(246, 175, 255, 0.18);
  animation: card-breathe 1.9s ease-in-out infinite;
}

.use-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(244, 243, 243, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82));
}

.use-card img,
.use-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) brightness(0.7) contrast(1.04);
  transform: scale(1.02);
}

.use-card.feature img,
.use-card.feature video {
  object-position: center 34%;
}

.use-card h3,
.use-card p,
.use-card a {
  position: relative;
  z-index: 1;
  margin: 0;
}

.use-card h3 {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 540;
  line-height: 1.12;
}

.use-card p {
  max-width: 400px;
  margin-bottom: 24px;
  color: rgba(244, 243, 243, 0.78);
  font-size: 15px;
  line-height: 1.68;
}

.use-card a {
  color: rgba(244, 243, 243, 0.92);
  font-size: 16px;
}

.secure-light {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  padding: 88px 0 92px;
  color: var(--paper);
  background: var(--dark);
}

.secure-visual {
  position: absolute;
  inset: 0;
  opacity: 0.62;
}

.secure-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 54%, transparent 0 20%, rgba(28, 27, 26, 0.28) 48%, rgba(28, 27, 26, 0.86) 100%),
    linear-gradient(90deg, rgba(28, 27, 26, 0.22), rgba(28, 27, 26, 0.92) 58%, rgba(28, 27, 26, 0.94));
}

.secure-visual video,
.secure-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.78);
}

.secure-copy {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  min-height: 420px;
}

.secure-copy h2 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(38px, 3.15vw, 52px);
  font-weight: 540;
  line-height: 1.12;
}

.secure-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(244, 243, 243, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.eyebrow {
  display: block;
  margin-bottom: 22px;
  color: rgba(200, 255, 154, 0.76);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.models {
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse at 20% 8%, rgba(132, 219, 26, 0.12), transparent 34%),
    var(--dark);
}

.models-heading {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 44px;
}

.models-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 3.1vw, 52px);
  font-weight: 540;
  line-height: 1.12;
}

.models-heading .pill {
  justify-self: start;
}

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

.model-cards article {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 58px 64px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 35% 72%, rgba(201, 255, 132, 0.08), transparent 32%),
    rgba(244, 243, 243, 0.035);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.model-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(28, 27, 26, 0.02), rgba(28, 27, 26, 0.82)),
    radial-gradient(ellipse at 20% 20%, rgba(244, 243, 243, 0.1), transparent 36%);
  pointer-events: none;
}

.model-cards article:hover {
  box-shadow: 0 0 0 1px rgba(250, 185, 32, 0.16), 0 0 22px rgba(132, 219, 26, 0.18), 0 0 56px rgba(246, 175, 255, 0.12);
  animation: card-breathe 1.9s ease-in-out infinite;
}

.model-kicker {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 16px;
  color: rgba(200, 255, 154, 0.68);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.model-cards h3 {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 540;
  line-height: 1.12;
}

.model-cards p {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: 0 0 26px;
  color: rgba(244, 243, 243, 0.78);
  font-size: 16px;
  line-height: 1.68;
}

.model-cards a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--dark-line);
  border-radius: 11px;
  color: rgba(244, 243, 243, 0.9);
}

.model-cards article > img:not(.model-mark),
.model-cards article > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.82) brightness(0.74);
}

.playground {
  padding: 88px 0;
  background:
    linear-gradient(180deg, #e7e6e3, var(--paper));
}

.playground-shell {
  padding: 34px;
  border: 1px solid rgba(29, 28, 27, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(132, 219, 26, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.46);
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}

.tabs button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

.tabs .active {
  color: var(--paper);
  background: var(--ink);
}

.playground-grid {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 36px;
  align-items: center;
}

.playground-grid h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 540;
  line-height: 1.12;
}

.playground-grid p {
  max-width: 460px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.playground-grid video {
  width: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  border-radius: 32px;
  background: var(--dark);
}

.ecosystem-visual {
  min-height: 440px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.ecosystem-visual article {
  position: relative;
  overflow: hidden;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(236, 235, 234, 0.92)),
    var(--paper);
  box-shadow: 0 18px 44px rgba(29, 28, 27, 0.06);
}

.ecosystem-visual article::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12%;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 154, 0.12));
  transform: skewX(-16deg);
}

.ecosystem-visual span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #1c1b1a;
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
}

.ecosystem-visual strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 540;
  line-height: 1.08;
}

.ecosystem-visual p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.4;
}

.pricing,
.research {
  padding: 88px 0;
  background: var(--paper);
}

.section-title span {
  display: block;
  margin-bottom: 16px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 640;
  text-transform: uppercase;
}

.section-title h2 {
  max-width: 820px;
  margin: 0 0 34px;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 540;
  line-height: 1.14;
}

.section-title p {
  max-width: 600px;
  margin: -12px 0 38px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

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

.price-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(236, 235, 234, 0.78));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.price-grid article:hover {
  box-shadow: 0 0 34px rgba(200, 255, 154, 0.3);
}

.price-grid h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 540;
}

.price-grid p,
.price-grid dt,
.price-grid dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.58;
}

.price-grid a {
  margin-top: auto;
  font-weight: 520;
}

.price-grid dl {
  margin: 4px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.research {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(246, 175, 255, 0.12), transparent 34%),
    var(--paper);
}

.research-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--dark);
}

.research-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 27, 26, 0.08), rgba(28, 27, 26, 0.72)),
    radial-gradient(ellipse at 20% 20%, rgba(200, 255, 154, 0.16), transparent 32%);
}

.research-media video,
.research-media img {
  position: absolute;
  inset: 0;
  width: calc(100vw - 80px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-media video {
  filter: saturate(0.84) brightness(0.78);
}

.research-media img {
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: saturate(0.8) contrast(1.05);
}

.stories {
  overflow: hidden;
  padding: 76px 0 84px;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 55%, rgba(199, 255, 136, 0.14), transparent 18%),
    radial-gradient(circle at 70% 20%, rgba(247, 199, 228, 0.1), transparent 20%),
    var(--dark);
}

.stories-track {
  width: max-content;
  display: flex;
  gap: 48px;
  animation: stories-marquee 38s linear infinite;
}

.stories article {
  width: 500px;
  color: rgba(244, 243, 243, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.stories span {
  display: block;
  margin-top: 22px;
  color: rgba(244, 243, 243, 0.42);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.final-cta {
  padding: 72px 0 96px;
  background: var(--paper);
}

.cta-card {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  border-radius: 110px 110px 0 0;
  background: #1c1b1a;
  box-shadow: inset 0 0 76px rgba(244, 243, 243, 0.18);
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-card::before {
  z-index: 1;
  background:
    radial-gradient(ellipse at 3% 9%, rgba(200, 255, 154, 0.34), transparent 31%),
    radial-gradient(ellipse at 99% 13%, rgba(255, 181, 146, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(28, 27, 26, 0.24), rgba(28, 27, 26, 0.18) 44%, rgba(28, 27, 26, 0.44));
}

.cta-card::after {
  z-index: 2;
  box-shadow: inset 0 0 88px rgba(244, 243, 243, 0.28), inset 0 0 46px rgba(28, 27, 26, 0.36);
}

.cta-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.8) brightness(0.78) contrast(0.96);
  transform: none;
}

.cta-card h2 {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  font-weight: 430;
  line-height: 1.16;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.cta-card p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(244, 243, 243, 0.9);
  font-size: 16px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.34);
}

.cta-card > div {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.site-footer {
  padding: 80px 0 48px;
  background:
    radial-gradient(ellipse at 14% 100%, rgba(200, 255, 154, 0.72), transparent 33%),
    radial-gradient(ellipse at 64% 100%, rgba(246, 199, 95, 0.42), transparent 26%),
    var(--paper);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.footer-links nav {
  min-height: 254px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 40px;
  border-right: 1px solid var(--line);
}

.footer-links nav:last-child {
  border-right: 0;
}

.footer-links p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 640;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 12px;
}

.footer-brand {
  padding-top: 72px;
  text-align: center;
}

.footer-brand img {
  width: min(620px, 82vw);
  display: block;
  margin: 0 auto 46px;
}

.footer-brand p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.icp-link {
  display: inline-flex;
  width: fit-content;
  margin: 14px auto 0;
  color: var(--ink-muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.icp-link:hover {
  color: var(--ink);
}

.simple-legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: center;
  padding: 26px 24px 34px;
  color: rgba(36, 35, 31, 0.52);
  font-size: 12px;
  line-height: 1.6;
  background: #f7f5ef;
}

.simple-legal-footer a {
  color: rgba(36, 35, 31, 0.58);
  text-decoration: none;
}

.simple-legal-footer a:hover {
  color: rgba(36, 35, 31, 0.84);
}

.agent-legal-footer {
  position: relative;
  z-index: 2;
  color: rgba(247, 245, 239, 0.5);
  background: #11110f;
}

.agent-legal-footer a {
  color: rgba(247, 245, 239, 0.58);
}

.agent-legal-footer a:hover {
  color: rgba(247, 245, 239, 0.88);
}

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

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

@keyframes packet-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 68px 60px, -55px 46px;
  }
}

@keyframes scale-orbit-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

@keyframes scale-node-breathe {
  0%,
  100% {
    border-color: rgba(244, 243, 243, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 22px rgba(132, 219, 26, 0.06);
  }
  50% {
    border-color: rgba(244, 243, 243, 0.28);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 44px rgba(250, 185, 32, 0.13);
  }
}

@keyframes node-ai-orbit {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(34px, -18px);
  }
  50% {
    transform: translate(70px, 10px);
  }
  75% {
    transform: translate(28px, 30px);
  }
}

@keyframes node-danzhao-orbit {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-30px, 20px);
  }
  50% {
    transform: translate(-66px, -6px);
  }
  75% {
    transform: translate(-22px, -28px);
  }
}

@keyframes node-campus-orbit {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-38px, -20px);
  }
  50% {
    transform: translate(-8px, -48px);
  }
  75% {
    transform: translate(38px, -18px);
  }
}

@keyframes stories-marquee {
  from {
    transform: translateX(60px);
  }
  to {
    transform: translateX(-720px);
  }
}

@keyframes film-strip-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes card-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(250, 185, 32, 0.16), 0 0 18px rgba(132, 219, 26, 0.18), 0 0 42px rgba(246, 175, 255, 0.13);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(250, 185, 32, 0.28), 0 0 28px rgba(132, 219, 26, 0.32), 0 0 68px rgba(246, 175, 255, 0.22);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1fr) minmax(180px, 0.74fr);
    align-items: center;
    padding: 0 24px;
  }

  .brand {
    width: min(214px, 100%);
    height: auto;
  }

  .brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-item {
    font-size: 14px;
    white-space: nowrap;
  }

  .nav-pill.ghost {
    display: none;
  }

  .results-grid,
  .playground-grid {
    grid-template-columns: 1fr;
  }

  .scale-visual {
    min-height: 520px;
  }

  .scale-node {
    width: 166px;
  }

  .model-cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .page-frame,
  .hero-copy,
  .research img {
    width: calc(100vw - 40px);
  }

  .site-header {
    height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 0 16px;
  }

  .brand {
    width: min(146px, calc(100vw - 188px));
    min-width: 108px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-actions .nav-pill.primary {
    display: none;
  }

  .nav-actions .nav-pill.ghost {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    background: rgba(244, 243, 243, 0.14);
  }

  .mobile-panel {
    top: 70px;
    left: 16px;
    right: 16px;
    gap: 16px;
    padding: 22px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    min-height: 100svh;
    gap: 18px;
    padding: 94px 0 174px;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -18px;
    top: 78px;
    width: min(390px, calc(100vw - 8px));
    height: 244px;
    background: linear-gradient(90deg, rgba(28, 27, 26, 0.88), rgba(28, 27, 26, 0.58) 62%, rgba(28, 27, 26, 0));
    filter: blur(13px);
    pointer-events: none;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(30px, 8vw, 36px);
    font-weight: 520;
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 348px;
    color: rgba(244, 243, 243, 0.72);
    font-size: 16px;
    font-weight: 430;
    line-height: 1.62;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-buttons .pill {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 14px;
  }

  .pegasus-card {
    position: absolute;
    left: 16px;
    right: auto;
    bottom: 18px;
    width: calc(100vw - 32px);
    min-height: 116px;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .pegasus-card img {
    width: 78px;
    height: 60px;
  }

  .pegasus-card b {
    display: none;
  }

  .pegasus-card strong {
    font-size: 14px;
    line-height: 1.34;
  }

  .pegasus-card small {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .results {
    padding: 64px 0;
  }

  .results-grid {
    width: calc(100vw - 40px);
    gap: 30px;
    border-left: 0;
  }

  .result-steps {
    min-height: auto;
    gap: 26px;
    padding-left: 0;
  }

  .step h2,
  .split-heading h2,
  .secure-copy h2,
  .models-heading h2,
  .playground-grid h2,
  .section-title h2,
  .cta-card h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .scale-visual {
    min-height: 370px;
    border-radius: 0 0 38px 38px;
  }

  .scale-visual img {
    top: 96px;
    width: 104%;
  }

  .scale-orbit {
    inset: 92px -22% 62px;
  }

  .packet-stream {
    inset: 28% 1% 21%;
    background-size: 42px 34px, 84px 66px, 100% 100%;
  }

  .scale-core {
    width: 122px;
    height: 122px;
    gap: 8px;
    transform: translate(-50%, -24%);
  }

  .scale-core i {
    font-size: 42px;
  }

  .scale-core em {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .scale-path {
    display: none;
  }

  .scale-node {
    width: 126px;
    min-height: auto;
    padding: 10px 11px;
    border-radius: 14px;
    animation: scale-node-breathe 4.8s ease-in-out infinite;
  }

  .node-ai {
    top: 12%;
    left: 5%;
  }

  .node-danzhao {
    top: 10%;
    right: 4%;
  }

  .node-campus {
    right: 7%;
    bottom: 7%;
  }

  .scale-node small {
    font-size: 10px;
  }

  .scale-node b {
    font-size: 13px;
  }

  .scale-node span {
    font-size: 10px;
    line-height: 1.35;
  }

  .use-case-track {
    width: calc(100vw - 40px);
    margin: 0 auto;
    overflow-x: auto;
    mask-image: none;
  }

  .use-case-track::before,
  .use-case-track::after {
    display: none;
  }

  .use-case-reel {
    gap: 16px;
    padding: 0;
    animation: none;
    margin: 0 auto;
  }

  .use-card,
  .use-card.feature {
    width: min(320px, calc(100vw - 40px));
    min-height: 360px;
    padding: 28px;
    border-radius: 28px;
  }

  .use-card h3 {
    font-size: 26px;
  }

  .use-card p {
    font-size: 14px;
  }

  .workflow-gradient,
  .workflow-white,
  .use-cases,
  .secure-light,
  .models,
  .playground,
  .pricing,
  .research,
  .stories,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .split-heading,
  .secure-copy,
  .models-heading {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .split-heading h2,
  .split-heading p {
    padding: 0 20px;
  }

  .split-heading p,
  .section-title p,
  .secure-copy p,
  .playground-grid p {
    font-size: 15px;
    line-height: 1.64;
  }

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

  .metrics article {
    min-height: 210px;
    gap: 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .metrics strong {
    font-size: 48px;
  }

  .metrics p {
    font-size: 15px;
  }

  .model-cards article {
    min-height: 430px;
    padding: 44px 36px;
    border-radius: 34px;
  }

  .playground-shell {
    padding: 20px;
    border-radius: 28px;
  }

  .playground-grid video {
    min-height: 360px;
    border-radius: 22px;
  }

  .ecosystem-visual {
    min-height: 360px;
  }

  .ecosystem-visual article {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .ecosystem-visual strong {
    font-size: 22px;
  }

  .price-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links nav {
    min-height: auto;
    padding: 26px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-links nav:last-child {
    border-bottom: 0;
  }

  .stories article {
    width: 286px;
    font-size: 18px;
  }

  .cta-card {
    min-height: 390px;
    border-radius: 72px 72px 0 0;
    padding: 0 26px;
  }
}

.agent-page {
  min-height: 100vh;
  color: #f4f3ef;
  background: #11110f;
}

@property --agent-flow-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.agent-page .site-header {
  grid-template-columns: minmax(220px, 1fr) auto;
  color: rgba(244, 243, 239, 0.9);
  background: linear-gradient(180deg, rgba(17, 17, 15, 0.74), rgba(17, 17, 15, 0.2));
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.agent-page .brand {
  width: 240px;
}

.agent-page .brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.agent-page .nav-pill.primary {
  color: #151411;
  background: #f4efe6;
}

.agent-page .nav-pill.ghost {
  color: rgba(244, 243, 239, 0.86);
  border-color: rgba(244, 239, 230, 0.18);
  background: rgba(244, 239, 230, 0.08);
}

.agent-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(246, 175, 255, 0.1), transparent 32%),
    linear-gradient(180deg, #11110f 0%, #191815 44%, #f2f0ea 44%, #f7f5ef 100%);
}

.agent-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 80px;
  isolation: isolate;
  background: #11110f;
}

.agent-hero::before,
.agent-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.agent-hero::before {
  z-index: -4;
  background:
    radial-gradient(circle at 62% 45%, rgba(244, 239, 230, 0.22), transparent 8%, transparent 20%),
    radial-gradient(circle at 70% 45%, rgba(132, 219, 26, 0.18), transparent 21%),
    radial-gradient(circle at 24% 52%, rgba(246, 175, 255, 0.15), transparent 34%),
    linear-gradient(118deg, #11110f 0%, #1c1b1a 50%, #0f120f 100%);
}

.agent-hero::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(244, 239, 230, 0.08), transparent 46%),
    linear-gradient(90deg, rgba(17, 17, 15, 0.78) 0%, rgba(17, 17, 15, 0.34) 34%, rgba(17, 17, 15, 0.16) 62%, rgba(17, 17, 15, 0.72) 100%),
    linear-gradient(180deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0.76));
}

.agent-hero-video {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.02);
}

.agent-aurora {
  position: absolute;
  inset: -18% -10%;
  z-index: -3;
  opacity: 0.72;
  background:
    conic-gradient(from 230deg at 65% 46%, transparent 0deg, rgba(246, 175, 255, 0.24) 44deg, rgba(255, 181, 146, 0.2) 82deg, rgba(250, 185, 32, 0.24) 122deg, rgba(132, 219, 26, 0.22) 164deg, transparent 224deg),
    radial-gradient(circle at 64% 45%, rgba(244, 239, 230, 0.2), transparent 19%);
  filter: blur(18px);
  animation: agentAuroraShift 13s ease-in-out infinite alternate;
}

.agent-world-scene {
  position: absolute;
  z-index: 1;
  top: 6%;
  right: clamp(-96px, -4.5vw, -34px);
  width: min(52vw, 720px);
  height: min(54vw, 720px);
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.agent-world-scene::before,
.agent-world-scene::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.agent-world-scene::before {
  left: 4%;
  right: 2%;
  bottom: 2%;
  height: 26%;
  background:
    radial-gradient(ellipse at 56% 28%, rgba(244, 239, 230, 0.22), transparent 44%),
    repeating-linear-gradient(90deg, rgba(244, 239, 230, 0.12) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(0deg, rgba(244, 239, 230, 0.1) 0 1px, transparent 1px 44px);
  mask-image: linear-gradient(180deg, transparent, #000 18%, transparent 82%);
  opacity: 0.42;
  transform: rotateX(68deg) translateY(38px) translateZ(-80px);
}

.agent-world-scene::after {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 44% 45%, rgba(244, 239, 230, 0.22), transparent 34%),
    conic-gradient(from 220deg at 48% 48%, transparent 0deg, rgba(246, 175, 255, 0.16) 58deg, rgba(255, 181, 146, 0.16) 96deg, rgba(250, 185, 32, 0.2) 132deg, rgba(132, 219, 26, 0.16) 170deg, transparent 235deg);
  filter: blur(32px);
  opacity: 0.52;
  animation: agentDoorPulse 5.6s ease-in-out infinite;
}

.agent-story-video {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 52%;
  opacity: 0.9;
  border-radius: 42px;
  mix-blend-mode: screen;
  filter: saturate(0.94) contrast(1.08) brightness(0.92);
  box-shadow:
    0 0 70px rgba(244, 239, 230, 0.08),
    0 0 180px rgba(132, 219, 26, 0.08);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 72%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  mask-composite: intersect;
  transform: rotateY(-7deg) translateZ(20px);
}

.agent-door {
  display: none;
}

.agent-door::before,
.agent-door::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.agent-door::before {
  inset: 18px;
  border-radius: 34px 34px 48px 48px;
  border: 1px solid rgba(244, 239, 230, 0.22);
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(244, 239, 230, 0.72) 49%, rgba(244, 239, 230, 0.95) 50%, rgba(244, 239, 230, 0.72) 51%, transparent 53%),
    radial-gradient(ellipse at 50% 54%, rgba(244, 239, 230, 0.18), transparent 48%);
  box-shadow: inset 0 0 52px rgba(244, 239, 230, 0.08);
}

.agent-door::after {
  left: -18%;
  right: -18%;
  bottom: 4%;
  height: 38%;
  background:
    repeating-linear-gradient(90deg, rgba(244, 239, 230, 0.14) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(244, 239, 230, 0.12) 0 1px, transparent 1px 30px);
  mask-image: radial-gradient(ellipse at 50% 35%, #000 0%, transparent 70%);
  opacity: 0.5;
  transform: perspective(420px) rotateX(64deg);
}

.door-light {
  position: absolute;
  z-index: 1;
  top: 10%;
  bottom: 10%;
  left: 46%;
  width: 8%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent, rgba(244, 239, 230, 0.92) 16%, rgba(250, 185, 32, 0.5) 48%, rgba(132, 219, 26, 0.4) 72%, transparent);
  box-shadow: 0 0 32px rgba(244, 239, 230, 0.56), 0 0 84px rgba(132, 219, 26, 0.2);
  filter: blur(2px);
  animation: agentDoorPulse 4.8s ease-in-out infinite;
}

.door-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
}

.agent-person {
  display: none;
}

.world-particles i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.72);
  box-shadow: 0 0 24px rgba(244, 239, 230, 0.42);
  animation: agentFloat 7s ease-in-out infinite;
}

.world-particles i:nth-child(1) { top: 11%; left: 46%; animation-delay: -1s; }
.world-particles i:nth-child(2) { top: 30%; left: 78%; animation-delay: -2.2s; }
.world-particles i:nth-child(3) { top: 55%; left: 62%; animation-delay: -3.7s; }
.world-particles i:nth-child(4) { top: 72%; left: 30%; animation-delay: -5s; }
.world-particles i:nth-child(5) { top: 22%; left: 22%; animation-delay: -4.1s; }
.world-particles i:nth-child(6) { top: 82%; left: 80%; animation-delay: -0.6s; }

.agent-hero-inner {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 198px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vh, 56px);
  perspective: 1200px;
}

.agent-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(244, 239, 230, 0.58);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-download-dock {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 320px));
  gap: clamp(18px, 2.2vw, 28px);
  width: min(690px, 100%);
  align-self: center;
  justify-self: center;
  margin-right: clamp(80px, 9vw, 150px);
  padding-top: clamp(36px, 7vh, 86px);
  animation: agentDockFloat 7.2s ease-in-out infinite;
  transform-style: preserve-3d;
}

.agent-download-window {
  position: relative;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px 26px;
  color: #f7f3ea;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 32px;
  background:
    linear-gradient(138deg, rgba(244, 239, 230, 0.075), rgba(244, 239, 230, 0.018)) padding-box,
    linear-gradient(125deg, rgba(246, 175, 255, 0.36), rgba(255, 181, 146, 0.2), rgba(250, 185, 32, 0.36), rgba(132, 219, 26, 0.26), rgba(244, 239, 230, 0.12)) border-box;
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.3),
    0 0 42px rgba(246, 175, 255, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px) brightness(0.86) saturate(0.82);
  transform: translateZ(0) rotateY(-4deg);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.agent-download-window::before,
.agent-download-window::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.agent-download-window::before {
  inset: 0;
  z-index: 1;
  border-radius: 35px;
  opacity: 0.46;
  background: conic-gradient(from var(--agent-flow-angle), rgba(246, 175, 255, 0.72), rgba(255, 181, 146, 0.42), rgba(250, 185, 32, 0.62), rgba(132, 219, 26, 0.46), rgba(246, 175, 255, 0.72));
  padding: 1px;
  box-sizing: border-box;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 9px rgba(246, 175, 255, 0.12));
  animation: agentBorderFlow 5.4s linear infinite;
}

.agent-download-window::after {
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.045) 44%, transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(244, 239, 230, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(12, 12, 10, 0.06), rgba(12, 12, 10, 0.16));
  opacity: 0.58;
  transform: translateX(-18%);
  transition: transform 420ms ease, opacity 260ms ease;
}

.agent-download-window:hover {
  transform: translateY(-10px) rotateY(0deg) scale(1.045);
  border-color: rgba(244, 239, 230, 0.32);
  background:
    linear-gradient(138deg, rgba(244, 239, 230, 0.105), rgba(244, 239, 230, 0.03)) padding-box,
    linear-gradient(125deg, rgba(246, 175, 255, 0.7), rgba(255, 181, 146, 0.34), rgba(250, 185, 32, 0.62), rgba(132, 219, 26, 0.46), rgba(244, 239, 230, 0.18)) border-box;
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.38),
    0 0 44px rgba(246, 175, 255, 0.1),
    0 0 54px rgba(132, 219, 26, 0.07);
}

.agent-download-window:hover::before {
  opacity: 0.82;
  filter: drop-shadow(0 0 14px rgba(246, 175, 255, 0.18));
}

.agent-download-window:hover::after {
  opacity: 0.72;
  transform: translateX(18%);
}

.agent-download-window small,
.agent-download-window strong,
.agent-download-window span,
.agent-download-window b {
  position: relative;
  z-index: 2;
}

.agent-download-window small {
  color: rgba(244, 239, 230, 0.48);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.agent-download-window strong {
  margin-top: 18px;
  color: #fffaf1;
  font-size: 26px;
  font-weight: 460;
  line-height: 1.08;
}

.agent-download-window span {
  max-width: 270px;
  margin-top: 14px;
  color: rgba(244, 239, 230, 0.64);
  font-size: 13px;
  line-height: 1.64;
}

.agent-download-window b {
  margin-top: 22px;
  color: #f4efe6;
  font-size: 14px;
  font-weight: 720;
}

.agent-download-window.mac {
  transform: translateZ(0) rotateY(4deg);
}

.agent-download-window.mac:hover {
  transform: translateY(-10px) rotateY(0deg) scale(1.045);
}

.agent-hero-statement {
  width: min(1040px, 100%);
  max-width: 1040px;
  margin: 0;
  pointer-events: none;
  color: rgba(244, 239, 230, 0.8);
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 4.7vw, 74px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  transform: rotateX(7deg) rotateY(-14deg) translateZ(12px);
  transform-origin: 50% 50%;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.58),
    0 16px 48px rgba(0, 0, 0, 0.68),
    0 0 30px rgba(244, 239, 230, 0.1),
    0 0 78px rgba(132, 219, 26, 0.05);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), #000 18%, #000 72%, rgba(0, 0, 0, 0.3));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), #000 18%, #000 72%, rgba(0, 0, 0, 0.3));
}

.agent-product {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 72px;
  padding: 118px 0 132px;
  color: #1d1c1b;
}

.agent-product-video {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: #1c1b1a;
  box-shadow: 0 34px 120px rgba(29, 28, 27, 0.18);
}

.agent-product-video video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.agent-product-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 18% 18%, rgba(246, 175, 255, 0.22), transparent 24%);
  pointer-events: none;
}

.agent-video-overlay {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: 22px;
  background: rgba(16, 16, 14, 0.48);
  backdrop-filter: blur(18px);
}

.agent-video-overlay span {
  display: block;
  margin-bottom: 12px;
  color: rgba(244, 239, 230, 0.58);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-video-overlay strong {
  display: block;
  max-width: 540px;
  color: #f7f3ea;
  font-size: 24px;
  font-weight: 460;
  line-height: 1.26;
}

.agent-product-copy {
  max-width: 620px;
}

.agent-product-copy .agent-kicker {
  color: rgba(29, 28, 27, 0.46);
}

.agent-product-copy h2 {
  margin: 0;
  color: #1d1c1b;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 430;
  line-height: 1.08;
}

.agent-product-copy p {
  margin: 24px 0 0;
  color: rgba(29, 28, 27, 0.68);
  font-size: 16px;
  line-height: 1.82;
}

.agent-product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 34px;
}

.agent-product-points span {
  padding: 10px 13px;
  border: 1px solid rgba(29, 28, 27, 0.11);
  border-radius: 999px;
  color: rgba(29, 28, 27, 0.62);
  background: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
}

.agent-product-copy .hero-primary {
  color: #f4efe6;
  background: #1d1c1b;
  box-shadow: 0 18px 60px rgba(29, 28, 27, 0.16);
}

@keyframes agentAuroraShift {
  0% { transform: translate3d(-3%, -2%, 0) rotate(-3deg) scale(1); opacity: 0.58; }
  100% { transform: translate3d(3%, 2%, 0) rotate(4deg) scale(1.08); opacity: 0.88; }
}

@keyframes agentDoorPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.96); }
  50% { opacity: 0.86; transform: scale(1.06); }
}

@keyframes agentFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.36; }
  50% { transform: translate3d(18px, -28px, 0); opacity: 0.92; }
}

@keyframes agentBorderBreath {
  0%, 100% { filter: blur(10px) saturate(0.95); }
  50% { filter: blur(16px) saturate(1.36); }
}

@keyframes agentDockFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes agentBorderFlow {
  to { --agent-flow-angle: 360deg; }
}

@media (max-width: 1180px) {
  .agent-world-scene {
    right: -260px;
    width: 790px;
    opacity: 0.76;
  }

  .agent-product {
    grid-template-columns: 1fr;
  }

  .agent-download-dock {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    width: min(620px, 100%);
    margin-right: 0;
    padding-top: 0;
  }

  .agent-product-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .agent-page .site-header {
    grid-template-columns: 1fr auto;
  }

  .agent-page .brand {
    width: min(178px, calc(100vw - 168px));
  }

  .agent-page .nav-actions {
    display: flex;
  }

  .agent-page .nav-pill.ghost {
    display: none;
  }

  .agent-hero {
    min-height: 940px;
    padding: 92px 0 116px;
  }

  .agent-world-scene {
    top: 25%;
    right: -310px;
    width: 720px;
    opacity: 0.46;
  }

  .agent-story-video {
    opacity: 0.52;
    filter: saturate(0.84) contrast(1.02) brightness(0.78);
    object-position: 42% 50%;
  }

  .agent-person {
    transform: scale(0.78) rotateY(24deg) translateZ(50px);
    transform-origin: left bottom;
  }

  .agent-hero-inner,
  .agent-product {
    width: calc(100vw - 40px);
  }

  .agent-hero-inner {
    gap: 36px;
    min-height: calc(940px - 208px);
  }

  .agent-download-dock {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(330px, 100%);
  }

  .agent-download-window,
  .agent-download-window.mac,
  .agent-download-window:hover,
  .agent-download-window.mac:hover {
    min-height: 158px;
    padding: 20px 22px;
    transform: none;
  }

  .agent-download-window strong {
    font-size: 23px;
  }

  .agent-hero-statement {
    font-size: clamp(32px, 11vw, 44px);
    line-height: 1.12;
    letter-spacing: 0.02em;
    white-space: normal;
    transform: rotateY(-5deg) translateZ(6px);
  }

  .agent-product {
    gap: 42px;
    padding: 76px 0 88px;
  }

  .agent-product-video,
  .agent-product-video video {
    min-height: 360px;
    border-radius: 24px;
  }

  .agent-video-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .agent-video-overlay strong {
    font-size: 19px;
  }

  .agent-product-copy h2 {
    font-size: 34px;
  }
}

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