/*
  杭芯智链算力调度平台 public site styles
  Created: 2026-06-27
  Updated: 2026-07-01
  UI refresh: 2026-07-01
  Purpose: QuickRouter-inspired China-facing AI API gateway landing page.
*/

:root {
  --bg: #0b0615;
  --bg-deep: #06030d;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(245, 194, 66, 0.38);
  --text: #ffffff;
  --muted: #c7b9d8;
  --quiet: #8f80a5;
  --gold: #f5c242;
  --gold-2: #ffd86f;
  --violet: #8f5bff;
  --cyan: #4dd9d1;
  --green: #42e6a4;
  --red: #ff7766;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 16%, rgba(143, 91, 255, 0.34), transparent 30rem),
    radial-gradient(circle at 20% 24%, rgba(245, 194, 66, 0.14), transparent 26rem),
    radial-gradient(circle at 68% 72%, rgba(77, 217, 209, 0.16), transparent 28rem),
    linear-gradient(180deg, #120721 0%, var(--bg) 44%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 12px 44px;
  border-bottom: 1px solid rgba(245, 194, 66, 0.13);
  background: rgba(12, 5, 22, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  overflow: visible;
}

.brand-mark img {
  width: 46px;
  height: 28px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta,
.button.primary {
  border-color: rgba(245, 194, 66, 0.55);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #171106;
  box-shadow: 0 14px 34px rgba(245, 194, 66, 0.18);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

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

.button.secondary:hover {
  border-color: rgba(245, 194, 66, 0.38);
  color: var(--gold);
}

.button.full {
  width: 100%;
}

.notice-bar {
  position: sticky;
  top: 64px;
  z-index: 25;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-bottom: 1px solid rgba(245, 194, 66, 0.2);
  background: var(--gold);
  color: #171106;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 42px;
  max-width: 1320px;
  min-height: 720px;
  margin: 0 auto;
  padding: 74px 40px 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 6% 8% auto auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 194, 66, 0.22), rgba(143, 91, 255, 0.12) 45%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 194, 66, 0.28);
  border-radius: 8px;
  background: rgba(245, 194, 66, 0.08);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.title-gold {
  color: var(--gold);
  text-shadow: 0 0 34px rgba(245, 194, 66, 0.28);
}

h2 {
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.34;
}

p {
  color: var(--muted);
  line-height: 1.82;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 0;
  color: #e2d8ef;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
  margin: 0;
}

.hero-metrics div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 700;
}

.hero-metrics dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  z-index: 2;
  min-height: 560px;
  padding: 18px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.hero-panel.is-visible,
.section.is-visible,
.proof-strip article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.panel-topline {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: 430px;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
}

.panel-topline strong {
  color: var(--green);
}

.orbit-scene {
  position: relative;
  width: min(100%, 520px);
  height: 420px;
  margin: 0 auto;
}

.orbit-scene::before,
.orbit-scene::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-scene::before {
  inset: 42px;
  background: radial-gradient(circle, rgba(245, 194, 66, 0.24), rgba(143, 91, 255, 0.18) 34%, transparent 66%);
  filter: blur(2px);
}

.orbit-scene::after {
  inset: 108px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 64%);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(245, 194, 66, 0.22);
  border-radius: 50%;
}

.ring-one {
  inset: 36px 34px;
  transform: rotate(-14deg);
}

.ring-two {
  inset: 86px 94px;
  border-color: rgba(77, 217, 209, 0.2);
  transform: rotate(18deg);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 78px;
  place-items: center;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
}

.orbit-core img {
  width: 112px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(245, 194, 66, 0.34));
}

.orbit-track {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: 50% 50%;
  will-change: transform;
}

.orbit-track-outer {
  inset: 36px 34px;
  animation: orbit-track-outer 38s linear infinite;
}

.orbit-track-inner {
  inset: 86px 94px;
  animation: orbit-track-inner 28s linear infinite reverse;
}

.orbit-logo {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 3;
  transform: translate(-50%, -50%);
}

.orbit-logo-card {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
  will-change: transform;
}

.orbit-track-outer .orbit-logo-card {
  animation: orbit-card-counter-outer 38s linear infinite;
}

.orbit-track-inner .orbit-logo-card {
  font-size: 12px;
  gap: 0;
  animation: orbit-card-counter-inner 28s linear infinite reverse;
}

.orbit-track-inner .orbit-logo-card b {
  display: none;
}

.orbit-track-inner .orbit-logo-card img {
  width: 30px;
  height: 30px;
}

.orbit-logo-card img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.72));
}

.logo-glm {
  --x: 74%;
  --y: 1%;
}

.logo-glm .orbit-logo-card {
  color: var(--gold-2);
}

.logo-qwen {
  --x: 100%;
  --y: 52%;
}

.logo-qwen .orbit-logo-card {
  color: var(--cyan);
}

.logo-deepseek {
  --x: 74%;
  --y: 99%;
}

.logo-deepseek .orbit-logo-card {
  color: #c9b7ff;
}

.logo-kimi {
  --x: 25%;
  --y: 99%;
}

.logo-kimi .orbit-logo-card {
  color: var(--green);
}

.logo-doubao {
  --x: 0%;
  --y: 50%;
}

.logo-doubao .orbit-logo-card {
  color: #ffb0a6;
}

.logo-bailian {
  --x: 25%;
  --y: 1%;
}

.logo-bailian .orbit-logo-card {
}

.logo-claude {
  --x: 50%;
  --y: 0%;
}

.logo-claude .orbit-logo-card {
  color: #f3a15f;
}

.logo-gpt {
  --x: 100%;
  --y: 50%;
}

.logo-gpt .orbit-logo-card {
  color: #ffffff;
}

.logo-grok {
  --x: 50%;
  --y: 100%;
}

.logo-grok .orbit-logo-card {
  color: #ffffff;
}

@keyframes orbit-track-outer {
  from {
    transform: rotate(-14deg);
  }

  to {
    transform: rotate(346deg);
  }
}

