:root {
  --paper: #f3f3ef;
  --paper-bright: #fafaf7;
  --surface: #ffffff;
  --ink: #121214;
  --ink-soft: #29292e;
  --muted: #717179;
  --faint: #a2a2a9;
  --line: rgba(18, 18, 20, 0.11);
  --line-strong: rgba(18, 18, 20, 0.18);
  --accent: #665cff;
  --accent-dark: #5147e8;
  --accent-soft: #eceaff;
  --success: #167c5b;
  --warning: #956812;
  --dark: #101012;
  --dark-soft: #19191d;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-soft: 0 20px 60px rgba(18, 18, 20, 0.07);
  --shadow-lift: 0 28px 80px rgba(18, 18, 20, 0.13);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

img,
svg {
  display: block;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.platform-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.platform-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(243, 243, 239, 0.78);
  backdrop-filter: saturate(150%) blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.platform-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 250, 247, 0.92);
}

.platform-nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.platform-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-symbol {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 9px;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  background: #fff;
}

.brand-symbol::before {
  width: 7px;
  height: 17px;
  left: 8px;
  top: 7px;
  border-radius: 5px 5px 2px 5px;
  transform: skewY(-25deg);
}

.brand-symbol::after {
  width: 8px;
  height: 8px;
  right: 7px;
  bottom: 7px;
  border-radius: 50%;
  box-shadow: 0 -9px 0 -2px #a79fff;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.platform-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 590;
  transition: color 160ms ease, background 160ms ease;
}

.platform-links a:hover,
.platform-links a.is-active {
  background: rgba(18, 18, 20, 0.055);
  color: var(--ink);
}

.platform-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.text-link,
.header-login {
  padding: 8px 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 620;
}

.button,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 680;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary,
.header-cta {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(18, 18, 20, 0.16);
}

.button-primary:hover,
.header-cta:hover {
  background: #2b2b30;
  box-shadow: 0 12px 30px rgba(18, 18, 20, 0.2);
}

.button-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(102, 92, 255, 0.25);
}

.button-accent:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(18, 18, 20, 0.3);
  background: #fff;
}

.button-disabled,
.button:disabled {
  cursor: not-allowed;
  transform: none;
  border-color: var(--line);
  background: #e8e8e4;
  color: #929299;
  box-shadow: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before {
  width: 15px;
  height: 1.5px;
  display: block;
  border-radius: 1px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.menu-toggle span::before {
  transform: translateY(5px);
}

.menu-open .menu-toggle span {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-open .menu-toggle span::before {
  transform: rotate(-90deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 54px;
}

.hero::before {
  position: absolute;
  width: 560px;
  height: 560px;
  top: -300px;
  right: -170px;
  border-radius: 50%;
  background: rgba(102, 92, 255, 0.09);
  filter: blur(4px);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  margin: 23px 0 26px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 690;
  letter-spacing: -0.072em;
  line-height: 0.99;
}

.hero h1 span,
.product-hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.product-stage-wrap {
  position: relative;
  margin-top: 78px;
  padding: 0 4px;
}

.product-stage-wrap::before {
  position: absolute;
  z-index: -1;
  width: 80%;
  height: 55%;
  left: 10%;
  bottom: -8%;
  border-radius: 50%;
  background: rgba(102, 92, 255, 0.18);
  filter: blur(70px);
  content: "";
}

.product-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: #17171a;
  box-shadow: 0 42px 100px rgba(18, 18, 20, 0.24);
}

.stage-bar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #202024;
  color: #d8d8dd;
}

.stage-brand,
.stage-tools,
.stage-user {
  display: flex;
  align-items: center;
  gap: 9px;
}

.stage-brand {
  font-size: 12px;
  font-weight: 700;
}

.stage-brand i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font-style: normal;
}

.stage-tools span {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #a9a9b0;
  font-size: 11px;
}

.stage-user i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #393940;
  color: #fff;
  font-size: 10px;
  font-style: normal;
}

.stage-canvas {
  position: absolute;
  inset: 58px 0 0;
  overflow: hidden;
  background-color: #151518;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.stage-rail {
  position: absolute;
  z-index: 5;
  width: 44px;
  left: 16px;
  top: 50%;
  display: grid;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(36, 36, 41, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
}

.stage-rail span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #9999a2;
  font-size: 12px;
}

.stage-rail span.is-active {
  background: var(--accent);
  color: #fff;
}

.canvas-node {
  position: absolute;
  z-index: 3;
  width: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: #26262b;
  color: #f3f3f5;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.3);
}

.canvas-node header {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 720;
}

.canvas-node header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7de0bd;
  box-shadow: 0 0 0 4px rgba(125, 224, 189, 0.09);
}

.node-body {
  padding: 12px;
}

.node-source {
  left: 12%;
  top: 28%;
}

.node-prompt {
  width: 245px;
  left: 39%;
  top: 13%;
}

.node-output {
  width: 245px;
  right: 9%;
  top: 35%;
}

