:root {
  --ink: #071b33;
  --muted: rgba(20, 45, 71, 0.72);
  --soft: rgba(35, 75, 105, 0.58);
  --line: rgba(44, 125, 255, 0.22);
  --glass: rgba(255, 255, 255, 0.72);
  --accent-blue: #2f7dff;
  --blue: #edf5ff;
  --deep: #fbfeff;
  --silver: #f5fbff;
  --radius: 34px
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter","Noto Sans SC",-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",system-ui,sans-serif;
  background: radial-gradient(circle at 18% 6%, rgba(47, 125, 255, 0.18), transparent 28rem),radial-gradient(circle at 84% 22%, rgba(112, 163, 255, 0.18), transparent 31rem),linear-gradient(145deg, #fff 0, #f7fbff 42%, #edf5ff 100%);
  min-height: 100vh;
  overflow-x: hidden
}
a {
  color: inherit;
  text-decoration: none
}
.ambient {
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1
}
.ambient-one {
  width: 34rem;
  height: 34rem;
  top: 24%;
  right: -14rem;
  background: rgba(47, 125, 255, 0.15);
  box-shadow: 0 0 80px rgba(47, 125, 255, 0.18)
}
.ambient-two {
  width: 22rem;
  height: 22rem;
  left: -8rem;
  bottom: 12%;
  background: rgba(104, 151, 255, 0.14)
}
.nav {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 10;
  width: min(calc(1180px + 6vw), calc(100% - 22px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(40, 104, 210, 0.14);
  backdrop-filter: blur(22px)
}
.brand,
.nav-action,
.nav-links {
  display: flex;
  align-items: center
}
.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(47, 125, 255, 0.14);
  box-shadow: 0 0 30px rgba(47, 125, 255, 0.28)
}
.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  margin-left: auto;
  margin-right: 34px
}
.ghost-button,
.nav-action,
.primary-button {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  white-space: nowrap;
  font-size: 15px
}
.nav-action {
  padding: 0 18px;
  color: #0b2437;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(61, 124, 158, 0.16)
}
.nav-outline {
  padding: 0 18px;
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  white-space: nowrap;
  color: #7c3aed;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(124, 58, 237, 0.22);
  cursor: pointer;
  transition: background 0.2s,box-shadow 0.2s;
  margin-left: 10px
}
.nav-outline:hover {
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12)
}
.nav-console {
  appearance: none;
  border: 0;
  min-height: 44px;
  padding: 0 18px;
  margin-left: 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  background: #071b33;
  border: 1px solid rgba(7, 27, 51, 0.18);
  box-shadow: 0 16px 44px rgba(7, 27, 51, 0.22);
  cursor: pointer
}
.nav-logout {
  appearance: none;
  border: 0;
  min-height: 44px;
  padding: 0 18px;
  margin-left: 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  background: #e53e3e;
  border: 1px solid rgba(229, 62, 62, 0.22);
  box-shadow: 0 14px 34px rgba(229, 62, 62, 0.24);
  cursor: pointer;
  transition: background 0.2s,box-shadow 0.2s,filter 0.15s ease
}
.nav-logout:hover {
  background: #c53030;
  box-shadow: 0 18px 40px rgba(229, 62, 62, 0.32)
}
.nav-logout:active {
  transform: scale(0.96)
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 10px
}
.nav-dropdown .nav-console {
  margin-left: 0
}
.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.18s ease
}
.nav-dropdown.open .nav-caret {
  transform: rotate(180deg)
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(40, 104, 210, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease,transform 0.18s ease,visibility 0.18s;
  z-index: 20
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}
.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #2d3748;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease,color 0.15s ease
}
.nav-dropdown-item:hover {
  background: rgba(47, 125, 255, 0.08);
  color: var(--accent-blue)
}
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(7, 27, 51, 0.18);
  opacity: 0;
  transition: opacity 0.3s ease,transform 0.3s ease;
  pointer-events: none
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}
.toast.success {
  background: #071b33;
  color: #fff
}
.toast.error {
  background: #e53e3e;
  color: #fff
}
.toast.warning {
  background: #f59e0b;
  color: #fff
}
.toast.info {
  background: #2f7dff;
  color: #fff
}
.soon-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease
}
.soon-modal.open {
  opacity: 1;
  pointer-events: auto
}
.soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 51, 0.36);
  backdrop-filter: blur(12px)
}
.soon-card {
  position: relative;
  width: min(460px, 100%);
  overflow: hidden;
  border-radius: 34px;
  padding: 38px;
  text-align: left;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.24s ease
}
.soon-modal.open .soon-card {
  transform: translateY(0) scale(1)
}
.soon-card h2 {
  margin-bottom: 14px;
  font-size: clamp(42px, 8vw, 64px)
}
.soon-card p:not(.eyebrow) {
  max-width: 340px;
  color: rgba(20, 45, 71, 0.72);
  line-height: 1.8
}
.soon-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(47, 125, 255, 0.14);
  border-radius: 50%;
  color: #071b33;
  background: rgba(255, 255, 255, 0.74);
  font-size: 24px;
  line-height: 1;
  cursor: pointer
}
.soon-orbit {
  position: absolute;
  right: -44px;
  top: -44px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 125, 255, 0.24), transparent 68%)
}
.soon-orbit span {
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(47, 125, 255, 0.28);
  border-radius: 50%
}
.soon-orbit span:nth-child(2) {
  inset: 68px;
  background: #1769ff;
  box-shadow: 0 0 34px rgba(23, 105, 255, 0.32)
}
.soon-button {
  min-height: 44px;
  margin-top: 12px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #1769ff;
  box-shadow: 0 14px 34px rgba(23, 105, 255, 0.22);
  font-weight: 900;
  cursor: pointer
}
.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto
}
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 112px 0 56px
}
.hero::before {
  content: "";
  position: absolute;
  inset: 104px -3vw 20px;
  border-radius: 46px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.78) 34%, rgba(255, 255, 255, 0.1) 74%),url("./assets/hero-bg.svg?v=20260623") center right/cover no-repeat;
  box-shadow: 0 40px 120px rgba(39, 97, 190, 0.18);
  overflow: hidden
}
.hero::after {
  content: "";
  position: absolute;
  inset: 104px -3vw 20px;
  border-radius: 46px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 45%, rgba(47, 125, 255, 0.15))
}
#hero-canvas {
  position: absolute;
  inset: 0 0 auto auto;
  width: 68%;
  height: 100%;
  opacity: 0.38;
  mix-blend-mode: multiply
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.45fr);
  gap: 26px;
  align-items: end
}
.hero-copy {
  max-width: 760px;
  padding-top: 3vh
}
.eyebrow {
  margin: 0 0 18px;
  color: #245edb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase
}
h1,
h2,
h3,
p {
  margin-top: 0
}
.title-line {
  display: inline;
  white-space: nowrap
}
.nowrap {
  white-space: nowrap
}
h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  color: #071b33
}
h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0
}
h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0
}
.card p,
.case-card p,
.contact-card p,
.hero-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8
}
.card p {
  color: rgba(15, 41, 67, 0.78);
  font-weight: 500
}
.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(17px, 1.45vw, 20px)
}
.contact-actions,
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}
.primary-button {
  padding: 0 24px;
  color: #fff;
  background: #071b33;
  border: 1px solid rgba(7, 27, 51, 0.18);
  box-shadow: 0 16px 44px rgba(7, 27, 51, 0.22)
}
.ghost-button {
  padding: 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62)
}
.glass {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 253, 255, 0.72)),rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(40, 104, 210, 0.12),inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(26px)
}
.hero-panel {
  border-radius: var(--radius);
  padding: 28px;
  min-height: 280px
}
.card-top p,
.case-card span,
.panel-kicker {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em
}
.hero-panel strong {
  display: block;
  margin: 16px 0;
  font-size: 58px;
  line-height: 1
}
.capability-list,
.metric-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px
}
.capability-list span,
.metric-row span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #17324a;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(61, 124, 158, 0.14);
  font-size: 13px;
  font-weight: 800
}
#cases,
.contact,
.narrative,
.partners,
.split-section {
  padding: 112px 0 0
}
.section-heading {
  max-width: 1040px;
  margin-bottom: 30px
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px
}
.card,
.case-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 28px
}
.card::after,
.case-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(47, 125, 255, 0.15), transparent 38%, rgba(255, 255, 255, 0.24));
  opacity: 0.52;
  z-index: 0
}
.card > *,
.case-card > *,
.contact-card > * {
  position: relative;
  z-index: 1
}
.business-bento .card {
  min-height: 260px
}
.bento-large {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 540px
}
.business-bento .card:not(.bento-large):not(.wide) {
  grid-column: span 2
}
.bento-large {
  padding-bottom: 28px
}
.tall {
  min-height: 400px
}
.wide {
  grid-column: span 4
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px
}
.feature-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #063247;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 236, 255, 0.74));
  border: 1px solid rgba(47, 125, 255, 0.18);
  box-shadow: 0 10px 24px rgba(47, 125, 255, 0.08);
  font-size: 13px;
  font-weight: 800
}
.card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px
}
.icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #051122;
  background: linear-gradient(135deg, #fff, #86a8ff);
  box-shadow: 0 12px 26px rgba(47, 125, 255, 0.18);
  font-weight: 900
}
.mini-stage {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  height: 190px;
  border-radius: 28px;
  background: linear-gradient(90deg, transparent 0 15%, rgba(47, 125, 255, 0.16) 15% 16%, transparent 16% 33%, rgba(255, 255, 255, 0.76) 33% 34%, transparent 34%),radial-gradient(circle at 50% 15%, rgba(47, 125, 255, 0.2), transparent 32%),rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(87, 143, 176, 0.12)
}
.agent-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, minmax(112px, 1fr));
  gap: 12px;
  margin-top: 28px;
  min-height: 292px
}
.agent-gallery figure {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(47, 125, 255, 0.16);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 42px rgba(40, 104, 210, 0.1)
}
.agent-gallery figure:first-child {
  grid-row: span 2
}
.agent-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}
.agent-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 27, 51, 0.76);
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.18);
  font-size: 12px;
  font-weight: 900
}
.system-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 12px;
  margin-top: 26px;
  min-height: 210px
}
.system-gallery figure {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(47, 125, 255, 0.16);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 42px rgba(40, 104, 210, 0.1)
}
.system-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}
.system-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 27, 51, 0.76);
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.18);
  font-size: 12px;
  font-weight: 900
}
.mini-stage span {
  position: absolute;
  bottom: 28px;
  width: 52px;
  height: 100px;
  border-radius: 26px 26px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(47, 125, 255, 0.24));
  box-shadow: 0 0 40px rgba(47, 125, 255, 0.18)
}
.business-bento .token-card {
  grid-column: span 2;
  min-height: 320px;
  padding-bottom: 156px
}
.token-visual {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px;
  border-radius: 28px;
  background: radial-gradient(circle at 20% 50%, rgba(47, 125, 255, 0.2), transparent 28%),linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(196, 214, 255, 0.28));
  border: 1px solid rgba(87, 143, 176, 0.12);
  z-index: 0
}
.token-visual span {
  min-width: 64px;
  height: 38px;
  padding: 0 14px;
  white-space: nowrap;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(69, 120, 153, 0.15)
}
.token-visual .model-text {
  background: linear-gradient(135deg, #071b33, #2f7dff);
  border: 1px solid rgba(47, 125, 255, 0.24)
}
.token-visual .model-image {
  background: linear-gradient(135deg, #5a3bd9, #a785ff);
  border: 1px solid rgba(167, 133, 255, 0.3)
}
.token-visual .model-video {
  background: linear-gradient(135deg, #0d6fb8, #53d3ff);
  border: 1px solid rgba(83, 211, 255, 0.32)
}
.mini-stage span:nth-child(1) {
  left: 18%;
  transform: scale(0.78)
}
.mini-stage span:nth-child(2) {
  left: 45%
}
.mini-stage span:nth-child(3) {
  right: 18%;
  transform: scale(0.64)
}
.twin-map {
  height: 180px;
  margin-top: 30px;
  position: relative;
  border-radius: 28px;
  transform: perspective(580px) rotateX(58deg) rotateZ(-18deg);
  background: linear-gradient(rgba(47, 125, 255, 0.12) 1px, transparent 1px),linear-gradient(90deg, rgba(47, 125, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  border: 1px solid rgba(47, 125, 255, 0.2)
}
.twin-map i {
  position: absolute;
  width: 48px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(47, 125, 255, 0.24));
  box-shadow: 0 0 30px rgba(47, 125, 255, 0.16)
}
.twin-map i:nth-child(1) {
  left: 22%;
  top: 26%
}
.twin-map i:nth-child(2) {
  left: 47%;
  top: 12%;
  height: 100px
}
.twin-map i:nth-child(3) {
  right: 20%;
  top: 36%;
  height: 56px
}
.twin-map i:nth-child(4) {
  left: 36%;
  bottom: 8%;
  width: 92px;
  height: 42px
}
.signal-line {
  height: 76px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-blue) 0 4px, transparent 5px) 0 50%/56px 20px repeat-x,linear-gradient(90deg, transparent, rgba(47, 125, 255, 0.34), transparent);
  opacity: 0.8
}
.strength-bento .stat-card {
  grid-column: span 2;
  min-height: 180px
}
.stat-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.9
}
.stat-card span {
  color: var(--muted);
  font-weight: 800
}
.strength-main {
  grid-column: span 6;
  min-height: 250px
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}
.case-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px
}
.case-card img {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(47, 125, 255, 0.14);
  box-shadow: 0 18px 42px rgba(40, 104, 210, 0.1)
}
.case-card span {
  margin-top: 4px
}
.partner-row {
  min-height: 220px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  padding: 14px
}
.partner-row span {
  min-height: 92px
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 24px;
  color: rgba(7, 27, 51, 0.82);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 243, 255, 0.72)),rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(47, 125, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9)
}
.partner-logo i {
  width: 38px;
  height: 38px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-style: normal;
  color: #fff;
  background: linear-gradient(135deg, #071b33, #245edb 62%, #86a8ff);
  box-shadow: 0 12px 26px rgba(47, 125, 255, 0.22);
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0
}
.partner-logo i svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor
}
.partner-logo b {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif
}
.partner-logo.glm {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 255, 0.76))
}
.partner-logo.glm i {
  border-radius: 50%;
  background: linear-gradient(135deg, #06152a, #2b3f68)
}
.partner-logo.kimi {
  background: linear-gradient(135deg, rgba(250, 249, 246, 0.98), rgba(232, 238, 251, 0.76));
  border-color: rgba(89, 105, 132, 0.2)
}
.partner-logo.kimi i {
  border-radius: 10px;
  color: #071b33;
  background: linear-gradient(135deg, #fff, #cfd8ea);
  border: 1px solid rgba(7, 27, 51, 0.1)
}
.partner-logo.deepseek {
  background: radial-gradient(circle at 18% 20%, rgba(74, 127, 255, 0.18), transparent 36%),linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(225, 236, 255, 0.78))
}
.partner-logo.deepseek i {
  background: linear-gradient(135deg, #1d4fd7, #6f98ff)
}
.partner-logo.minimax {
  border-color: rgba(92, 73, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 233, 255, 0.78))
}
.partner-logo.minimax i {
  border-radius: 18px 8px 18px 8px;
  background: linear-gradient(135deg, #3426b8, #8c7dff)
}
.partner-logo.bytedance {
  border-color: rgba(35, 92, 230, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 239, 255, 0.82))
}
.partner-logo.bytedance i {
  background: linear-gradient(135deg, #0b3db8, #3d7cff)
}
.partner-logo.sensetime {
  border-color: rgba(47, 125, 255, 0.24);
  background: radial-gradient(circle at 82% 18%, rgba(47, 125, 255, 0.2), transparent 34%),linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 241, 255, 0.8))
}
.partner-logo.sensetime i {
  border-radius: 12px;
  background: linear-gradient(135deg, #123f9f, #5b8cff)
}
.partner-logo.tencent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(224, 238, 255, 0.82))
}
.partner-logo.tencent i {
  background: linear-gradient(135deg, #0066d9, #58a0ff)
}
.partner-logo.daxiao {
  border-color: rgba(18, 47, 95, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 252, 0.82))
}
.partner-logo.daxiao i {
  border-radius: 12px;
  background: linear-gradient(135deg, #071b33, #4f73c9)
}
.contact {
  padding-bottom: 38px
}
.contact-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 6vw, 70px)
}
.contact-card h2 {
  max-width: 1040px;
  margin-bottom: 18px
}
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(36, 63, 88, 0.5);
  font-size: 14px
}
.footer-records {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(36, 63, 88, 0.62);
  font-size: 13px
}
.footer-records a {
  color: inherit;
  transition: color 0.2s ease
}
.footer-records a:hover {
  color: var(--accent-blue)
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease,transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1)
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}
@media (max-width: 860px) {
  .nav {
    top: 14px;
    width: min(100% - 22px, 1180px)
  }
  .nav-links {
    display: none
  }
  .nav-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px
  }
  .nav-console {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
    margin-left: 8px
  }
  .nav-logout {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
    margin-left: 8px
  }
  .nav-dropdown {
    margin-left: 8px
  }
  .nav-dropdown-menu {
    min-width: 148px
  }
  .hero {
    padding-top: 108px
  }
  .hero::after,
  .hero::before {
    inset: 92px 0 14px;
    border-radius: 34px
  }
  #hero-canvas {
    width: 100%;
    height: 56%;
    opacity: 0.28
  }
  .case-grid,
  .hero-grid {
    grid-template-columns: 1fr
  }
  .hero-grid {
    padding: 0 22px
  }
  .title-line {
    display: block
  }
  .hero-panel {
    min-height: 220px
  }
  .bento {
    grid-template-columns: 1fr
  }
  .bento-large,
  .business-bento .card:not(.bento-large):not(.wide),
  .strength-bento .stat-card,
  .strength-main,
  .token-card,
  .wide {
    grid-column: auto
  }
  .bento-large {
    min-height: 590px
  }
  .business-bento .token-card {
    min-height: 520px;
    padding-bottom: 190px
  }
  .partner-row {
    grid-template-columns: 1fr 1fr
  }
  .partner-row span {
    min-height: 96px
  }
  .footer {
    gap: 12px;
    flex-direction: column
  }
}
@media (max-width: 520px) {
  :root {
    --radius: 26px
  }
  .footer,
  .section-shell {
    width: min(100% - 22px, 1180px)
  }
  h1 {
    font-size: 32px;
    line-height: 1.04
  }
  .contact-title {
    max-width: 100%;
    padding-right: 0;
    font-size: clamp(26px, 7.7vw, 32px);
    line-height: 1.14
  }
  .contact-title .title-line {
    display: block;
    white-space: nowrap
  }
  .hero-grid {
    padding: 0 18px
  }
  .card,
  .case-card,
  .hero-panel {
    padding: 22px
  }
  .mini-stage {
    left: 22px;
    right: 22px
  }
  .business-bento .token-card {
    min-height: 520px;
    padding: 22px 22px 190px
  }
  .system-gallery {
    grid-template-columns: 1fr
  }
  .system-gallery figure {
    min-height: 170px
  }
}
.brand,
.ghost-button,
.nav-action,
.nav-links a,
.primary-button {
  cursor: pointer
}
.brand {
  transition: transform 0.2s ease,filter 0.2s ease
}
.brand:hover {
  transform: scale(1.05);
  filter: brightness(1.08)
}
.nav-links a {
  transition: color 0.15s ease
}
.nav-links a:hover {
  color: var(--accent-blue)
}
.nav-action {
  transition: background-color 0.15s ease,box-shadow 0.15s ease
}
.nav-action:hover {
  background: rgba(47, 125, 255, 0.08);
  box-shadow: 0 8px 24px rgba(47, 125, 255, 0.12)
}
.nav-console {
  transition: filter 0.15s ease,box-shadow 0.15s ease
}
.nav-console:hover {
  filter: brightness(1.08);
  box-shadow: 0 20px 50px rgba(7, 27, 51, 0.28)
}
.primary-button {
  transition: filter 0.15s ease,box-shadow 0.15s ease,transform 0.1s ease
}
.primary-button:hover {
  filter: brightness(1.08);
  box-shadow: 0 20px 50px rgba(7, 27, 51, 0.28)
}
.primary-button:active {
  transform: scale(0.97)
}
.ghost-button {
  transition: background-color 0.15s ease,border-color 0.15s ease
}
.ghost-button:hover {
  background: rgba(47, 125, 255, 0.08);
  border-color: var(--accent-blue)
}
.card,
.case-card {
  transition: transform 0.2s ease,box-shadow 0.2s ease
}
.card:hover,
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(40, 104, 210, 0.18),inset 0 1px 0 rgba(255, 255, 255, 0.96)
}