@keyframes orbit-card-counter-outer {
  from {
    transform: rotate(14deg);
  }

  to {
    transform: rotate(-346deg);
  }
}

@keyframes orbit-track-inner {
  from {
    transform: rotate(18deg);
  }

  to {
    transform: rotate(378deg);
  }
}

@keyframes orbit-card-counter-inner {
  from {
    transform: rotate(-18deg);
  }

  to {
    transform: rotate(-378deg);
  }
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 430px;
  margin: -18px auto 0;
}

.panel-grid div {
  min-height: 82px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.panel-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--quiet);
  font-size: 12px;
}

.panel-grid strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.proof-strip,
.section,
.site-footer {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 40px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 78px;
}

.proof-strip article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease, border-color 160ms ease, background 160ms ease;
}

.proof-strip article:hover {
  border-color: var(--line-gold);
  background: var(--panel-strong);
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 19px;
}

.proof-strip p {
  margin-bottom: 0;
}

.section {
  padding-top: 86px;
  padding-bottom: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.section-heading.compact {
  max-width: 880px;
}

.model-cards,
.scheduler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.model-cards article,
.scheduler-grid article {
  position: relative;
  min-height: 232px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.model-cards article::before,
.scheduler-grid article::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 194, 66, 0.16), transparent 68%);
}

.model-cards article:hover,
.scheduler-grid article:hover {
  border-color: var(--line-gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  transform: translateY(-2px);
}

.card-index {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.model-cards h3,
.scheduler-grid h3 {
  color: var(--text);
}

.scheduler-section {
  max-width: none;
  background:
    radial-gradient(circle at 16% 10%, rgba(245, 194, 66, 0.12), transparent 24rem),
    radial-gradient(circle at 90% 24%, rgba(77, 217, 209, 0.14), transparent 24rem),
    rgba(255, 255, 255, 0.035);
}

.scheduler-section > * {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

.accounts-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1fr);
  gap: 52px;
  align-items: start;
}

.account-flow {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.account-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  min-height: 96px;
  padding: 22px 22px 22px 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  counter-increment: flow;
}

.account-flow li::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.account-flow strong {
  color: var(--text);
}

.account-flow span {
  color: var(--muted);
  line-height: 1.72;
}

.api-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1fr);
  gap: 42px;
  align-items: start;
}

.code-panel {
  overflow: hidden;
  border: 1px solid rgba(245, 194, 66, 0.22);
  border-radius: 8px;
  background: #08050e;
  color: #f6f0dc;
  box-shadow: var(--shadow);
}

.code-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(245, 194, 66, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 13px;
}

.code-panel button {
  min-width: 58px;
  min-height: 32px;
  border: 1px solid rgba(245, 194, 66, 0.32);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-weight: 800;
}

.code-panel button:hover {
  background: rgba(245, 194, 66, 0.08);
}

pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
}

code {
  font-family: "Consolas", "Cascadia Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.72;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: 52px;
  align-items: start;
  padding-bottom: 108px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(245, 194, 66, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0 14px;
}

select option {
  color: #171106;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

input:focus,
select:focus {
  outline: 3px solid rgba(245, 194, 66, 0.16);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--quiet);
  font-size: 14px;
}

.or-page {
  min-height: 100vh;
}

.or-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 12px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(10, 6, 18, 0.9);
  backdrop-filter: blur(16px);
}

.or-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.or-nav a {
  padding: 8px 0;
}

.or-nav a:hover,
.or-nav a.is-active {
  color: var(--gold);
}

.or-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.or-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 40px 96px;
}

.or-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: start;
  padding: 44px 0 36px;
}

.or-hero.single {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.or-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.or-title {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.or-subtitle {
  max-width: 760px;
  color: #d8cdea;
  font-size: 18px;
}

.or-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.or-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.or-stack {
  display: grid;
  gap: 14px;
}

.or-section {
  margin-top: 28px;
}

.or-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}

.or-section-head h2 {
  margin: 0;
  font-size: 32px;
}

.or-section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--quiet);
}

.or-visual,
.or-panel,
.or-card,
.or-row,
.or-table,
.or-doc-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.or-visual {
  min-height: 360px;
  padding: 22px;
  background:
    radial-gradient(circle at 72% 18%, rgba(245, 194, 66, 0.18), transparent 18rem),
    radial-gradient(circle at 28% 72%, rgba(77, 217, 209, 0.15), transparent 18rem),
    rgba(255, 255, 255, 0.055);
}

.or-panel:not(.or-chat-shell):not(.or-doc-nav) {
  padding: 24px;
}

.or-command {
  display: grid;
  gap: 12px;
  font-family: "Consolas", "Cascadia Mono", monospace;
  font-size: 13px;
}

.or-command span {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.78);
  color: #f6f0dc;
}

.or-command strong {
  color: var(--green);
}

.or-terminal {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(4, 3, 9, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  font-family: "Consolas", "Cascadia Mono", monospace;
  font-size: 13px;
}

.or-terminal span {
  color: #d8cdea;
}

.or-terminal b {
  color: var(--gold);
}

.or-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 26px 0 20px;
}

.or-search {
  flex: 1 1 360px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0 14px;
}

.or-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.or-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.or-chip.is-active {
  border-color: rgba(245, 194, 66, 0.42);
  color: var(--gold);
  background: rgba(245, 194, 66, 0.08);
}

.or-chip button {
  all: unset;
}

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

.or-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.or-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.or-card {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
}

.or-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 194, 66, 0.12), transparent 68%);
}

.or-card h3,
.or-row h3,
.or-panel h3,
.or-doc-card h3 {
  color: var(--text);
}

.or-card h3 {
  margin-top: 8px;
}

.or-card p {
  color: #d8cdea;
}

.or-card.compact {
  min-height: 132px;
}

.or-card.wide {
  min-height: 220px;
}