.node-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(140deg, transparent 42%, rgba(255, 255, 255, 0.22) 43%, transparent 45%),
    radial-gradient(circle at 67% 34%, #f4e5d0 0 9%, transparent 10%),
    linear-gradient(140deg, #4a4038 0 26%, #b99676 27% 49%, #e7d4bd 50% 70%, #66564a 71%);
}

.node-image.output {
  background:
    radial-gradient(circle at 58% 28%, rgba(255, 255, 255, 0.72), transparent 14%),
    linear-gradient(145deg, #d7cbc1 0 29%, #785a49 30% 55%, #e1cbb4 56% 75%, #5b463d 76%);
}

.node-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #9d9da6;
  font-size: 9px;
}

.prompt-line {
  height: 6px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #3b3b42;
}

.prompt-line:nth-child(2) { width: 76%; }
.prompt-line:nth-child(3) { width: 88%; }
.prompt-line:nth-child(4) { width: 54%; }

.prompt-action {
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.canvas-edge {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), #8f85ff);
  box-shadow: 0 0 14px rgba(102, 92, 255, 0.65);
  transform-origin: left center;
}

.edge-one {
  width: 245px;
  left: 29%;
  top: 44%;
  transform: rotate(-25deg);
}

.edge-two {
  width: 250px;
  left: 57%;
  top: 37%;
  transform: rotate(18deg);
}

.canvas-status {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.canvas-status span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(35, 35, 40, 0.94);
  color: #aaaab3;
  font-size: 9px;
}

.stage-float {
  position: absolute;
  z-index: 8;
  max-width: 230px;
  padding: 13px 15px;
  border: 1px solid rgba(18, 18, 20, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(18px);
}

.stage-float strong,
.stage-float small {
  display: block;
}

.stage-float strong {
  font-size: 12px;
}

.stage-float small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.float-a {
  top: 40px;
  right: -22px;
}

.float-b {
  left: -20px;
  bottom: 48px;
}

.section {
  padding: 118px 0;
}

.section-compact {
  padding: 78px 0;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .eyebrow,
.section-dark .section-heading p {
  color: #9a9aa3;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.spotlight-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 22% 22%, rgba(164, 155, 255, 0.7), transparent 30%),
    linear-gradient(145deg, #1d1c25, #0f0f11 62%);
  box-shadow: var(--shadow-lift);
}

.spotlight-panel {
  position: absolute;
  inset: 82px -50px 68px 62px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #f8f8f5;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(-3deg);
}

.spotlight-panel::before {
  height: 46px;
  display: block;
  border-bottom: 1px solid var(--line);
  background: #fff;
  content: "";
}

.spotlight-panel::after {
  position: absolute;
  inset: 46px 0 0;
  background-color: #f5f5f2;
  background-image: radial-gradient(circle, #c7c7c7 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
}

.spotlight-chip {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  font-weight: 700;
}

.spotlight-chip.one { left: 105px; top: 235px; }
.spotlight-chip.two { right: 70px; top: 335px; color: #fff; background: var(--accent); }

.spotlight-copy h3 {
  margin: 18px 0 20px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.spotlight-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}

.feature-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.suite-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.suite-card,
.product-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.suite-card:hover,
.product-card:hover {
  border-color: rgba(18, 18, 20, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.suite-card.featured,
.product-card.featured {
  grid-column: span 7;
  background: var(--surface);
}

.suite-card.upcoming,
.product-card.upcoming {
  grid-column: span 5;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(234, 234, 230, 0.76));
}

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

.product-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 19px;
  font-weight: 650;
}

.product-icon.accent {
  background: var(--accent);
  box-shadow: 0 13px 28px rgba(102, 92, 255, 0.24);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.06em;
}

.status-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.status-pill.upcoming::before { background: #a2a2a9; }
.status-pill.beta::before { background: var(--accent); }

.suite-card h3,
.product-card h3 {
  margin: 40px 0 10px;
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.suite-card p,
.product-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 36px;
  font-size: 13px;
  font-weight: 720;
}

.card-link span {
  transition: transform 160ms ease;
}

.suite-card:hover .card-link span,
.product-card:hover .card-link span {
  transform: translateX(3px);
}

.upcoming-lines {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -45px;
  bottom: -55px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.upcoming-lines::before,
.upcoming-lines::after {
  position: absolute;
  inset: 26px;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.upcoming-lines::after { inset: 53px; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 62px;
}

.principle-item {
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.principle-item i {
  color: #8e85ff;
  font-size: 12px;
  font-style: normal;
}

.principle-item h3 {
  margin: 26px 0 9px;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.principle-item p {
  margin: 0;
  color: #9a9aa3;
  font-size: 14px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 54px 58px;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: #fff;
}

.cta-panel::after {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -100px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.035), 0 0 0 100px rgba(255, 255, 255, 0.025);
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.cta-panel .button {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(49, 39, 180, 0.26);
}

.platform-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
}

/* 产品列表与详情 */
.page-hero {
  padding: 105px 0 72px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 6.5vw, 82px);
}

.page-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  padding-bottom: 118px;
}

.product-grid .product-card {
  min-height: 410px;
}

.product-hero {
  padding: 90px 0 48px;
  text-align: center;
}

.product-hero .eyebrow {
  justify-content: center;
}

.product-hero h1 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(52px, 7vw, 94px);
}

.product-hero > .platform-wrap > p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.product-hero .hero-actions {
  justify-content: center;
}

.product-hero-stage {
  margin-top: 60px;
  text-align: left;
}

.product-hero-stage .product-stage {
  min-height: 690px;
}

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

.capability-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.capability-card i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.capability-card h3 {
  margin: 76px 0 12px;
  font-size: 23px;
  font-weight: 630;
  letter-spacing: -0.035em;
}

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

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-step {
  min-height: 220px;
  padding: 27px 24px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child { border-right: 0; }
.workflow-step > span { color: var(--accent); font-size: 11px; font-weight: 800; }
.workflow-step h3 { margin: 56px 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.workflow-step p { margin: 0; color: var(--muted); font-size: 13px; }

/* 工作台 */
.workspace-shell {
  min-height: calc(100vh - 72px);
  padding: 72px 0 100px;
}

.workspace-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.workspace-heading h1 {
  margin: 10px 0 0;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.workspace-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
}

.workspace-products {
  display: grid;
  gap: 16px;
}

.workspace-product {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  background: var(--dark);
  color: #fff;
}

.workspace-product::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -170px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(2px);
  opacity: 0.72;
  content: "";
}

.workspace-product .status-pill {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.14);
  color: #b6b6bf;
}

.workspace-product h2 {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 100px 0 15px;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.workspace-product p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  color: #a7a7b0;
}

.workspace-product .hero-actions {
  position: relative;
  z-index: 3;
}

.workspace-product .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.workspace-side {
  display: grid;
  align-content: start;
  gap: 16px;
}

.workspace-agent {
  position: relative;
  min-height: 152px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 14px;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  background: var(--dark);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workspace-agent::after {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -95px;
  top: -90px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(22px);
  opacity: 0.65;
  content: "";
}

.workspace-agent:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(18, 18, 20, 0.18);
}
.workspace-results { background: linear-gradient(145deg, #252329, #443f79); }
.workspace-results .result-mini-mark { filter: hue-rotate(28deg); }

.agent-mini-mark {
  position: relative;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  z-index: 2;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.agent-mini-mark::before {
  position: absolute;
  width: 61%;
  height: 61%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  content: "";
}

.agent-mini-mark i {
  position: relative;
  width: 7px;
  height: 7px;
  z-index: 2;
  border-radius: 50%;
  background: #a79fff;
  box-shadow: 0 0 14px #8f86ff;
}

.workspace-agent-copy {
  position: relative;
  z-index: 2;
}

.workspace-agent-copy small,
.workspace-agent-copy strong,
.workspace-agent-copy > span { display: block; }
.workspace-agent-copy small { color: #9d95ff; font-size: 8px; font-weight: 800; letter-spacing: 0.14em; }
.workspace-agent-copy strong { margin-top: 3px; font-size: 16px; }
.workspace-agent-copy > span { margin-top: 3px; color: #9898a2; font-size: 10px; }

.workspace-agent-arrow {
  position: relative;
  z-index: 2;
  color: #aaaab3;
  font-size: 16px;
}

.workspace-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.workspace-panel h3 {
  margin: 0 0 15px;
  font-size: 15px;
}

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

.account-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.account-row strong,
.account-row small { display: block; }
.account-row small { color: var(--muted); font-size: 11px; }

.workspace-links {
  display: grid;
  gap: 2px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.workspace-links a,
.workspace-links button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-align: left;
}

.workspace-links a:hover,
.workspace-links button:hover { color: var(--ink); }

/* 登录与邀请 */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  background: var(--paper-bright);
}

.auth-visual {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 42px;
  background: var(--dark);
  color: #fff;
}

.auth-visual::before {
  position: absolute;
  width: 550px;
  height: 550px;
  left: -250px;
  top: 12%;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(110px);
  opacity: 0.4;
  content: "";
}

.auth-brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-weight: 720;
}

.auth-quote {
  position: relative;
  z-index: 3;
  max-width: 570px;
  margin: auto 0 44px;
}

.auth-quote span {
  color: #9088ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.auth-quote h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 5vw, 67px);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.auth-quote p {
  max-width: 520px;
  margin: 0;
  color: #a8a8b2;
}

.auth-mini-stage {
  position: relative;
  z-index: 3;
  height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background-color: #1b1b1f;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mini-node {
  position: absolute;
  width: 155px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #2a2a2f;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.28);
}

.mini-node strong,
.mini-node small { display: block; }
.mini-node strong { font-size: 10px; }
.mini-node small { margin-top: 8px; color: #96969f; font-size: 8px; }
.mini-node.one { left: 9%; top: 35%; }
.mini-node.two { left: 42%; top: 16%; }
.mini-node.three { right: 7%; top: 48%; border-color: rgba(102, 92, 255, 0.6); }

.auth-form-side {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 50px 34px;
}

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

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 74px;
  color: var(--muted);
  font-size: 12px;
}

.auth-form-wrap h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.auth-subtitle {
  margin: 10px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.auth-form {
  display: grid;
  gap: 19px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(102, 92, 255, 0.1);
}

.field input::placeholder { color: #aaaab0; }

.auth-submit {
  width: 100%;
  height: 52px;
  margin-top: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 690;
  transition: background 160ms ease, transform 160ms ease;
}

.auth-submit:hover { background: #2c2c31; transform: translateY(-1px); }
.auth-submit:disabled { cursor: wait; transform: none; background: #77777e; }

.auth-message {
  min-height: 22px;
  margin: 0;
  color: #bf3f4b;
  font-size: 12px;
}

.auth-message.success { color: var(--success); }

.auth-footnote {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.invite-access {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -16px 0 24px;
}

.invite-access span {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
}

/* 404 */
.not-found {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 70px 24px;
  text-align: center;
}

.not-found-code {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.not-found h1 {
  margin: 18px 0 14px;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.not-found p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: var(--muted);
}

/* 进入视口动画 */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.notice-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(18,18,20,.1); border-radius: 50%; background: #18181c; color: #fff; cursor: pointer; box-shadow: 0 16px 45px rgba(18,18,20,.2); }
.notice-launcher > span { font-size: 21px; line-height: 1; }
.notice-launcher > b { position: absolute; min-width: 20px; height: 20px; right: -3px; top: -4px; display: grid; place-items: center; padding: 0 5px; border: 2px solid #fff; border-radius: 999px; background: #665cff; color: #fff; font-size: 7px; }
.notice-launcher > b[hidden] { display: none; }
.notice-launcher.has-unread::after { position: absolute; inset: -5px; border: 1px solid rgba(102,92,255,.35); border-radius: 50%; content: ""; animation: notice-pulse 2s ease-out infinite; }
.notice-drawer { position: fixed; width: min(390px, calc(100% - 24px)); max-height: min(620px, calc(100vh - 100px)); right: 22px; bottom: 82px; z-index: 79; display: grid; grid-template-rows: auto minmax(0,1fr) auto; overflow: hidden; border: 1px solid rgba(18,18,20,.1); border-radius: 19px; background: #fafaf7; box-shadow: 0 28px 90px rgba(18,18,20,.22); opacity: 0; pointer-events: none; transform: translateY(12px) scale(.98); transform-origin: bottom right; transition: opacity .2s ease,transform .2s ease; }
.notice-drawer.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.notice-drawer > header { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid rgba(18,18,20,.08); background: #fff; }
.notice-drawer > header span,.notice-drawer > header strong { display: block; }
.notice-drawer > header span { color: #665cff; font-size: 7px; font-weight: 800; letter-spacing: .15em; }
.notice-drawer > header strong { margin-top: 2px; font-size: 15px; }
.notice-drawer > header button { width: 31px; height: 31px; border: 0; border-radius: 50%; background: #f1f1ed; color: #77777e; cursor: pointer; font-size: 18px; }
.notice-list { min-height: 180px; overflow-y: auto; }
.notice-item { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; align-items: start; gap: 10px; padding: 14px 16px; border-bottom: 1px solid rgba(18,18,20,.07); background: #fff; }
.notice-item.is-unread { background: #f5f4ff; }
.notice-item > i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #e8f7ef; color: #287a59; font-size: 9px; font-style: normal; font-weight: 800; }
.notice-item > div { min-width: 0; }
.notice-item strong,.notice-item small { display: block; }
.notice-item strong { font-size: 10px; }
.notice-item p { margin: 3px 0; color: #66666e; font-size: 8px; line-height: 1.55; }
.notice-item small { color: #a0a0a6; font-size: 7px; }
.notice-actions { display: grid; gap: 4px; }
.notice-actions a,.notice-actions button { padding: 4px 6px; border: 0; border-radius: 6px; background: #f0f0ec; color: #66666d; cursor: pointer; font: inherit; font-size: 7px; text-align: center; }
.notice-actions a { background: #1b1b1f; color: #fff; }
.notice-drawer > footer { display: flex; justify-content: flex-end; padding: 10px 14px; border-top: 1px solid rgba(18,18,20,.08); background: #fff; }
.notice-drawer > footer button { border: 0; background: transparent; color: #77777e; cursor: pointer; font-size: 8px; }
.notice-empty { min-height: 220px; display: grid; align-content: center; justify-items: center; padding: 30px; text-align: center; }
.notice-empty > span { color: #665cff; font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.notice-empty strong { margin-top: 7px; font-size: 15px; }
.notice-empty p { margin: 4px 0 0; color: #77777e; font-size: 8px; }
.notice-toast { position: fixed; width: min(360px, calc(100% - 24px)); right: 22px; top: 82px; z-index: 90; display: flex; align-items: center; gap: 11px; padding: 13px; border: 1px solid rgba(18,18,20,.1); border-radius: 15px; background: #fff; box-shadow: 0 22px 60px rgba(18,18,20,.16); opacity: 0; transform: translateY(-12px); transition: opacity .22s ease,transform .22s ease; }
.notice-toast.is-visible { opacity: 1; transform: translateY(0); }
.notice-toast > i { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #e8f7ef; color: #287a59; font-size: 10px; font-style: normal; font-weight: 800; }
.notice-toast strong,.notice-toast span { display: block; }
.notice-toast strong { font-size: 10px; }
.notice-toast span { margin-top: 2px; color: #6f6f76; font-size: 8px; }
@keyframes notice-pulse { from { opacity: .7; transform: scale(.9); } to { opacity: 0; transform: scale(1.22); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .platform-nav { gap: 16px; }
  .platform-links { gap: 2px; }
  .platform-links a { padding-inline: 9px; }
  .hero { padding-top: 82px; }
  .product-stage { min-height: 550px; }
  .node-source { left: 10%; }
  .node-prompt { left: 38%; }
  .node-output { right: 4%; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 44px; }
  .spotlight-visual { min-height: 520px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .workflow-strip { grid-template-columns: 1fr 1fr; }
  .workflow-step:nth-child(2) { border-right: 0; }
  .workflow-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .workspace-grid { grid-template-columns: 1fr; }
  .workspace-side { grid-template-columns: 1fr 1fr; }
  .auth-page { grid-template-columns: minmax(360px, 0.8fr) minmax(480px, 1.2fr); }
  .auth-visual { padding-inline: 30px; }
}

@media (max-width: 760px) {
  .platform-wrap { width: min(100% - 32px, 1180px); }
  .platform-nav { min-height: 64px; grid-template-columns: auto 1fr auto; }
  .platform-links {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 2px;
    padding: 18px 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 250, 247, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .platform-links a { padding: 12px 14px; font-size: 15px; }
  .menu-open .platform-links { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .platform-actions .header-login { display: none; }
  .menu-toggle { display: grid; }
  .header-cta { min-height: 38px; padding-inline: 14px; font-size: 12px; }
  .hero { padding: 72px 0 40px; }
  .hero h1 { font-size: clamp(46px, 15vw, 72px); }
  .hero-lead { font-size: 16px; }
  .product-stage-wrap { margin-top: 52px; }
  .product-stage { min-height: 440px; border-radius: 20px; }
  .stage-bar { height: 50px; }
  .stage-canvas { inset: 50px 0 0; }
  .stage-tools { display: none; }
  .stage-rail { left: 9px; transform: translateY(-50%) scale(0.84); }
  .canvas-node { transform: scale(0.72); transform-origin: top left; }
  .node-source { left: 6%; top: 31%; }
  .node-prompt { left: 38%; top: 13%; }
  .node-output { right: -11%; top: 40%; }
  .canvas-edge { opacity: 0.55; }
  .stage-float { display: none; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 36px; }
  .suite-card.featured,
  .suite-card.upcoming,
  .product-card.featured,
  .product-card.upcoming { grid-column: 1 / -1; }
  .suite-card,
  .product-card { min-height: 310px; }
  .principle-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-panel { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-panel .button { width: fit-content; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-meta { flex-direction: column; gap: 4px; }
  .page-hero { padding: 76px 0 52px; }
  .product-hero { padding-top: 70px; }
  .product-hero-stage .product-stage { min-height: 460px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 260px; }
  .capability-card h3 { margin-top: 52px; }
  .workflow-strip { grid-template-columns: 1fr; }
  .workflow-step,
  .workflow-step:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow-step:last-child { border-bottom: 0; }
  .workspace-heading { align-items: flex-start; flex-direction: column; }
  .workspace-side { grid-template-columns: 1fr; }
  .workspace-product { min-height: 470px; padding: 26px; }
  .auth-page { display: block; }
  .auth-visual { min-height: auto; padding: 24px 24px 36px; }
  .auth-quote { margin: 76px 0 28px; }
  .auth-quote h1 { font-size: 43px; }
  .auth-mini-stage { height: 170px; }
  .auth-form-side { min-height: auto; padding: 55px 24px 70px; }
  .auth-back { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 44px;
    letter-spacing: -0.068em;
    word-break: keep-all;
  }
  .hero::before {
    width: 390px;
    height: 390px;
    top: -185px;
    right: -190px;
  }
  .platform-brand > span:last-child { display: none; }
  .header-cta { padding-inline: 12px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .product-stage { min-height: 390px; }
  .canvas-node { transform: scale(0.62); }
  .node-source { left: 4%; }
  .node-prompt { left: 35%; }
  .node-output { right: -24%; }
  .canvas-status { display: none; }
  .spotlight-visual { min-height: 410px; }
  .spotlight-panel { inset: 62px -60px 58px 32px; }
  .spotlight-chip.one { left: 54px; top: 180px; }
  .spotlight-chip.two { right: 25px; top: 278px; }
  .cta-panel .button { width: 100%; }
}

/* Workspace 2.0 · product focus and Yueling companion */
body[data-platform-page="workspace"] {
  background:
    radial-gradient(circle at 8% 14%, rgba(111, 94, 255, .1), transparent 25%),
    radial-gradient(circle at 92% 78%, rgba(74, 215, 188, .08), transparent 25%),
    var(--paper);
}

.workspace-shell { padding: 54px 0 82px; }
.workspace-heading { margin-bottom: 34px; }
.workspace-heading h1 { font-size: clamp(42px, 4.5vw, 58px); }
.workspace-heading p { max-width: 390px; font-size: 13px; line-height: 1.75; }
.workspace-grid { grid-template-columns: minmax(0, 1.32fr) minmax(340px, .68fr); align-items: start; gap: 18px; }
.workspace-products,
.workspace-side { gap: 18px; }

.workspace-product {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 39%, rgba(113, 96, 255, .22), transparent 27%),
    linear-gradient(145deg, #1b1922 0%, #111017 58%, #181622 100%);
  box-shadow: 0 32px 80px rgba(24,20,45,.16);
}
.workspace-product::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.16) .65px, transparent .65px);
  background-size: 22px 22px;
  opacity: .14;
  content: "";
}
.workspace-product::after {
  width: 370px;
  height: 370px;
  right: -160px;
  bottom: -190px;
  background: #7264ff;
  filter: blur(12px);
  opacity: .55;
}
.workspace-product-head { position: relative; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.workspace-product-head > span:last-child { color: rgba(255,255,255,.28); font-size: 8px; font-weight: 750; letter-spacing: .14em; }
.workspace-product .status-pill { position: static; }
.workspace-product-copy { position: relative; z-index: 4; width: min(390px, 58%); margin-top: auto; }
.workspace-product-copy > small { color: #8f84ff; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.workspace-product h2 { margin: 12px 0 13px; font-size: clamp(42px, 4.5vw, 58px); }
.workspace-product p { font-size: 13px; line-height: 1.75; }
.workspace-product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.workspace-product-tags span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.55); font-size: 8px; }
.workspace-product .hero-actions { margin-top: 26px; }

.workspace-canvas-preview {
  position: absolute;
  width: 46%;
  height: 330px;
  right: 24px;
  top: 116px;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background:
    radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px),
    rgba(255,255,255,.035);
  background-size: 18px 18px;
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 24px 55px rgba(0,0,0,.24);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
}
.workspace-canvas-preview::before { position: absolute; width: 180px; height: 180px; right: -52px; top: -62px; border-radius: 50%; background: rgba(113,97,255,.28); filter: blur(38px); content: ""; }
.workspace-canvas-line { position: absolute; height: 1px; z-index: 1; background: linear-gradient(90deg, transparent, #887aff 20%, #6dd7c4 80%, transparent); transform-origin: left; }
.workspace-canvas-line::after { position: absolute; width: 5px; height: 5px; right: 28%; top: -2px; border-radius: 50%; background: #a79cff; box-shadow: 0 0 10px #8e82ff; content: ""; animation: workspace-signal 2.2s infinite ease-in-out; }
.workspace-canvas-line.line-one { width: 49%; left: 22%; top: 43%; transform: rotate(-13deg); }
.workspace-canvas-line.line-two { width: 43%; left: 50%; top: 57%; transform: rotate(17deg); }
.workspace-canvas-node { position: absolute; z-index: 2; width: 116px; min-height: 75px; display: grid; align-content: start; gap: 5px; padding: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(29,27,39,.92); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.workspace-canvas-node em { color: #877cff; font-size: 7px; font-style: normal; font-weight: 800; letter-spacing: .13em; }
.workspace-canvas-node b { color: rgba(255,255,255,.8); font-size: 10px; }
.workspace-canvas-node > i { width: 66%; height: 4px; margin-top: 4px; border-radius: 99px; background: rgba(255,255,255,.08); box-shadow: 0 9px 0 rgba(255,255,255,.05); }
.workspace-canvas-node.node-input { left: 7%; top: 21%; animation: workspace-node-float 4.2s infinite ease-in-out; }
.workspace-canvas-node.node-model { left: 38%; top: 48%; animation: workspace-node-float 4.2s -.9s infinite ease-in-out; }
.workspace-canvas-node.node-output { right: 6%; top: 17%; animation: workspace-node-float 4.2s -1.8s infinite ease-in-out; }

.workspace-side { align-content: start; }
.workspace-agent { border-radius: 24px; }
.workspace-yueling {
  min-height: 300px;
  display: block;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 74% 34%, rgba(125,108,255,.3), transparent 29%),
    linear-gradient(145deg,#181620,#0e0d14 75%);
  box-shadow: 0 28px 65px rgba(28,23,51,.15);
  isolation: isolate;
}
.workspace-yueling::before { position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(rgba(255,255,255,.17) .55px, transparent .55px); background-size: 18px 18px; opacity: .15; content: ""; }
.workspace-yueling::after { width: 210px; height: 210px; right: -80px; top: -85px; background: #7668ff; opacity: .5; }
.workspace-spirit-stage { position: absolute; width: 170px; height: 170px; top: 20px; right: 10px; z-index: 2; display: grid; place-items: center; }
.workspace-spirit-aura { position: absolute; width: 118px; height: 118px; border-radius: 50%; background: radial-gradient(circle,rgba(148,132,255,.3),rgba(91,231,204,.08) 48%,transparent 70%); filter: blur(4px); animation: workspace-spirit-breathe 3.5s infinite ease-in-out; }
.workspace-spirit-character { position: relative; width: 158px; height: 158px; overflow: visible; filter: drop-shadow(0 17px 15px rgba(4,2,14,.35)); animation: workspace-spirit-float 4.2s infinite ease-in-out; }
.workspace-spirit-eyes { transform-box: fill-box; transform-origin: center; animation: workspace-spirit-blink 5s infinite; }
.workspace-spirit-rings { transform-box: fill-box; transform-origin: center; animation: workspace-spirit-ring 12s infinite linear; }
.workspace-spirit-arm { transform-box: fill-box; transform-origin: 50% 90%; }
.workspace-spirit-arm-right { animation: workspace-spirit-wave 3.6s .7s infinite ease-in-out; }
.workspace-spirit-core { transform-box: fill-box; transform-origin: center; filter: drop-shadow(0 0 5px #8ff0dd); animation: workspace-spirit-core 1.8s infinite ease-in-out; }
.workspace-spirit-shadow { transform-origin: center; animation: workspace-spirit-shadow 4.2s infinite ease-in-out; }
.workspace-spirit-star { position: absolute; width: 4px; height: 4px; z-index: 1; border-radius: 50%; background: #a99dff; box-shadow: 0 0 10px currentColor; animation: workspace-spirit-star 3.6s infinite ease-in-out; }
.workspace-spirit-star.star-one { left: 20px; top: 59px; color: #a99dff; }
.workspace-spirit-star.star-two { right: 17px; top: 87px; color: #72e3cf; animation-delay: -1.2s; }
.workspace-spirit-star.star-three { left: 55px; bottom: 18px; width: 3px; height: 3px; color: #fff; animation-delay: -2.1s; }
.workspace-spirit-greeting { position: absolute; top: 23px; left: 23px; z-index: 4; max-width: 120px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px 12px 3px 12px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); font-size: 8px; backdrop-filter: blur(12px); transition: opacity .25s ease, transform .25s ease; }
.workspace-yueling .workspace-agent-copy { position: absolute; width: 230px; left: 24px; bottom: 68px; }
.workspace-yueling .workspace-agent-copy small { color: #7ce0cc; }
.workspace-yueling .workspace-agent-copy strong { margin-top: 5px; color: #fff; font-size: 17px; line-height: 1.25; }
.workspace-yueling .workspace-agent-copy > span { max-width: 220px; margin-top: 7px; color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.55; }
.workspace-agent-action { position: absolute; left: 24px; bottom: 23px; z-index: 4; display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.76); font-size: 9px; font-weight: 700; }
.workspace-agent-action > i { width: 6px; height: 6px; border-radius: 50%; background: #69dec2; box-shadow: 0 0 0 4px rgba(105,222,194,.09),0 0 12px rgba(105,222,194,.6); }
.workspace-agent-action b { margin-left: 2px; font-size: 12px; }
.workspace-yueling:hover .workspace-spirit-arm-right { animation-duration: .62s; }
.workspace-yueling:hover .workspace-spirit-character { animation: workspace-spirit-happy .8s both cubic-bezier(.2,.9,.2,1); }

.workspace-results { min-height: 105px; align-items: center; padding: 18px 20px; border: 1px solid rgba(255,255,255,.09); background: linear-gradient(145deg,#2a2731,#4b457d); }
.workspace-results::after { width: 130px; height: 130px; }
.workspace-panel { padding: 20px; border-radius: 20px; background: rgba(255,255,255,.63); backdrop-filter: blur(14px); }
.workspace-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.workspace-info { min-height: 142px; padding: 17px; }
.workspace-info > span { color: #776bff; font-size: 8px; font-weight: 800; }
.workspace-info h3 { margin: 25px 0 7px; font-size: 12px; }
.workspace-info p { font-size: 9px; line-height: 1.6; }

@keyframes workspace-signal { 0% { left: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { left: 70%; opacity: 0; } }
@keyframes workspace-node-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes workspace-spirit-float { 0%,100% { transform: translateY(1px) rotate(-1deg); } 50% { transform: translateY(-8px) rotate(1deg); } }
@keyframes workspace-spirit-breathe { 0%,100% { transform: scale(.88); opacity: .55; } 50% { transform: scale(1.16); opacity: 1; } }
@keyframes workspace-spirit-blink { 0%,45%,48%,100% { transform: scaleY(1); } 46%,47% { transform: scaleY(.08); } }
@keyframes workspace-spirit-ring { to { transform: rotate(360deg); } }
@keyframes workspace-spirit-wave { 0%,12%,30%,48%,100% { transform: rotate(0); } 20%,40% { transform: rotate(18deg); } }
@keyframes workspace-spirit-core { 50% { transform: scale(1.35); opacity: .72; } }
@keyframes workspace-spirit-shadow { 0%,100% { transform: scaleX(1); opacity: .7; } 50% { transform: scaleX(.72); opacity: .4; } }
@keyframes workspace-spirit-star { 0%,100% { transform: translateY(4px) scale(.7); opacity: .25; } 50% { transform: translateY(-10px) scale(1.2); opacity: 1; } }
@keyframes workspace-spirit-happy { 0% { transform: none; } 45% { transform: translateY(-14px) scale(1.05); } 72% { transform: translateY(2px) scale(.98); } 100% { transform: none; } }

@media (max-width: 980px) {
  .workspace-grid { grid-template-columns: 1fr; }
  .workspace-product { min-height: 560px; }
  .workspace-side { grid-template-columns: 1fr 1fr; }
  .workspace-yueling { min-height: 280px; grid-column: 1 / -1; }
  .workspace-info-grid { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .workspace-shell { padding: 40px 0 66px; }
  .workspace-heading { gap: 18px; margin-bottom: 27px; }
  .workspace-heading h1 { font-size: clamp(36px, 11vw, 48px); overflow-wrap: anywhere; }
  .workspace-product { min-height: 560px; padding: 22px; }
  .workspace-product-head > span:last-child { display: none; }
  .workspace-product-copy { width: 100%; }
  .workspace-product h2 { font-size: 41px; }
  .workspace-product p { max-width: 90%; font-size: 11px; }
  .workspace-canvas-preview { width: calc(100% - 40px); height: 245px; left: 20px; right: auto; top: 82px; transform: none; }
  .workspace-canvas-node { width: 100px; min-height: 67px; padding: 10px; }
  .workspace-canvas-node.node-model { left: 36%; }
  .workspace-grid { display: flex; flex-direction: column; }
  .workspace-side { display: contents; }
  .workspace-yueling { width: 100%; min-height: 285px; order: 1; grid-column: auto; }
  .workspace-products { width: 100%; order: 2; }
  .workspace-results { width: 100%; order: 3; }
  .workspace-side > .workspace-panel { width: 100%; order: 4; }
  .workspace-info-grid { width: 100%; order: 5; grid-column: auto; }
}

@media (max-width: 480px) {
  .workspace-heading p { font-size: 11px; }
  .workspace-product { min-height: 535px; border-radius: 24px; }
  .workspace-canvas-preview { height: 218px; }
  .workspace-canvas-node { transform: scale(.82); }
  .workspace-canvas-node.node-input { left: 1%; }
  .workspace-canvas-node.node-model { left: 33%; }
  .workspace-canvas-node.node-output { right: -2%; }
  .workspace-product-tags span:nth-child(3) { display: none; }
  .workspace-yueling { min-height: 280px; padding: 20px; }
  .workspace-spirit-stage { width: 145px; height: 145px; right: 0; }
  .workspace-spirit-character { width: 138px; height: 138px; }
  .workspace-spirit-aura { width: 100px; height: 100px; }
  .workspace-spirit-greeting { left: 18px; }
  .workspace-yueling .workspace-agent-copy { left: 20px; bottom: 66px; }
  .workspace-agent-action { left: 20px; bottom: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .workspace-canvas-line::after,
  .workspace-canvas-node,
  .workspace-spirit-aura,
  .workspace-spirit-character,
  .workspace-spirit-eyes,
  .workspace-spirit-rings,
  .workspace-spirit-arm-right,
  .workspace-spirit-core,
  .workspace-spirit-shadow,
  .workspace-spirit-star { animation: none !important; }
}

/* Home · intelligence platform identity */
.intelligence-stage { border-color: rgba(151,139,255,.2); background: #111016; }
.intelligence-stage .stage-brand i { background: linear-gradient(145deg,#7668ff,#4bd2b8); }
.intelligence-scene {
  background:
    radial-gradient(circle at 50% 48%, rgba(112,95,255,.2), transparent 22%),
    radial-gradient(circle at 22% 25%, rgba(70,215,187,.08), transparent 20%),
    #111016;
  background-image:
    radial-gradient(circle at 50% 48%, rgba(112,95,255,.2), transparent 22%),
    radial-gradient(circle at 22% 25%, rgba(70,215,187,.08), transparent 20%),
    radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
}
.intelligence-scene::before { position: absolute; width: 520px; height: 520px; left: 50%; top: 50%; border: 1px solid rgba(157,145,255,.12); border-radius: 50%; transform: translate(-50%,-50%); content: ""; }
.intelligence-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(151,139,255,.2); border-radius: 50%; transform: translate(-50%,-50%); }
.intelligence-orbit.orbit-one { width: 380px; height: 380px; }
.intelligence-orbit.orbit-two { width: 500px; height: 500px; border-style: dashed; border-color: rgba(89,215,191,.12); animation: intelligence-orbit 30s infinite linear; }
.intelligence-core { position: absolute; width: 190px; height: 190px; left: 50%; top: 48%; z-index: 5; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: radial-gradient(circle at 35% 25%,rgba(255,255,255,.16),transparent 32%),linear-gradient(145deg,#312a65,#171525 72%); box-shadow: 0 0 0 14px rgba(115,99,255,.045),0 28px 80px rgba(0,0,0,.38),0 0 80px rgba(104,88,255,.2); color: #fff; transform: translate(-50%,-50%); animation: intelligence-core-float 4.2s infinite ease-in-out; }
.intelligence-core-face { position: relative; width: 58px; height: 46px; display: grid; grid-template-columns: 1fr 1fr; place-items: center; gap: 15px; margin-bottom: 10px; border-radius: 45% 45% 50% 50%; background: linear-gradient(145deg,#f8f7ff,#b7afff); box-shadow: 0 0 28px rgba(170,158,255,.42); }
.intelligence-core-face i { width: 5px; height: 9px; border-radius: 6px; background: #373054; animation: intelligence-blink 5s infinite; }
.intelligence-core-face b { position: absolute; width: 13px; height: 6px; left: 23px; bottom: 8px; border-bottom: 2px solid #53496d; border-radius: 50%; }
.intelligence-core small,.intelligence-core strong,.intelligence-core em { display: block; text-align: center; }
.intelligence-core small { color: #7fe2cf; font-size: 7px; font-weight: 800; letter-spacing: .15em; }
.intelligence-core strong { margin-top: 4px; font-size: 13px; }
.intelligence-core em { margin-top: 3px; color: rgba(255,255,255,.38); font-size: 8px; font-style: normal; }
.intelligence-app { position: absolute; z-index: 4; width: 220px; min-height: 104px; display: grid; grid-template-columns: 29px 1fr; grid-template-rows: auto auto auto; column-gap: 11px; align-content: center; padding: 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(31,29,40,.9); box-shadow: 0 20px 50px rgba(0,0,0,.28); color: #fff; backdrop-filter: blur(14px); }
.intelligence-app > span { width: 29px; height: 29px; grid-row: 1 / 4; display: grid; place-items: center; border-radius: 9px; background: rgba(120,104,255,.15); color: #9b90ff; font-size: 8px; font-weight: 800; }
.intelligence-app small { color: #8c82e8; font-size: 7px; font-weight: 800; letter-spacing: .13em; }
.intelligence-app strong { margin-top: 4px; font-size: 11px; }
.intelligence-app em { margin-top: 3px; color: rgba(255,255,255,.35); font-size: 8px; font-style: normal; }
.intelligence-app.app-understand { left: 8%; top: 16%; animation: intelligence-card-float 4.3s infinite ease-in-out; }
.intelligence-app.app-canvas { right: 7%; top: 18%; animation: intelligence-card-float 4.3s -.9s infinite ease-in-out; }
.intelligence-app.app-results { left: 9%; bottom: 14%; animation: intelligence-card-float 4.3s -1.8s infinite ease-in-out; }
.intelligence-app.app-future { right: 8%; bottom: 13%; animation: intelligence-card-float 4.3s -2.7s infinite ease-in-out; }
.intelligence-link { position: absolute; left: 50%; top: 48%; z-index: 2; width: 270px; height: 1px; background: linear-gradient(90deg,rgba(126,112,255,.8),rgba(92,218,195,.18)); transform-origin: left; }
.intelligence-link::after { position: absolute; width: 5px; height: 5px; left: 32%; top: -2px; border-radius: 50%; background: #9a8fff; box-shadow: 0 0 11px #8e80ff; content: ""; animation: intelligence-signal 2.3s infinite ease-in-out; }
.intelligence-link.link-a { transform: rotate(-145deg); }
.intelligence-link.link-b { transform: rotate(-34deg); }
.intelligence-link.link-c { transform: rotate(146deg); }
.intelligence-link.link-d { transform: rotate(34deg); }
.intelligence-status { position: absolute; left: 50%; bottom: 18px; z-index: 7; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(27,25,35,.88); color: rgba(255,255,255,.45); font-size: 8px; transform: translateX(-50%); }
.intelligence-status i { width: 6px; height: 6px; border-radius: 50%; background: #67d9bf; box-shadow: 0 0 0 4px rgba(103,217,191,.08),0 0 12px rgba(103,217,191,.55); }

.platform-spotlight .spotlight-panel { display: grid; align-content: center; justify-items: start; padding: 58px; background: linear-gradient(145deg,#fafaff,#e8e5ff); color: #1b1825; }
.platform-spotlight .spotlight-panel::before { position: absolute; width: 280px; height: 280px; right: -70px; top: -90px; border: 0; border-radius: 50%; background: rgba(111,95,255,.18); filter: blur(15px); }
.platform-spotlight .spotlight-panel::after { inset: 0; z-index: 0; background-color: transparent; background-image: radial-gradient(circle,rgba(57,48,91,.12) 1px,transparent 1px); background-size: 20px 20px; opacity: .32; }
.platform-spotlight .spotlight-panel > * { position: relative; z-index: 2; }
.platform-spotlight .spotlight-panel > i { width: 54px; height: 54px; margin-bottom: 24px; border-radius: 18px; background: linear-gradient(145deg,#7668ff,#54d7bd); box-shadow: 0 18px 35px rgba(102,92,255,.25); }
.platform-spotlight .spotlight-panel > span { color: #6e62db; font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.platform-spotlight .spotlight-panel > strong { margin-top: 9px; font-size: clamp(30px,4vw,47px); letter-spacing: -.055em; }
.platform-spotlight .spotlight-panel > small { margin-top: 8px; color: #777284; font-size: 11px; }
.platform-spotlight .spotlight-chip.three { left: 45%; bottom: 57px; color: #fff; background: #1c1924; }

@keyframes intelligence-orbit { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes intelligence-core-float { 0%,100% { transform: translate(-50%,-50%) translateY(3px); } 50% { transform: translate(-50%,-50%) translateY(-8px); } }
@keyframes intelligence-card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes intelligence-blink { 0%,45%,48%,100% { transform: scaleY(1); } 46%,47% { transform: scaleY(.08); } }
@keyframes intelligence-signal { 0% { left: 4%; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { left: 88%; opacity: 0; } }

@media (max-width: 760px) {
  .intelligence-stage .stage-brand { white-space: nowrap; }
  .intelligence-stage .stage-user > span { display: none; }
  .intelligence-scene::before { width: 360px; height: 360px; }
  .intelligence-orbit.orbit-one { width: 255px; height: 255px; }
  .intelligence-orbit.orbit-two { width: 345px; height: 345px; }
  .intelligence-core { width: 135px; height: 135px; }
  .intelligence-core-face { width: 47px; height: 37px; margin-bottom: 7px; }
  .intelligence-core-face b { left: 18px; bottom: 6px; }
  .intelligence-core em { display: none; }
  .intelligence-app { width: 150px; min-height: 74px; grid-template-columns: 23px 1fr; column-gap: 7px; padding: 10px; border-radius: 12px; }
  .intelligence-app > span { width: 23px; height: 23px; }
  .intelligence-app strong { font-size: 8px; }
  .intelligence-app em { display: none; }
  .intelligence-app.app-understand { left: 3%; top: 12%; }
  .intelligence-app.app-canvas { right: 2%; top: 14%; }
  .intelligence-app.app-results { left: 3%; bottom: 13%; }
  .intelligence-app.app-future { right: 2%; bottom: 11%; }
  .intelligence-link { width: 180px; }
  .intelligence-status { max-width: 90%; white-space: nowrap; }
  .platform-spotlight .spotlight-panel { padding: 35px; }
  .platform-spotlight .spotlight-chip.three { left: 24%; bottom: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .intelligence-orbit,
  .intelligence-core,
  .intelligence-core-face i,
  .intelligence-app,
  .intelligence-link::after { animation: none !important; }
}

/* Creative intelligence wordmark */
.hero .intelligence-headline { overflow: visible; }
.hero .intelligence-word {
  position: relative;
  width: 2.08em;
  height: 1.08em;
  display: inline-flex;
  align-items: flex-end;
  gap: .02em;
  isolation: isolate;
  vertical-align: -.04em;
  color: var(--ink);
}
.hero .intelligence-glyph {
  position: relative;
  width: 1em;
  height: 1.06em;
  display: grid;
  align-items: end;
  overflow: visible;
}
.hero .intelligence-glyph b {
  position: relative;
  z-index: 2;
  display: block;
  background: linear-gradient(112deg,#101014 5%,#101014 34%,#7768ff 49%,#4fd5bc 57%,#101014 72%);
  background-size: 280% 100%;
  background-position: 100% 0;
  color: transparent;
  font: inherit;
  font-weight: 690;
  line-height: .98;
  letter-spacing: -.09em;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 10px 20px rgba(49,43,94,.08));
  animation: intelligence-text-current 5.8s infinite cubic-bezier(.4,0,.2,1);
}
.hero .intelligence-glyph.glyph-reasoning b { animation-delay: -.55s; }
.hero .intelligence-glyph small {
  position: absolute;
  top: -.18em;
  left: .17em;
  z-index: 4;
  color: #8176df;
  font-size: clamp(6px,.095em,9px);
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1;
  opacity: .72;
}
.hero .intelligence-word-network {
  position: absolute;
  width: 112%;
  height: 112%;
  left: -5%;
  top: -4%;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}
.hero .intelligence-word-network path {
  fill: none;
  stroke: rgba(113,97,255,.46);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 3 8;
  vector-effect: non-scaling-stroke;
  animation: intelligence-network-flow 9s infinite linear;
}
.hero .intelligence-word-network path:nth-child(2) { stroke: rgba(64,193,171,.35); animation-direction: reverse; animation-duration: 11s; }
.hero .intelligence-word-network circle { fill: #7466ff; filter: drop-shadow(0 0 5px rgba(101,88,255,.85)); animation: intelligence-node-pulse 2.2s infinite ease-in-out; }
.hero .intelligence-word-network circle:nth-of-type(2) { fill: #54d2ba; animation-delay: -.8s; }
.hero .intelligence-word-network circle:nth-of-type(3) { animation-delay: -1.5s; }
.hero .glyph-node { position: absolute; z-index: 5; width: .07em; height: .07em; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: #6d60ff; box-shadow: 0 0 0 .055em rgba(109,96,255,.1),0 0 .14em rgba(109,96,255,.7); animation: intelligence-node-pulse 2s infinite ease-in-out; }
.hero .glyph-node.node-a { left: .18em; top: .31em; }
.hero .glyph-node.node-b { right: .14em; bottom: .2em; background: #50cdb7; animation-delay: -.7s; }
.hero .glyph-node.node-c { left: .12em; bottom: .16em; animation-delay: -1.1s; }
.hero .glyph-node.node-d { right: .13em; top: .26em; background: #50cdb7; animation-delay: -1.6s; }
.hero .intelligence-scan { position: absolute; width: .17em; height: 100%; left: -.18em; top: 0; z-index: 6; background: linear-gradient(90deg,transparent,rgba(112,96,255,.22),transparent); filter: blur(2px); transform: skewX(-12deg); animation: intelligence-scan 4.8s infinite ease-in-out; pointer-events: none; }
.hero .headline-comma { color: var(--ink); }
.hero .future-statement { color: var(--accent); }

@keyframes intelligence-text-current { 0%,18% { background-position: 100% 0; } 54%,100% { background-position: 0 0; } }
@keyframes intelligence-network-flow { to { stroke-dashoffset: -80; } }
@keyframes intelligence-node-pulse { 0%,100% { opacity: .45; transform: scale(.78); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes intelligence-scan { 0%,15% { left: -.18em; opacity: 0; } 30% { opacity: 1; } 72% { opacity: .75; } 88%,100% { left: 2.05em; opacity: 0; } }

@media (max-width: 760px) {
  .hero .intelligence-word { width: 2.1em; }
  .hero .intelligence-glyph small { top: -.36em; font-size: 5px; }
  .hero .intelligence-word-network { width: 118%; left: -8%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero .intelligence-glyph b,
  .hero .intelligence-word-network path,
  .hero .intelligence-word-network circle,
  .hero .glyph-node,
  .hero .intelligence-scan { animation: none !important; }
}
/* Workspace unified credits */
.workspace-wallet{min-height:118px;position:relative;overflow:hidden;display:flex;align-items:flex-end;justify-content:space-between;gap:18px;padding:22px;border-radius:22px;background:linear-gradient(135deg,#17161d,#292441);color:#fff;box-shadow:0 20px 48px rgba(18,18,20,.12);transition:transform .22s ease,box-shadow .22s ease}.workspace-wallet:hover{transform:translateY(-2px);box-shadow:0 26px 58px rgba(18,18,20,.17)}.workspace-wallet-copy{position:relative;z-index:2;min-width:0}.workspace-wallet-copy small,.workspace-wallet-copy strong,.workspace-wallet-copy>span{display:block}.workspace-wallet-copy small{color:#9f96ff;font-size:8px;font-weight:800;letter-spacing:.14em}.workspace-wallet-copy strong{margin-top:5px;font-size:26px;letter-spacing:-.04em}.workspace-wallet-copy strong b{font:inherit}.workspace-wallet-copy>span{margin-top:3px;color:#a4a2ad;font-size:9px}.workspace-wallet-action{position:relative;z-index:2;flex:0 0 auto;padding:8px 10px;border:1px solid rgba(255,255,255,.12);border-radius:999px;color:#d6d3e7;font-size:9px;font-weight:700}.workspace-wallet-orbit{position:absolute;width:150px;height:150px;right:-34px;top:-62px;border:1px solid rgba(255,255,255,.1);border-radius:50%}.workspace-wallet-orbit:before{position:absolute;inset:28px;border:1px solid rgba(112,228,207,.18);border-radius:50%;content:""}.workspace-wallet-orbit i{position:absolute;inset:40px;border-radius:50%;background:#6f63ff;filter:blur(22px);opacity:.5}.workspace-wallet-orbit b{position:absolute;width:13px;height:13px;left:68px;top:68px;border-radius:50%;background:#fff;box-shadow:0 0 22px #8e83ff}@media(max-width:620px){.workspace-wallet{align-items:flex-start;flex-direction:column}.workspace-wallet-action{align-self:flex-end}}
@media(max-width:760px){.workspace-wallet{width:100%;order:3}.workspace-results{order:4}.workspace-side>.workspace-panel{order:5}.workspace-info-grid{order:6}}