.or-card.is-muted {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.or-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.or-stat {
  display: grid;
  gap: 5px;
  color: var(--quiet);
  font-size: 12px;
}

.or-stat strong {
  color: var(--text);
  font-size: 18px;
}

.or-list {
  display: grid;
  gap: 12px;
}

.or-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
}

.or-row p {
  margin: 6px 0 0;
  color: var(--quiet);
}

.or-row-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 10px;
  min-width: 320px;
}

.or-row-metrics span,
.or-mini-metric span {
  display: block;
  color: var(--quiet);
  font-size: 12px;
}

.or-row-metrics strong,
.or-mini-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 18px;
}

.or-mini-metric {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
}

.or-feature-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.or-feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: #d8cdea;
  font-size: 14px;
}

.or-feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(245, 194, 66, 0.65);
}

.or-table {
  overflow: hidden;
}

.or-table-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(120px, 1fr));
  gap: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.or-table-row:last-child {
  border-bottom: 0;
}

.or-table-row > * {
  padding: 16px;
}

.or-table-head {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 900;
}

.or-table strong {
  color: var(--text);
}

.model-catalog-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.model-catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.model-catalog-vendors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.model-catalog-vendors .or-chip span {
  margin-left: 6px;
  color: var(--quiet);
  font-size: 12px;
}

.model-catalog-table-wrap {
  overflow-x: auto;
}

.model-catalog-table {
  min-width: 900px;
}

.model-catalog-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) 130px minmax(220px, 0.8fr) 140px 140px;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.model-catalog-row:last-child {
  border-bottom: 0;
}

.model-catalog-row > * {
  padding: 13px 18px;
}

.model-catalog-row strong {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-catalog-row span {
  color: #d8cdea;
  font-size: 14px;
}

.model-catalog-head {
  min-height: 44px;
  background: rgba(0, 0, 0, 0.14);
}

.model-catalog-head span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.model-tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(245, 194, 66, 0.2);
  border-radius: 999px;
  padding: 0 9px;
  color: var(--gold);
  background: rgba(245, 194, 66, 0.07);
  font-size: 12px;
  font-weight: 800;
}

.or-leaderboard {
  display: grid;
  gap: 10px;
}

.or-rank-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 110px 110px 110px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
}

.or-rank-row em {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(245, 194, 66, 0.12);
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.or-rank-row strong {
  display: block;
  color: var(--text);
}

.or-rank-row small {
  color: var(--quiet);
}

.or-score {
  display: grid;
  gap: 5px;
  color: var(--quiet);
  font-size: 12px;
}

.or-score b {
  color: var(--text);
  font-size: 16px;
}

.or-score-bar {
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.or-score-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.pricing-page {
  --text: #111827;
  --muted: #475569;
  --quiet: #64748b;
  --gold: #1487d4;
  --gold-2: #38bdf8;
  background: #f3f7fb;
  color: var(--text);
}

.pricing-page::before {
  display: none;
}

.pricing-page .pricing-header {
  border: 1px solid #d8e5f2;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.pricing-page .brand,
.pricing-page .or-nav {
  color: #334155;
}

.pricing-page .or-nav a.is-active,
.pricing-page .or-nav a:hover {
  color: #0284c7;
}

.pricing-page .button.primary {
  border-color: rgba(2, 132, 199, 0.2);
  background: linear-gradient(180deg, #5ec8ff, #1689e8);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.22);
}

.pricing-market {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 16px 58px;
}

.pricing-filters {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  color: #263241;
  scrollbar-width: thin;
}

.pricing-reset,
.pricing-filter-option {
  width: 100%;
  min-height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #263241;
  cursor: pointer;
  text-align: left;
}

.pricing-reset {
  margin-bottom: 14px;
  border: 1px solid #bfe2fb;
  background: #eef9ff;
  color: #0284c7;
  text-align: center;
  font-weight: 900;
}

.pricing-filter-group {
  margin-bottom: 22px;
}

.pricing-filter-group h2 {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.2;
}

.pricing-filter-list {
  display: grid;
  gap: 2px;
}

.pricing-filter-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 5px 6px;
  font-size: 13px;
}

.pricing-filter-option span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-filter-option b {
  color: #64748b;
  font-size: 12px;
}

.pricing-filter-option.is-active {
  background: #e4f4ff;
  color: #0284c7;
  font-weight: 900;
}

.pricing-filter-option.is-active b {
  color: #0284c7;
}

.pricing-results {
  min-width: 0;
}

.pricing-topbar {
  position: sticky;
  top: 72px;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 0 0 12px;
  background: rgba(243, 247, 251, 0.92);
  backdrop-filter: blur(12px);
}

.pricing-page .or-search {
  min-height: 36px;
  border: 1px solid #dde8f4;
  background: #eef2f7;
  color: #172033;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.pricing-page .or-search::placeholder {
  color: #7c899a;
}

.pricing-view-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  white-space: nowrap;
}

.pricing-toggle,
.pricing-unit {
  min-height: 34px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  padding: 0 12px;
  font-weight: 800;
}

.pricing-toggle {
  cursor: pointer;
}

.pricing-toggle.is-active {
  border-color: #9bd8fb;
  background: #e8f7ff;
  color: #0284c7;
}

.pricing-result-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 10px 0 14px;
}

.pricing-result-head h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.models-market-copy {
  max-width: 720px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.models-market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.models-market-strip article {
  display: grid;
  gap: 5px;
  min-height: 70px;
  align-content: center;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.models-market-strip span {
  color: #64748b;
  font-size: 12px;
}

.models-market-strip strong {
  color: #0f172a;
  font-size: 16px;
  line-height: 1.2;
}

.pricing-page .or-kicker {
  margin-bottom: 8px;
  color: #0284c7;
}

.pricing-source {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
}

.pricing-source span {
  min-height: 28px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  padding: 5px 9px;
  background: #ffffff;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
  gap: 14px;
}

.pricing-model-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.pricing-card-media {
  position: relative;
  display: grid;
  min-height: 98px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent),
    linear-gradient(135deg, #d8f3dc, #f8fafc);
}

.pricing-card-media.is-图像 {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent),
    linear-gradient(135deg, #fde68a, #bfdbfe);
}

.pricing-card-media.is-音视频 {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent),
    linear-gradient(135deg, #c4b5fd, #fecdd3);
}

.pricing-card-media.is-检索 {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent),
    linear-gradient(135deg, #bae6fd, #ccfbf1);
}

.pricing-card-type {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(51, 65, 85, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #475569;
  padding: 2px 8px;
  font-size: 12px;
}

.pricing-card-logo,
.pricing-card-logo-text {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  object-fit: contain;
  padding: 7px;
  color: #0284c7;
  font-weight: 900;
}

.pricing-card-body {
  display: grid;
  gap: 8px;
  padding: 12px 14px 14px;
}

.pricing-card-body h3 {
  margin: 0;
  overflow: hidden;
  color: #101828;
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-card-body small {
  color: #64748b;
  font-size: 12px;
}

.pricing-card-body p {
  display: -webkit-box;
  min-height: 58px;
  margin: 0;
  overflow: hidden;
  color: #475569;
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pricing-card-prices {
  display: grid;
  gap: 3px;
  color: #263241;
  font-size: 12px;
}

.pricing-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 24px;
  align-items: center;
}

.pricing-card-tags span,
.pricing-card-tags em {
  border: 1px solid #d7e3ee;
  border-radius: 999px;
  background: #f7fafc;
  color: #64748b;
  padding: 2px 7px;
  font-size: 11px;
  font-style: normal;
}

.pricing-card-tags em {
  border-color: #bcf0da;
  background: #ecfdf5;
  color: #059669;
}

.pricing-card-actions {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  margin-top: 2px;
}

.pricing-card-actions button,
.pricing-card-actions a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe3f3;
  border-radius: 8px;
  background: #f8fcff;
  color: #0284c7;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-card-actions a {
  background: #eef9ff;
}

.pricing-empty-card {
  padding: 18px;
}

.pricing-empty-card p {
  margin: 8px 0 0;
  color: #64748b;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #ffffff;
}

.pricing-table {
  min-width: 880px;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 150px 160px 160px 140px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid #eef2f7;
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row > * {
  padding: 13px 18px;
}

.pricing-row strong {
  overflow: hidden;
  color: #111827;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-row span {
  color: #475569;
  font-size: 14px;
}

.pricing-head {
  min-height: 42px;
  background: #f8fafc;
}

.pricing-head span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.pricing-footnote {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 0;
  color: #64748b;
  font-size: 13px;
}

.pricing-footer {
  border-color: #dbe7f2;
  color: #64748b;
}

.chat-workspace {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  max-width: 1480px;
  min-height: calc(100vh - 132px);
  margin: 0 auto;
  padding: 18px 16px 42px;
}

.chat-sidebar,
.chat-main {
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

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

.chat-sidebar-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.chat-sidebar-head strong {
  font-size: 20px;
}

.chat-sidebar button,
.chat-prompts button {
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #243244;
  cursor: pointer;
}

.chat-sidebar-head button {
  min-height: 32px;
  padding: 0 12px;
  color: #0284c7;
  font-weight: 900;
}

.chat-search {
  display: grid;
  gap: 7px;
  color: #64748b;
  font-size: 12px;
}

.chat-search input {
  min-height: 38px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f3f7fb;
  color: #172033;
  padding: 0 11px;
}

.chat-sidebar section {
  display: grid;
  gap: 8px;
}

.chat-sidebar h2 {
  margin: 0;
  color: #64748b;
  font-size: 12px;
}

.chat-room,
.chat-model {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 52px;
  padding: 10px 11px;
  text-align: left;
}

.chat-room span,
.chat-model span {
  overflow: hidden;
  color: #0f172a;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-room small,
.chat-model b {
  color: #64748b;
  font-size: 12px;
}

.chat-room.is-active,
.chat-model.is-active {
  border-color: #9bd8fb;
  background: #e8f7ff;
}

.chat-model {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.chat-model b {
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
  padding: 2px 7px;
}

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

.chat-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.chat-toolbar h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.chat-route-chip {
  display: grid;
  gap: 4px;
  min-width: 170px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
  padding: 10px 12px;
}

.chat-route-chip span,
.chat-model-strip span,
.chat-metrics span {
  color: #64748b;
  font-size: 12px;
}

.chat-route-chip strong,
.chat-model-strip strong,
.chat-metrics strong {
  color: #0f172a;
}

.chat-model-strip,
.chat-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.chat-model-strip article,
.chat-metrics article {
  display: grid;
  gap: 5px;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #f8fbff;
  padding: 12px 14px;
}

.chat-thread {
  display: grid;
  gap: 12px;
  min-height: 280px;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background:
    linear-gradient(rgba(148, 163, 184, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.13) 1px, transparent 1px),
    #f8fafc;
  background-size: 38px 38px;
  padding: 18px;
}

.chat-bubble {
  max-width: 760px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 13px 15px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.chat-bubble strong {
  color: #0284c7;
}

.chat-bubble p {
  margin: 7px 0 0;
  color: #334155;
  line-height: 1.7;
}

.chat-bubble.user {
  justify-self: end;
  background: #e8f7ff;
}

.chat-bubble.router {
  border-color: #bcf0da;
  background: #ecfdf5;
}

.chat-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.chat-prompts button {
  min-height: 48px;
  padding: 9px 11px;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
}

.chat-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.chat-composer input {
  min-height: 46px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #172033;
  padding: 0 14px;
}

.fusion-workspace,
.rankings-shell,
.apps-shell,
.enterprise-shell,
.docs-shell {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 16px 46px;
}

.fusion-workspace {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 18px;
  min-height: calc(100vh - 132px);
}

.fusion-sidebar,
.fusion-board,
.rankings-chart,
.rankings-side article,
.leaderboard-card,
.app-spotlight,
.apps-list-card,
.apps-install article,
.enterprise-compare,
.enterprise-grid article,
.enterprise-rollout,
.docs-sidebar,
.docs-article,
.docs-toc {
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

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

.fusion-new,
.fusion-preset,
.fusion-policy-tabs button,
.fusion-add-model,
.rankings-switch button {
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #243244;
  cursor: pointer;
  font-weight: 800;
}

.fusion-new {
  min-height: 38px;
  color: #0284c7;
}

.fusion-sidebar h2 {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 12px;
}

.fusion-empty {
  border: 1px dashed #cbd8e6;
  border-radius: 8px;
  color: #64748b;
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
}

.fusion-preset {
  display: grid;
  width: 100%;
  gap: 4px;
  min-height: 54px;
  margin-bottom: 8px;
  padding: 10px 11px;
  text-align: left;
}

.fusion-preset span {
  color: #0f172a;
}

.fusion-preset small {
  color: #64748b;
}

.fusion-preset.is-active {
  border-color: #9bd8fb;
  background: #e8f7ff;
}

.fusion-board {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px;
}

.fusion-head,
.rankings-card-head,
.apps-hero,
.enterprise-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.fusion-head h1,
.apps-hero h1,
.enterprise-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #0f172a;
  font-size: 42px;
  line-height: 1.08;
}

.fusion-head p,
.apps-hero p,
.enterprise-hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.fusion-policy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fusion-policy-tabs button {
  min-height: 34px;
  padding: 0 14px;
}

.fusion-policy-tabs button.is-active,
.rankings-switch button.is-active {
  border-color: #9bd8fb;
  background: #e8f7ff;
  color: #0284c7;
}

.fusion-prompt-card,
.fusion-result {
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #f8fbff;
  padding: 16px;
}

.fusion-prompt-card span,
.fusion-model-card span,
.fusion-result span {
  color: #64748b;
  font-size: 12px;
}

.fusion-prompt-card strong {
  display: block;
  margin-top: 6px;
  color: #0f172a;
  font-size: 18px;
}

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

.fusion-model-card,
.fusion-add-model {
  min-height: 168px;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.fusion-model-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.fusion-model-card strong {
  display: block;
  margin-top: 5px;
  color: #0f172a;
  font-size: 20px;
}

.fusion-model-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.fusion-model-card b {
  color: #059669;
}

.fusion-add-model {
  display: grid;
  place-items: center;
  color: #0284c7;
}

.fusion-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
}

.fusion-result h2,
.rankings-card-head h2,
.enterprise-rollout h2 {
  margin: 0;
  color: #0f172a;
}

.fusion-result p {
  margin: 8px 0 0;
  color: #475569;
  line-height: 1.7;
}

.fusion-score {
  display: grid;
  min-height: 116px;
  place-items: center;
  border-radius: 8px;
  background: #ecfdf5;
  text-align: center;
}

.fusion-score strong {
  color: #059669;
  font-size: 36px;
}

.rankings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.rankings-tabs a {
  border: 1px solid #dbe7f2;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  padding: 7px 12px;
  font-weight: 800;
}

.rankings-tabs a.is-active {
  border-color: #9bd8fb;
  background: #e8f7ff;
  color: #0284c7;
}

.rankings-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.rankings-hero h1 {
  margin: 0;
  color: #0f172a;
  font-size: 42px;
}

.rankings-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.rankings-live {
  display: grid;
  gap: 4px;
  min-width: 120px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 12px;
}

.rankings-live span {
  color: #059669;
  font-size: 12px;
  font-weight: 900;
}

.rankings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 14px;
  margin-bottom: 14px;
}

.rankings-chart,
.leaderboard-card,
.apps-list-card {
  padding: 18px;
}

.rankings-switch {
  display: flex;
  gap: 8px;
}

.rankings-switch button {
  min-height: 32px;
  padding: 0 11px;
}

.chart-bars {
  display: flex;
  gap: 14px;
  align-items: end;
  height: 250px;
  margin-top: 18px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background:
    linear-gradient(rgba(148, 163, 184, 0.13) 1px, transparent 1px),
    #f8fafc;
  background-size: 100% 50px;
  padding: 18px;
}

.chart-bars i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
  padding: 8px 4px 0;
}

.rankings-side {
  display: grid;
  gap: 14px;
}

.rankings-side article {
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 14px;
}

.rankings-side span,
.leaderboard-list span,
.apps-list span,
.apps-install span {
  color: #64748b;
  font-size: 12px;
}

.rankings-side strong {
  color: #0f172a;
  font-size: 28px;
}

.rankings-side small,
.leaderboard-list small {
  color: #059669;
}

.leaderboard-list,
.apps-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.leaderboard-list article,
.apps-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #f8fbff;
  padding: 12px;
}

.leaderboard-list em,
.apps-list em {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #e8f7ff;
  color: #0284c7;
  font-style: normal;
  font-weight: 900;
}

.leaderboard-list strong,
.apps-list strong {
  display: block;
  color: #0f172a;
}

.leaderboard-list b,
.apps-list b {
  color: #0f172a;
  white-space: nowrap;
}

.apps-hero,
.enterprise-hero {
  margin-bottom: 18px;
}

.apps-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-bottom: 14px;
}

.app-spotlight {
  padding: 20px;
}

.app-spotlight span,
.enterprise-grid span {
  color: #0284c7;
  font-size: 12px;
  font-weight: 900;
}

.app-spotlight h2 {
  margin: 8px 0;
  color: #0f172a;
  font-size: 28px;
}

.app-spotlight p,
.enterprise-grid p {
  color: #475569;
  line-height: 1.7;
}

.app-spotlight strong {
  color: #0f172a;
  font-size: 24px;
}

.apps-install {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.apps-install article {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.apps-install strong {
  color: #0f172a;
  word-break: break-word;
}

.enterprise-hero {
  display: grid;
  place-items: center;
  min-height: 360px;
  text-align: center;
}

.enterprise-hero h1 {
  max-width: 880px;
  font-size: 58px;
}

.enterprise-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.enterprise-compare {
  padding: 20px;
  margin-bottom: 14px;
}

.enterprise-compare h2 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 28px;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid #edf2f7;
  padding: 13px 0;
}

.compare-row span {
  color: #64748b;
}

.compare-row strong {
  color: #0f172a;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.enterprise-grid article {
  padding: 18px;
}

.enterprise-grid h3 {
  margin: 8px 0;
  color: #0f172a;
}

.enterprise-rollout {
  padding: 20px;
}

.enterprise-rollout ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.enterprise-rollout li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #f8fbff;
  padding: 14px;
}

.enterprise-rollout b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #e8f7ff;
  color: #0284c7;
}

.enterprise-rollout strong {
  color: #0f172a;
}

.enterprise-rollout p {
  margin: 6px 0 0;
  color: #64748b;
  line-height: 1.6;
}

.docs-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 220px;
  gap: 18px;
}

.docs-shell > * {
  min-width: 0;
}

.docs-sidebar,
.docs-toc {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 14px;
}

.docs-search {
  display: flex;
  justify-content: space-between;
  min-height: 38px;
  align-items: center;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #64748b;
  padding: 0 10px;
}

.docs-ask {
  width: 100%;
  min-height: 36px;
  margin: 10px 0 16px;
  border: 1px solid #9bd8fb;
  border-radius: 8px;
  background: #e8f7ff;
  color: #0284c7;
  cursor: pointer;
  font-weight: 900;
}

.docs-sidebar nav,
.docs-toc {
  display: grid;
  gap: 8px;
}

.docs-sidebar strong,
.docs-toc strong {
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
}

.docs-sidebar a,
.docs-toc a {
  color: #334155;
  font-size: 14px;
}

.docs-sidebar a.is-active,
.docs-sidebar a:hover,
.docs-toc a:hover {
  color: #0284c7;
}

.docs-article {
  padding: 34px;
}

.docs-breadcrumb {
  color: #64748b;
  font-size: 13px;
}

.docs-article h1 {
  margin: 12px 0;
  color: #0f172a;
  font-size: 46px;
}

.docs-lede {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.docs-article section {
  margin-top: 34px;
}

.docs-article h2 {
  color: #0f172a;
}

.docs-article p {
  color: #475569;
  line-height: 1.7;
}

.docs-callout {
  border-left: 3px solid #0284c7;
  border-radius: 8px;
  background: #e8f7ff;
  color: #0f172a;
  padding: 14px 16px;
}

.docs-article pre {
  overflow-x: auto;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px;
}

.home-page .pricing-header {
  grid-template-columns: auto minmax(160px, 250px) 1fr auto;
}

.home-page {
  overflow-x: clip;
}

.home-search {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #64748b;
  padding: 0 10px;
  cursor: pointer;
  font-weight: 800;
}

.home-search kbd {
  border: 1px solid #dbe7f2;
  border-radius: 6px;
  background: #ffffff;
  color: #0284c7;
  padding: 2px 5px;
  font: inherit;
  font-size: 11px;
}

.home-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 16px 58px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
  text-align: left;
}

.home-hero-copy {
  display: grid;
  justify-items: start;
}

.home-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #0f172a;
  font-size: 72px;
  line-height: 1.02;
}

.home-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #64748b;
  font-size: 20px;
  line-height: 1.7;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 28px;
}

.home-orbit-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.home-orbit-panel::before {
  content: none;
}

.home-orbit-topline,
.home-orbit-foot {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  padding: 0 10px;
}

.home-orbit-topline strong {
  color: #0284c7;
}

.home-orbit-scene {
  margin-top: 10px;
}

.home-orbit-panel .orbit-scene {
  width: min(100%, 560px);
  height: 390px;
}

.home-orbit-panel .orbit-ring {
  display: none;
}

.home-orbit-panel .orbit-track {
  inset: 0;
  overflow: visible;
  border-radius: 0;
  animation: none;
  transform-origin: 50% 50%;
}

.home-orbit-panel .orbit-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home-orbit-panel .orbit-track-outer {
  color: rgba(245, 158, 11, 0.42);
  transform: rotate(-14deg);
}

.home-orbit-panel .orbit-track-outer::before {
  width: 82%;
  height: 62%;
}

.home-orbit-panel .orbit-track-inner {
  color: rgba(14, 165, 233, 0.32);
  transform: rotate(18deg);
}

.home-orbit-panel .orbit-track-inner::before {
  width: 58%;
  height: 44%;
}

.home-orbit-panel .orbit-logo {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  offset-anchor: center;
  offset-rotate: 0deg;
  will-change: offset-distance;
}

.home-orbit-panel .orbit-track-outer .orbit-logo {
  offset-path: ellipse(41% 31% at 50% 50%);
  animation: orbit-follow-outer 38s linear infinite;
}

.home-orbit-panel .orbit-track-inner .orbit-logo {
  offset-path: ellipse(29% 22% at 50% 50%);
  animation: orbit-follow-inner 28s linear infinite reverse;
}

.home-orbit-panel .orbit-logo-card {
  animation: none;
}

.home-orbit-panel .orbit-track-outer .orbit-logo-card {
  transform: rotate(14deg);
}

.home-orbit-panel .orbit-track-inner .orbit-logo-card {
  transform: rotate(-18deg);
}

.home-orbit-panel .orbit-track .logo-glm {
  animation-delay: -3s;
}

.home-orbit-panel .orbit-track .logo-qwen {
  animation-delay: -9.333s;
}

.home-orbit-panel .orbit-track .logo-deepseek {
  animation-delay: -15.666s;
}

.home-orbit-panel .orbit-track .logo-kimi {
  animation-delay: -22s;
}

.home-orbit-panel .orbit-track .logo-doubao {
  animation-delay: -28.333s;
}

.home-orbit-panel .orbit-track .logo-bailian {
  animation-delay: -34.666s;
}

.home-orbit-panel .orbit-track .logo-claude {
  animation-delay: -4s;
}

.home-orbit-panel .orbit-track .logo-gpt {
  animation-delay: -13.333s;
}

.home-orbit-panel .orbit-track .logo-grok {
  animation-delay: -22.666s;
}

@keyframes orbit-follow-outer {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

@keyframes orbit-follow-inner {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

.home-orbit-panel .orbit-ring {
  border-color: rgba(245, 158, 11, 0.42);
}

.home-orbit-panel .ring-two {
  border-color: rgba(14, 165, 233, 0.32);
}

.home-orbit-panel .orbit-core img {
  width: 118px;
  height: 74px;
}

.home-orbit-panel .orbit-logo-card img {
  background: transparent;
}

.home-orbit-panel .orbit-logo-card {
  color: #0f172a;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95), 0 8px 22px rgba(15, 23, 42, 0.12);
}

.home-orbit-panel .logo-glm .orbit-logo-card {
  color: #8a5b00;
}

.home-orbit-panel .logo-qwen .orbit-logo-card {
  color: #0284c7;
}

.home-orbit-panel .logo-deepseek .orbit-logo-card {
  color: #3454d1;
}

.home-orbit-panel .logo-kimi .orbit-logo-card {
  color: #059669;
}

.home-orbit-panel .logo-doubao .orbit-logo-card {
  color: #c2410c;
}

.home-orbit-foot {
  margin-top: -10px;
}

.home-orbit-foot b {
  color: #0f172a;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 18px;
}

.home-stats article,
.home-feature-card,
.home-models article,
.home-code-panel,
.home-contact {
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.home-stats article {
  display: grid;
  gap: 5px;
  min-height: 96px;
  align-content: center;
  text-align: center;
  padding: 14px;
}

.home-stats strong {
  color: #0f172a;
  font-size: 32px;
}

.home-stats span {
  color: #64748b;
  font-size: 13px;
}

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

.home-feature-card {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  color: #0f172a;
}

.home-feature-card span,
.home-code-panel .or-kicker,
.home-contact .or-kicker {
  color: #0284c7;
  font-size: 12px;
  font-weight: 900;
}

.home-feature-card h2 {
  margin: 8px 0 10px;
  color: #0f172a;
  font-size: 28px;
}

.home-feature-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.home-feature-card b {
  color: #0284c7;
}

.home-route-visual {
  display: flex;
  gap: 10px;
  align-items: center;
}

.home-route-visual img {
  width: 38px;
  height: 38px;
  border: 1px solid #dbe7f2;
  border-radius: 50%;
  background: #ffffff;
  object-fit: contain;
  padding: 6px;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 42px 0 14px;
}

.home-section-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
}

.home-section-head a {
  color: #0284c7;
  font-weight: 900;
}

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

.home-models article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.home-models img {
  width: 42px;
  height: 42px;
  border: 1px solid #dbe7f2;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
}

.home-models strong {
  display: block;
  overflow: hidden;
  color: #0f172a;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-models span {
  color: #64748b;
  font-size: 12px;
}

.home-models b {
  grid-column: 2;
  color: #0284c7;
}

.home-code-panel,
.home-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
}

.home-code-panel h2,
.home-contact h2 {
  margin: 8px 0;
  color: #0f172a;
  font-size: 28px;
}

.home-code-panel p,
.home-contact p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.home-code-panel pre {
  overflow-x: auto;
  margin: 0;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px;
}

.home-copy {
  min-height: 40px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #e8f7ff;
  color: #0284c7;
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.home-contact {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
}

.home-contact form {
  display: grid;
  gap: 10px;
}

.home-contact input,
.home-contact select {
  min-height: 44px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #172033;
  padding: 0 12px;
}

@media (max-width: 980px) {
  .home-page .pricing-header {
    grid-template-columns: auto 1fr auto;
  }

  .home-search {
    display: none;
  }

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

  .home-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    text-align: center;
  }

  .home-hero-copy {
    justify-items: center;
  }

  .home-actions {
    justify-content: center;
  }

  .home-orbit-panel {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .home-code-panel {
    grid-template-columns: 1fr;
  }

  .home-contact {
    grid-template-columns: 1fr;
  }

  .fusion-workspace,
  .rankings-grid,
  .docs-shell {
    grid-template-columns: 1fr;
  }

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

  .fusion-sidebar,
  .docs-sidebar,
  .docs-toc {
    position: static;
  }

  .rankings-side,
  .apps-install {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rankings-side {
    display: grid;
  }

  .docs-toc {
    display: none;
  }
}

@media (max-width: 680px) {
  .home-shell {
    padding: 38px 12px 38px;
  }

  .home-hero {
    min-height: 0;
    padding: 30px 0 22px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero p {
    font-size: 16px;
  }

  .home-orbit-panel {
    min-height: 410px;
    padding: 12px;
    border-radius: 12px;
  }

  .home-orbit-topline,
  .home-orbit-foot {
    padding: 10px;
  }

  .home-orbit-panel .orbit-scene {
    height: 330px;
  }

  .home-orbit-panel .orbit-logo-card b {
    font-size: 11px;
  }

  .home-stats,
  .home-feature-grid,
  .home-models {
    grid-template-columns: 1fr;
  }

  .home-section-head {
    display: grid;
  }

  .home-feature-card {
    min-height: 0;
  }

  .home-code-panel,
  .home-contact {
    padding: 18px;
  }

  .fusion-workspace,
  .rankings-shell,
  .apps-shell,
  .enterprise-shell,
  .docs-shell {
    padding: 14px 12px 36px;
  }

  .fusion-head,
  .rankings-hero,
  .rankings-card-head,
  .apps-hero,
  .enterprise-actions {
    display: grid;
  }

  .fusion-head h1,
  .apps-hero h1,
  .enterprise-hero h1 {
    font-size: 34px;
  }

  .fusion-model-grid,
  .fusion-result,
  .apps-featured,
  .apps-install,
  .enterprise-grid,
  .enterprise-rollout ol,
  .rankings-side {
    grid-template-columns: 1fr;
  }

  .rankings-hero h1,
  .docs-article h1 {
    font-size: 34px;
  }

  .chart-bars {
    height: 180px;
    gap: 7px;
    padding: 12px;
  }

  .leaderboard-list article,
  .apps-list article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .leaderboard-list b,
  .leaderboard-list small,
  .apps-list b {
    grid-column: 2;
  }

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

  .docs-article {
    padding: 22px;
  }
}

.or-chat-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 620px;
  overflow: hidden;
}

.or-chat-sidebar {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.16);
}

.or-chat-sidebar h3 {
  margin-top: 0;
}

.or-chat-main {
  display: grid;
  grid-template-rows: 1fr auto;
}

.or-message-stack {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
}

.or-message {
  max-width: 760px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.or-message strong {
  color: var(--gold);
}

.or-message p {
  margin-bottom: 0;
}

.or-composer {
  display: flex;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.or-composer input {
  flex: 1;
}

.or-doc-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.or-doc-nav {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.or-doc-nav a {
  color: var(--muted);
  font-size: 14px;
}

.or-doc-nav a:hover {
  color: var(--gold);
}

.or-doc-card {
  padding: 26px;
}

.or-doc-card pre {
  margin-top: 18px;
  border-radius: 8px;
  background: #08050e;
}

.or-doc-card h2 {
  margin-top: 34px;
}

.or-doc-card h2:first-child {
  margin-top: 0;
}

.or-doc-card p {
  color: #d8cdea;
}

.or-callout {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(245, 194, 66, 0.08);
  color: #f6f0dc;
}

.or-step-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.or-step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.or-step-list b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(77, 217, 209, 0.12);
  color: var(--cyan);
}

.or-footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--quiet);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 24px;
    min-height: 680px;
    padding-bottom: 60px;
  }

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

  .hero-panel {
    min-height: 500px;
    padding: 0;
  }

  .orbit-scene {
    height: 360px;
  }

  h1 {
    font-size: 58px;
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 22px;
  }

  .main-nav {
    display: none;
  }

  .or-header {
    grid-template-columns: 1fr auto;
    padding: 12px 22px;
  }

  .or-nav {
    display: none;
  }

  .or-shell {
    padding-inline: 22px;
  }

  .or-hero,
  .or-page-grid,
  .or-doc-layout,
  .or-chat-shell {
    grid-template-columns: 1fr;
  }

  .or-section-head,
  .or-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .or-row-metrics {
    min-width: 0;
  }

  .or-rank-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .or-rank-row .or-score {
    grid-column: 2;
  }

  .model-catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .model-catalog-vendors {
    justify-content: flex-start;
  }

  .pricing-market {
    grid-template-columns: 1fr;
  }

  .pricing-filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-height: none;
  }

  .pricing-reset {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .pricing-filter-group {
    margin-bottom: 0;
  }

  .pricing-filter-list {
    max-height: 164px;
    overflow-y: auto;
  }

  .pricing-topbar {
    top: 64px;
    grid-template-columns: 1fr;
  }

  .pricing-view-actions {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

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

  .chat-sidebar-head,
  .chat-search {
    grid-column: 1 / -1;
  }

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

  .or-grid,
  .or-grid.two,
  .or-grid.four {
    grid-template-columns: 1fr;
  }

  .or-table {
    overflow-x: auto;
  }

  .or-table-row {
    min-width: 760px;
  }

  .pricing-table {
    min-width: 860px;
  }

  .model-catalog-table {
    min-width: 900px;
  }

  .or-title {
    font-size: 44px;
  }

  .or-chat-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .notice-bar {
    top: 64px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 48px 22px 58px;
  }

  .hero-panel {
    min-height: 0;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .accounts-section,
  .api-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .section,
  .site-footer {
    padding-inline: 22px;
  }
}

@media (max-width: 680px) {
  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 44px;
    height: 32px;
  }

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

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.16;
  }

  h2 {
    font-size: 29px;
    line-height: 1.24;
  }

  .hero-lede {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .orbit-scene {
    height: 340px;
  }

  .orbit-core {
    width: 92px;
    height: 60px;
  }

  .orbit-core img {
    width: 88px;
    height: 54px;
  }

  .orbit-logo-card {
    min-height: 38px;
    gap: 7px;
    padding: 0;
    font-size: 12px;
  }

  .orbit-logo-card img {
    width: 24px;
    height: 24px;
  }

  .orbit-track-outer {
    inset: 34px 28px;
  }

  .orbit-track-inner {
    inset: 84px 76px;
  }

  .panel-grid,
  .model-cards,
  .scheduler-grid,
  .account-flow li,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .panel-grid {
    margin-top: 0;
  }

  .account-flow li {
    padding-left: 54px;
  }

  .site-footer {
    display: grid;
  }

  .pricing-market {
    padding: 16px 12px 44px;
  }

  .pricing-result-head {
    display: grid;
  }

  .pricing-filter-list {
    max-height: 126px;
  }

  .pricing-filter-option {
    min-height: 30px;
    padding-inline: 4px;
    font-size: 12px;
  }

  .models-market-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .models-market-strip article {
    min-height: 58px;
    padding: 8px;
  }

  .models-market-strip span {
    font-size: 11px;
  }

  .models-market-strip strong {
    font-size: 12px;
    word-break: break-word;
  }

  .pricing-source {
    justify-content: flex-start;
  }

  .pricing-card-grid {
    grid-template-columns: 1fr;
  }

  .chat-workspace {
    padding: 14px 12px 36px;
  }

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

  .chat-toolbar {
    display: grid;
  }

  .chat-route-chip {
    min-width: 0;
  }

  .chat-model-strip,
  .chat-metrics,
  .chat-prompts {
    grid-template-columns: 1fr;
  }

  .chat-thread {
    min-height: 0;
    padding: 12px;
  }

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