:root {
  --bg: oklch(0.985 0.006 300);
  --bg-soft: oklch(0.97 0.01 300);
  --bg-sunk: oklch(0.955 0.012 300);
  --bg-deep: oklch(0.22 0.04 295);
  --ink: oklch(0.22 0.035 295);
  --ink-2: oklch(0.4 0.04 295);
  --ink-3: oklch(0.56 0.035 295);
  --ink-4: oklch(0.72 0.025 295);
  --line: oklch(0.9 0.015 295);
  --line-2: oklch(0.84 0.02 295);
  --accent: oklch(0.55 0.22 295);
  --accent-2: oklch(0.68 0.2 300);
  --accent-3: oklch(0.75 0.17 320);
  --accent-ink: oklch(0.42 0.22 295);
  --accent-soft: oklch(0.94 0.05 295);
  --accent-bg: oklch(0.97 0.03 295);
  --warn: oklch(0.7 0.16 50);
  --err: oklch(0.6 0.22 25);
  --ok: oklch(0.62 0.14 160);
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 0 oklch(0.9 0.015 295 / .6), 0 1px 2px oklch(0.3 0.03 295 / .04);
  --shadow: 0 1px 0 oklch(0.9 0.015 295 / .5), 0 10px 30px -12px oklch(0.3 0.1 295 / .18);
  --shadow-lg: 0 40px 100px -50px oklch(0.3 0.2 295 / .35);
  --sans: "Inter", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", "Noto Serif SC", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

@keyframes aurora {

  0%,
  100% {
    transform: translate3d(-10%, -10%, 0) rotate(0deg);
    opacity: .65
  }

  50% {
    transform: translate3d(10%, 10%, 0) rotate(180deg);
    opacity: 1
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes beam {
  0% {
    left: -20%
  }

  100% {
    left: 120%
  }
}

@keyframes drift-bg {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-4%, 3%) scale(1.08)
  }
}

.brand-spin {
  animation: spin-slow 22s linear infinite;
  transform-origin: 16px 16px;
}

.brand:hover .brand-spin {
  animation-duration: 5s;
}

.fade-up {
  animation: fadeUp .8s cubic-bezier(.2, .8, .2, 1) both
}

.fade-in {
  animation: fadeIn 1s ease both
}

.delay-1 {
  animation-delay: .1s
}

.delay-2 {
  animation-delay: .2s
}

.delay-3 {
  animation-delay: .3s
}

.delay-4 {
  animation-delay: .4s
}

.delay-5 {
  animation-delay: .5s
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(1.3) blur(14px);
  border-bottom: 1px solid var(--line)
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -.015em
}

.brand-name {
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -.02em
}

.brand-sub {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-left: 2px;
  font-weight: 500
}

.brand>span:first-child {
  color: var(--accent)
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: 16px
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 14.5px;
  transition: color .2s, background .2s
}

.nav-link:hover {
  color: var(--ink);
  background: var(--bg-soft)
}

.nav-link.active {
  color: var(--accent-ink);
  background: var(--accent-bg)
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  border: 1px solid transparent;
  line-height: 1;
  transition: background .2s, border-color .2s, color .2s, transform .15s, box-shadow .2s
}

.btn:active {
  transform: translateY(1px)
}

.btn-ghost {
  color: var(--ink-2)
}

.btn-ghost:hover {
  color: var(--ink);
  background: var(--bg-soft)
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line-2);
  background: var(--bg)
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--ink-4)
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, oklch(0.5 0.25 295) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -10px oklch(0.5 0.22 295 / .6)
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px oklch(0.5 0.22 295 / .75)
}

.btn-dark {
  background: var(--ink);
  color: var(--bg)
}

.btn-dark:hover {
  background: oklch(0.14 0.03 295)
}

.btn-lg {
  padding: 14px 24px;
  font-size: 15.5px
}

.btn-sm {
  padding: 7px 12px;
  font-size: 13.5px
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px
}

.section {
  padding: 140px 0
}

.section-sm {
  padding: 80px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 500
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent)
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -.025em;
  font-weight: 600;
  color: var(--ink)
}

h1 {
  font-size: 84px;
  line-height: .98;
  letter-spacing: -.04em
}

h2 {
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -.03em
}

h3 {
  font-size: 22px;
  line-height: 1.3
}

h4 {
  font-size: 16px;
  line-height: 1.35
}

p {
  margin: 0
}

.lede {
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 58ch
}

.serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-ink)
}

.muted {
  color: var(--ink-3)
}

.mono {
  font-family: var(--mono);
  font-size: .92em
}

.hero {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  min-height: 92vh
}

.hero-bg {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: multiply;
  will-change: transform
}

.hero-blob.b1 {
  width: 720px;
  height: 720px;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, oklch(0.72 0.22 295 / .55), transparent 60%);
  animation: aurora 18s ease-in-out infinite
}

.hero-blob.b2 {
  width: 620px;
  height: 620px;
  top: 20%;
  left: -10%;
  background: radial-gradient(circle, oklch(0.78 0.17 320 / .5), transparent 60%);
  animation: aurora 22s ease-in-out infinite reverse
}

.hero-blob.b3 {
  width: 540px;
  height: 540px;
  bottom: -15%;
  left: 30%;
  background: radial-gradient(circle, oklch(0.82 0.14 265 / .45), transparent 60%);
  animation: aurora 26s ease-in-out infinite
}

.hero-grid-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(circle, oklch(0.6 0.08 295 / .25) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 50%, #000, transparent 75%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center
}

.hero h1 .serif {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-sub {
  margin-top: 36px;
  font-size: 21px;
  color: var(--ink-2);
  max-width: 48ch;
  line-height: 1.65
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 560px
}

.hero-meta b {
  color: var(--ink);
  font-weight: 600;
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -.02em;
  font-family: var(--sans)
}

.hero-meta span {
  font-size: 13px;
  color: var(--ink-3)
}

.hv {
  aspect-ratio: 4/5;
  position: relative;
  border-radius: var(--radius-lg);
  background: oklch(0.99 0.003 295);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px oklch(0.6 0.2 295 / .06);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg)
}

.hv-inner {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.hv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line)
}

.hv-title {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500
}

.hv-dots {
  display: flex;
  gap: 6px
}

.hv-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line)
}

.hv-dots i:nth-child(1) {
  background: oklch(0.7 0.15 25)
}

.hv-dots i:nth-child(2) {
  background: oklch(0.78 0.15 75)
}

.hv-dots i:nth-child(3) {
  background: oklch(0.7 0.15 160)
}

.hv-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: var(--mono)
}

.hv-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px oklch(0.62 0.14 160 / .2);
  animation: pulse-soft 1.6s ease-in-out infinite
}

.hv-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp .7s cubic-bezier(.2, .8, .2, 1) both;
  position: relative
}

.hv-card:nth-child(2) {
  animation-delay: .2s
}

.hv-card:nth-child(3) {
  animation-delay: .4s
}

.hv-card:nth-child(4) {
  animation-delay: .6s
}

.hv-card .ic {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0
}

.hv-card .t {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink)
}

.hv-card .s {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 1px;
  font-family: var(--mono)
}

.hv-card .meter {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden
}

.hv-card .meter i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  border-radius: 2px
}

.hv-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0
}

.hv-row {
  display: flex;
  align-items: center;
  gap: 10px
}

.hv-pct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  margin-left: auto
}

.hv-flow {
  margin-top: auto;
  padding: 14px;
  background: var(--ink);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11.5px;
  color: oklch(0.88 0.01 295);
  font-family: var(--mono);
  position: relative;
  overflow: hidden
}

.hv-flow code {
  background: oklch(0.3 0.03 295);
  padding: 4px 8px;
  border-radius: 5px;
  color: oklch(0.95 0.02 295)
}

.hv-flow code.ac {
  background: oklch(0.4 0.15 295);
  color: #fff
}

.hv-flow .arrow {
  color: var(--accent-2)
}

.hv-flow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, oklch(0.7 0.2 295 / .35), transparent);
  animation: beam 3.5s ease-in-out infinite
}

.hv-orbit {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed oklch(0.6 0.15 295 / .4);
  animation: spin-slow 40s linear infinite;
  pointer-events: none
}

.hv-orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%)
}

.logos {
  padding: 40px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 128px;
  position: relative;
  z-index: 1
}

.logos-label {
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center
}

.logos-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: .72
}

.logos-row span {
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -.015em;
  font-size: 18px
}

.ticker-wrap {
  overflow: hidden;
  position: relative;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.ticker {
  display: flex;
  gap: 56px;
  animation: ticker 50s linear infinite;
  white-space: nowrap;
  width: max-content
}

.ticker span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  letter-spacing: .02em
}

.ticker span b {
  color: var(--accent-ink);
  font-weight: 600
}

.ticker .sep {
  color: var(--ink-4)
}

.systems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.sys {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  transition: background .3s ease;
  position: relative
}

.sys::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1)
}

.sys:hover {
  background: var(--bg-soft)
}

.sys:hover::after {
  transform: scaleX(1)
}

.sys:hover .sys-ic {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent)
}

.sys-head {
  display: flex;
  align-items: center;
  gap: 12px
}

.sys-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: all .3s ease
}

.sys-num {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: .12em
}

.sys h3 {
  font-size: 19px
}

.sys p {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.65
}

.sys-tags {
  margin-top: auto;
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.tag {
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 5px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  color: var(--ink-3);
  letter-spacing: .02em
}

.tag.accent {
  background: var(--accent-soft);
  border-color: oklch(0.85 0.08 295);
  color: var(--accent-ink)
}

.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step
}

.step {
  position: relative;
  padding-top: 36px;
  border-top: 2px solid var(--ink);
  counter-increment: step;
  transition: border-color .3s ease
}

.step:hover {
  border-color: var(--accent)
}

.step::before {
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: .18em;
  position: absolute;
  top: -11px;
  left: 0;
  background: var(--bg);
  padding-right: 12px;
  transition: color .3s ease
}

.step:hover::before {
  color: var(--accent-ink)
}

.step h3 {
  margin-bottom: 14px;
  font-size: 24px
}

.step p {
  color: var(--ink-3);
  max-width: 34ch;
  line-height: 1.7
}

.quote {
  background: linear-gradient(135deg, oklch(0.97 0.03 295), oklch(0.95 0.05 320));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden
}

.quote::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at top right, oklch(0.7 0.22 295 / .2), transparent 50%);
  pointer-events: none
}

.quote>* {
  position: relative;
  z-index: 1
}

.quote-text {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: var(--ink)
}

.quote-author {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-3);
  font-family: var(--sans)
}

.quote-author b {
  color: var(--ink);
  font-weight: 500
}

.quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: .7;
  color: var(--accent);
  margin-top: 24px
}

.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 44px;
  margin-top: 96px;
  background: var(--bg-soft)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px
}

.footer h5 {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
  font-weight: 500
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer a {
  color: var(--ink-2);
  font-size: 14.5px;
  transition: color .2s
}

.footer a:hover {
  color: var(--accent-ink)
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--ink-3);
  font-size: 13px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px
}

.plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-2)
}

.plan.featured {
  border-color: transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, linear-gradient(135deg, var(--accent), var(--accent-3)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-lg)
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 8px 20px -6px oklch(0.5 0.22 295 / .55)
}

.plan-name {
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500
}

.plan-blurb {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
  min-height: 44px
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0
}

.plan-price .n {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -.035em;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1
}

.plan-price .c {
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
  margin-right: 2px
}

.plan-price .p {
  color: var(--ink-3);
  font-size: 14px
}

.plan-credits {
  background: var(--accent-bg);
  border: 1px solid oklch(0.85 0.08 295);
  border-radius: 9px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--accent-ink);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.plan-credits b {
  color: var(--accent-ink);
  font-weight: 600;
  font-family: var(--mono)
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.plan li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55
}

.plan li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent)
}

.plan li.off {
  color: var(--ink-4)
}

.plan li.off svg {
  color: var(--ink-4)
}

.plan .btn {
  justify-content: center;
  width: 100%;
  margin-top: 12px
}

.billing-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 10px;
  gap: 2px
}

.billing-toggle button {
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--ink-3);
  transition: all .2s
}

.billing-toggle button.on {
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-sm)
}

.save-pill {
  margin-left: 10px;
  font-size: 11px;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: .05em;
  font-weight: 500
}

.compare {
  margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg)
}

.compare table {
  width: 100%;
  border-collapse: collapse
}

.compare th,
.compare td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: middle
}

.compare th {
  font-weight: 500;
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--bg-soft)
}

.compare tbody tr:last-child td {
  border-bottom: 0
}

.compare td.v {
  color: var(--ink);
  font-weight: 500
}

.compare td.c {
  text-align: center;
  width: 160px;
  color: var(--ink-2)
}

.compare td.c.yes {
  color: var(--accent)
}

.compare td.row-label {
  color: var(--ink-2)
}

.compare .group-row td {
  background: var(--bg-soft);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 12px 24px;
  font-weight: 500
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px
}

.stat {
  background: var(--bg);
  padding: 32px;
  transition: background .3s ease
}

.stat:hover {
  background: var(--bg-soft)
}

.stat-n {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1
}

.stat-n .serif {
  font-size: .7em
}

.stat-l {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 8px
}

.stat-s {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 3px
}

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

.value {
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  transition: border-color .3s ease
}

.value:hover {
  border-color: var(--accent)
}

.value h3 {
  font-size: 19px;
  margin-bottom: 14px
}

.value p {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.7
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 40px
}

.tl-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease
}

.tl-item:hover {
  background: var(--bg-soft)
}

.tl-date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-ink);
  padding-top: 2px;
  letter-spacing: .02em
}

.tl-title {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 16px
}

.tl-body {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.6
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  margin-top: 56px
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px
}

.contact-field label {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500
}

.input,
.textarea,
.select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.58 0.22 295 / .12)
}

.textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
  line-height: 1.6
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ci-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  transition: all .3s ease
}

.ci-row:hover {
  border-color: var(--accent);
  background: var(--accent-bg)
}

.ci-row:hover .ci-ic {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.ci-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: all .3s ease
}

.ci-row h4 {
  font-size: 14.5px;
  margin-bottom: 5px
}

.ci-row p {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55
}

.ci-row .val {
  color: var(--ink);
  font-weight: 500;
  font-size: 15.5px;
  margin-top: 8px
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(0.3 0.15 295), oklch(0.24 0.12 310) 50%, oklch(0.3 0.18 280));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 48px;
  align-items: center
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 100%, oklch(0.7 0.2 320 / .5), transparent 50%), radial-gradient(ellipse 60% 50% at 100% 0%, oklch(0.7 0.2 280 / .5), transparent 50%);
  pointer-events: none
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, oklch(1 0 0 / .06) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, transparent, #000);
  pointer-events: none
}

.cta-band>* {
  position: relative;
  z-index: 1
}

.cta-band h2 {
  color: #fff;
  max-width: 20ch;
  letter-spacing: -.03em
}

.cta-band p {
  color: oklch(0.85 0.02 295);
  margin-top: 16px;
  font-size: 17px;
  max-width: 46ch;
  line-height: 1.65
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg)
}

.auth-visual {
  background: linear-gradient(135deg, oklch(0.22 0.1 295), oklch(0.2 0.12 310), oklch(0.24 0.1 280));
  color: #fff;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden
}

.auth-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 50% at 20% 20%, oklch(0.7 0.2 320 / .5), transparent 60%), radial-gradient(ellipse 70% 60% at 80% 80%, oklch(0.6 0.22 270 / .55), transparent 60%);
  animation: drift-bg 20s ease-in-out infinite
}

.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, oklch(1 0 0 / .08) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, #000, transparent);
  pointer-events: none
}

.auth-visual>* {
  position: relative;
  z-index: 1
}

.auth-visual .brand {
  font-size: 18px;
  color: #fff
}

.auth-visual .brand-name {
  color: #fff
}

.auth-visual .brand-sub {
  color: oklch(0.85 0.05 295)
}

.auth-visual .brand>span:first-child {
  color: #fff
}

.auth-visual h2 {
  color: #fff;
  font-size: 44px;
  max-width: 14ch;
  margin-top: 72px;
  line-height: 1.15;
  letter-spacing: -.03em
}

.auth-visual h2 .serif {
  background: linear-gradient(120deg, oklch(0.9 0.15 295), oklch(0.85 0.18 320));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.auth-visual .q {
  color: oklch(0.85 0.03 295);
  margin-top: 24px;
  max-width: 36ch;
  line-height: 1.7;
  font-size: 15.5px
}

.auth-visual .features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 44px
}

.auth-visual .feat {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14.5px;
  color: oklch(0.9 0.02 295)
}

.auth-visual .feat svg {
  color: var(--accent-3)
}

.auth-visual .foot-note {
  font-family: var(--mono);
  font-size: 12px;
  color: oklch(0.75 0.05 295);
  letter-spacing: .05em
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px
}

.auth-card {
  width: 100%;
  max-width: 420px
}

.auth-card h1 {
  font-size: 34px;
  margin-bottom: 8px;
  letter-spacing: -.025em
}

.auth-card .sub {
  color: var(--ink-3);
  margin-bottom: 36px;
  font-size: 15px
}

.tabs {
  display: flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 28px
}

.tabs button {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  color: var(--ink-3);
  border-radius: 7px;
  transition: all .2s;
  font-weight: 500
}

.tabs button.on {
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-sm)
}

.phone-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px
}

.area-code {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: var(--surface-2, #f5f5f5);
  border: 1px solid var(--line, #e0e0e0);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2, #555);
  user-select: none;
}

.code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px
}

.auth-foot {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 20px
}

.auth-foot a {
  color: var(--accent-ink)
}

.auth-foot a:hover {
  text-decoration: underline
}

.auth-switch {
  margin-top: 32px;
  text-align: center;
  color: var(--ink-3);
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line)
}

.auth-switch a {
  color: var(--accent-ink);
  font-weight: 500
}

.auth-switch a:hover {
  text-decoration: underline
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 20px;
  color: var(--ink-4);
  font-size: 12px;
  letter-spacing: .1em
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1
}

.wechat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  background: #1aad19;
  color: #fff;
  transition: all .2s
}

.wechat-btn:hover {
  background: #15901a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px oklch(0.6 0.2 150 / .5)
}

.checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
  cursor: pointer
}

.checkbox input {
  margin-top: 3px;
  accent-color: var(--accent)
}

.checkbox a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 2px
}

.field-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.dash {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
  background: var(--bg-soft)
}

.sidebar {
  background: var(--bg);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  gap: 4px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto
}

.sidebar .brand {
  padding: 8px 10px;
  margin-bottom: 20px
}

.sb-group {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 14px 10px 6px;
  font-weight: 500
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s;
  position: relative
}

.sb-item:hover {
  background: var(--bg-soft);
  color: var(--ink)
}

.sb-item.on {
  background: var(--accent-bg);
  color: var(--accent-ink)
}

.sb-item.on svg {
  color: var(--accent-ink)
}

.sb-item svg {
  flex-shrink: 0;
  color: var(--ink-3)
}

.sb-item .count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4)
}

.sb-item .new {
  margin-left: auto;
  font-size: 10px;
  background: var(--accent);
  color: #fff;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: .06em;
  font-weight: 500
}

.sb-user {
  margin-top: auto;
  padding: 14px 10px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px -4px oklch(0.5 0.22 295 / .4)
}

.avatar-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 32px -4px oklch(0 0 0 / .12);
  z-index: 999;
  overflow: hidden;
}

.av-drop-info {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--line);
}

.av-drop-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.av-drop-phone {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 2px;
}

.av-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s;
}

.av-drop-item:hover {
  background: var(--bg-soft);
}

.av-drop-item.danger {
  color: oklch(0.55 0.18 25);
}

.av-drop-divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}

.sb-user .t {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2
}

.sb-user .s {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 2px
}

.main {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 0
}

.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 14px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 10
}

.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-3);
  font-size: 13.5px
}

.crumbs b {
  color: var(--ink);
  font-weight: 500
}

.crumbs .sep {
  color: var(--ink-4)
}

.top-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px
}

.token-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  background: var(--bg-soft)
}

.token-pill b {
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 600
}

.token-pill .bar {
  width: 80px;
  height: 4px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden
}

.token-pill .bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  width: 64%
}

.content {
  padding: 40px 44px;
  flex: 1;
  max-width: 1320px;
  width: 100%
}

.content-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px
}

.content-head h1 {
  font-size: 34px;
  letter-spacing: -.025em;
  font-weight: 600
}

.content-head p {
  color: var(--ink-3);
  margin-top: 8px;
  font-size: 15px;
  max-width: 62ch;
  line-height: 1.65
}

.content-head .actions {
  display: flex;
  gap: 8px
}

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

.sys-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: all .3s ease;
  min-height: 216px
}

.sys-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px)
}

.sys-card:hover .ic {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.sys-card .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: all .3s ease
}

.sys-card h3 {
  font-size: 17px;
  font-weight: 600
}

.sys-card p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6
}

.sys-card .foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono)
}

.sys-card .foot .cost {
  color: var(--accent-ink);
  font-weight: 500
}

.sys-card.coming {
  opacity: .65;
  cursor: not-allowed
}

.sys-card .badge {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  align-self: flex-start;
  letter-spacing: .05em;
  font-weight: 500
}

.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.chip {
  padding: 7px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent-ink)
}

.chip.on {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink)
}

.runner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start
}

.panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden
}

.panel-head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center
}

.panel-head .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-bg);
  border: 1px solid oklch(0.85 0.08 295);
  display: grid;
  place-items: center;
  color: var(--accent-ink)
}

.panel-head h2 {
  font-size: 19px;
  margin: 0;
  font-weight: 600;
  letter-spacing: -.015em
}

.panel-head p {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 2px
}

.panel-body {
  padding: 28px
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 22px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.field label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink)
}

.field .help {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5
}

.upload {
  border: 1.5px dashed var(--line-2);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  background: var(--bg-soft);
  cursor: pointer;
  transition: all .3s ease
}

.upload:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent-ink)
}

.upload .title {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px
}

.upload .sub {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 5px
}

.upload .formats {
  font-size: 11.5px;
  color: var(--ink-4);
  margin-top: 10px;
  font-family: var(--mono)
}

.preview-thumb {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 10px
}

.preview-thumb .thumb {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-3);
  flex-shrink: 0
}

.preview-thumb .name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink)
}

.preview-thumb .meta {
  font-size: 12px;
  color: var(--ink-3)
}

.preview-thumb .rm {
  margin-left: auto;
  color: var(--ink-3);
  padding: 6px
}

.preview-thumb .rm:hover {
  color: var(--ink)
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.radio-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  background: var(--bg);
  transition: all .2s;
  position: relative
}

.radio-card:hover {
  border-color: var(--ink-4)
}

.radio-card.on {
  border-color: var(--accent);
  background: var(--accent-bg)
}

.radio-card .rt {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink)
}

.radio-card .rs {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 3px
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 14px
}

.slider-row input[type=range] {
  flex: 1;
  accent-color: var(--accent)
}

.slider-row .v {
  min-width: 40px;
  text-align: right;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink)
}

.panel-foot {
  padding: 18px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--bg-soft)
}

.panel-foot .cost {
  margin-right: auto;
  font-size: 13.5px;
  color: var(--ink-3)
}

.panel-foot .cost b {
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 600
}

.side-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 16px
}

.side-card h4 {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-weight: 500
}

.kv {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px
}

.kv:last-child {
  border-bottom: 0
}

.kv span {
  color: var(--ink-3)
}

.kv b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--mono)
}

/* Runs log */
.runs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.runs-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  width: 280px;
  transition: all .2s
}

.runs-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.58 0.22 295 / .12)
}

.runs-search svg {
  color: var(--ink-3);
  flex-shrink: 0
}

.runs-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13.5px
}

.runs-search input::placeholder {
  color: var(--ink-4)
}

.runs-table {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden
}

.runs-head,
.runs-row {
  display: grid;
  grid-template-columns: 132px 220px 1fr 110px 130px 150px;
  gap: 16px;
  padding: 14px 24px;
  align-items: center;
}

.runs-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500
}

.runs-head .r,
.runs-row .r {
  text-align: right;
  justify-content: flex-end
}

.runs-row {
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  transition: background .15s
}

.runs-row:last-child {
  border-bottom: 0
}

.runs-row:hover {
  background: var(--bg-soft)
}

.r-time .d {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.01em
}

.r-time .h {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 2px
}

.r-sys {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0
}

.r-sys .s-ic {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  flex-shrink: 0
}

.r-sys span {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.r-task {
  min-width: 0
}

.r-task .tt {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.r-task .ts {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 3px;
  font-family: var(--mono)
}

.r-tk {
  display: flex;
  gap: 4px;
  align-items: baseline
}

.r-tk b {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.01em
}

.r-tk span {
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: var(--mono)
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0
}

.status-pill.ok {
  background: oklch(0.95 0.06 160);
  color: oklch(0.35 0.14 160)
}

.status-pill.ok i {
  background: var(--ok)
}

.status-pill.run {
  background: var(--accent-soft);
  color: var(--accent-ink)
}

.status-pill.run i {
  background: var(--accent);
  animation: pulse-soft 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 3px oklch(0.58 0.22 295 / .25)
}

.status-pill.wait {
  background: oklch(0.95 0.04 75);
  color: oklch(0.42 0.12 70)
}

.status-pill.wait i {
  background: oklch(0.72 0.15 70)
}

.status-pill.err {
  background: oklch(0.96 0.04 25);
  color: oklch(0.45 0.18 25)
}

.status-pill.err i {
  background: oklch(0.6 0.2 25)
}

.status-pill .pct {
  font-family: var(--mono);
  opacity: .75;
  font-weight: 500
}

.r-act {
  display: flex;
  justify-content: flex-end
}

.r-act .btn-sm {
  padding: 6px 11px;
  font-size: 12.5px;
  gap: 5px
}

.runs-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 0 8px;
  font-size: 13px;
  color: var(--ink-3)
}

.runs-foot b {
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 600
}

.runs-foot .pager {
  display: flex;
  gap: 8px;
  align-items: center
}

@media (max-width: 1080px) {

  .runs-head,
  .runs-row {
    grid-template-columns: 110px 140px 1fr 90px 110px 130px;
    gap: 10px;
    padding: 12px 16px
  }
}

.history {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.h-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  align-items: center
}

.h-row:last-child {
  border: 0
}

.h-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok)
}

.h-dot.run {
  background: var(--warn);
  animation: pulse-soft 1.6s infinite
}

.h-dot.err {
  background: oklch(0.6 0.2 25)
}

.h-row .title {
  font-weight: 500;
  color: var(--ink);
  font-size: 13px
}

.h-row .time {
  color: var(--ink-3);
  font-size: 12px;
  font-family: var(--mono)
}

@media (max-width: 960px) {
  h1 {
    font-size: 48px
  }

  h2 {
    font-size: 34px
  }

  .hero {
    padding: 64px 0 80px;
    min-height: auto
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px
  }

  .hv {
    aspect-ratio: 5/6;
    transform: none
  }

  .systems {
    grid-template-columns: 1fr 1fr
  }

  .how {
    grid-template-columns: 1fr;
    gap: 32px
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 56px
  }

  .stats {
    grid-template-columns: 1fr 1fr
  }

  .values {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .auth-wrap {
    grid-template-columns: 1fr
  }

  .auth-visual {
    display: none
  }

  .dash {
    grid-template-columns: 1fr
  }

  .sidebar {
    display: none
  }

  .runner {
    grid-template-columns: 1fr
  }

  .sys-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .nav-links {
    display: none
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 48px 32px
  }

  .quote {
    grid-template-columns: 1fr;
    padding: 40px
  }
}

/* --- 🚀 瞬犀全效进度条系统 --- */
.shunxi-progress-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.shunxi-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  background-size: 200% 100%;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: shunt-gradient 3s linear infinite;
}

.shunxi-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  animation: shunxi-progress-shine 2s infinite;
}

@keyframes shunt-gradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* --- 🚀 进度条与遮罩层系统 --- */
.runner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlay-fade-in 0.4s ease-out;
}

.overlay-content {
  background: var(--bg);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

@keyframes overlay-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.spinner-shunxi {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

/* ============================================================
   BILLING (Ported from Design System)
   ============================================================ */
.bill-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  margin-bottom: 32px
}

.plan-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--accent-bg) 0%, transparent 50%);
  pointer-events: none
}

.plan-card>* {
  position: relative;
  z-index: 1
}

.pc-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.pc-lbl {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: oklch(0.95 0.06 160);
  color: oklch(0.35 0.14 160);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500
}

.plan-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse-soft 2s infinite
}

.pc-name {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-top: 4px
}

.pc-cycle {
  font-size: 18px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 4px
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line)
}

.pc-price b {
  font-family: var(--mono);
  font-size: 26px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.02em;
  white-space: nowrap
}

.pc-price span {
  font-size: 13px;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.pc-meta {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 4px 0 2px
}

.pc-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px
}

.pc-meta-row svg {
  color: var(--ink-3);
  flex-shrink: 0
}

.pc-meta-row span {
  color: var(--ink-3);
  flex: 1
}

.pc-meta-row b {
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 500
}

.pc-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px
}

.credit-card {
  background: linear-gradient(135deg, oklch(0.28 0.07 295) 0%, oklch(0.22 0.06 310) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.cc-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, oklch(0.7 0.25 300 / .4), transparent 60%);
  filter: blur(40px);
  pointer-events: none
}

.credit-card>*:not(.cc-glow) {
  position: relative;
  z-index: 1
}

.cc-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.cc-lbl {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: oklch(0.8 0.06 295);
  font-weight: 500
}

.cc-reset {
  font-size: 12px;
  color: oklch(0.75 0.05 295);
  font-family: var(--mono)
}

.cc-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px
}

.cc-big b {
  font-family: var(--mono);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1
}

.cc-big span {
  font-size: 14px;
  color: oklch(0.8 0.06 295)
}

.cc-bar {
  height: 10px;
  background: oklch(0.22 0.04 295);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px
}

.cc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, oklch(0.75 0.22 300), oklch(0.7 0.2 340));
  box-shadow: 0 0 20px oklch(0.7 0.25 300 / .6)
}

.cc-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: oklch(0.78 0.05 295)
}

.cc-bar-meta b {
  color: #fff;
  font-family: var(--mono);
  font-weight: 600
}

.cc-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: oklch(0.85 0.15 60)
}

.cc-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px
}

.bill-section {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px
}

.bill-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  gap: 20px;
  flex-wrap: wrap
}

.bill-section-head h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em
}

.bill-section-head p {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 4px;
  max-width: 60ch;
  line-height: 1.55
}

.seg {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 3px;
  gap: 2px
}

.seg button {
  padding: 6px 12px;
  font-size: 13px;
  color: var(--ink-3);
  border-radius: 6px;
  transition: all .15s;
  font-weight: 500;
  white-space: nowrap
}

.seg button:hover {
  color: var(--ink)
}

.seg button.on {
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-sm)
}

.breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

.bd-chart {
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.bd-seg {
  transition: flex .3s;
  position: relative
}

.bd-seg:hover {
  filter: brightness(1.1)
}

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

.bd-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  padding: 4px 0
}

.bd-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0
}

.bd-name {
  flex: 1;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.bd-cr b {
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 600
}

.bd-cr {
  color: var(--ink-3);
  font-size: 12.5px
}

.bd-pct {
  font-family: var(--mono);
  color: var(--ink-3);
  font-size: 12px;
  min-width: 32px;
  text-align: right
}

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

.pack {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px;
  background: var(--bg);
  position: relative;
  transition: all .2s
}

.pack:hover {
  border-color: var(--ink-4);
  transform: translateY(-2px)
}

.pack.best {
  border-color: var(--accent);
  background: var(--accent-bg);
  box-shadow: 0 20px 40px -20px oklch(0.55 0.22 295 / .3)
}

.pack-best {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: .05em;
  font-weight: 500
}

.pack-cr {
  display: flex;
  align-items: baseline;
  gap: 6px
}

.pack-cr b {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.02em
}

.pack-cr span {
  color: var(--ink-3);
  font-size: 14px;
  font-family: var(--mono)
}

.pack-bonus {
  font-size: 12px;
  color: var(--accent-ink);
  font-weight: 500;
  margin-top: 4px
}

.pack-price {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 14px
}

.pack-unit {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
  font-family: var(--mono)
}

.bill-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg)
}

.bt-head,
.bt-row {
  display: grid;
  gap: 16px;
  padding: 14px 20px;
  align-items: center
}

.bt-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500
}

.bt-row {
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  transition: background .15s
}

.bt-row:last-child {
  border-bottom: 0
}

.bt-row:hover {
  background: var(--bg-soft)
}

.bt-head .r,
.bt-row .r {
  text-align: right;
  justify-content: flex-end
}

.bt-date {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500
}

.bt-date.mono {
  font-size: 12px;
  color: var(--ink-2)
}

.bt-id {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: .02em
}

.bt-item {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500
}

.bt-sub {
  margin-top: 4px
}

.bt-method {
  font-size: 12.5px;
  color: var(--ink-2)
}

.bt-amt b {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.01em
}

.bt-sys {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink)
}

.bt-sys-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--accent);
  flex-shrink: 0
}

.bt-cr {
  font-family: var(--mono);
  font-size: 14px;
  color: oklch(0.5 0.15 25);
  font-weight: 600
}

.bt-cr.pos {
  color: var(--ok)
}

.bt-cr-unit {
  font-size: 11px;
  color: var(--ink-3);
  margin-left: 3px;
  font-family: var(--mono)
}

.bt-left b {
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 500
}

.bt-left span {
  font-size: 11px;
  color: var(--ink-3);
  margin-left: 3px;
  font-family: var(--mono)
}

.bt-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 0 4px;
  font-size: 13px;
  color: var(--ink-3)
}

.bt-foot b {
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 600
}

.bt-foot .pager {
  display: flex;
  gap: 8px;
  align-items: center
}


/* ============================================================
   SETTINGS (Ported from Design System)
   ============================================================ */
.settings-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: flex-start
}

.settings-nav {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px
}

.sn-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s;
  text-align: left;
  width: 100%;
  position: relative;
  font-weight: 500
}

.sn-item:hover {
  background: var(--bg-soft);
  color: var(--ink)
}

.sn-item.on {
  background: var(--accent-bg);
  color: var(--accent-ink)
}

.sn-item.on svg {
  color: var(--accent-ink)
}

.sn-item svg {
  color: var(--ink-3);
  flex-shrink: 0
}

.sn-item span {
  flex: 1
}

.sn-danger {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.6 0.2 25)
}

.settings-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0
}

.ss-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden
}

.ss-card.danger {
  border-color: oklch(0.86 0.08 25)
}

.ss-card-head {
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line)
}

.ss-card.danger .ss-card-head {
  background: oklch(0.98 0.02 25);
  border-bottom-color: oklch(0.9 0.05 25)
}

.ss-card-head h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink)
}

.ss-card-head p {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
  line-height: 1.6
}

.ss-card-head p b {
  color: var(--ink);
  font-weight: 600
}

.profile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  gap: 20px
}

.profile-avatar {
  display: flex;
  align-items: center;
  gap: 16px
}

.avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 500;
  box-shadow: 0 10px 24px -10px oklch(0.55 0.22 295 / .5);
  font-family: var(--serif);
  flex-shrink: 0
}

.profile-id .p-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em
}

.profile-id .p-title {
  color: var(--ink-3);
  font-weight: 400;
  font-size: 14px
}

.profile-id .p-org {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 3px
}

.profile-id .p-since {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 6px;
  font-family: var(--mono);
  letter-spacing: .02em
}

.ss-body {
  padding: 4px 26px 8px
}

.ss-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start
}

.ss-row:last-child {
  border-bottom: 0
}

.ss-l label {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500
}

.ss-help {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 4px;
  line-height: 1.55;
  max-width: 30ch
}

.ss-v {
  display: flex;
  align-items: center;
  min-height: 32px
}

.ss-val {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  flex-wrap: wrap
}

.ss-val.locked {
  padding: 7px 12px;
  background: var(--bg-soft);
  border: 1px dashed var(--line-2);
  border-radius: 8px;
  color: var(--ink-2)
}

.ss-val.locked svg {
  color: var(--ink-3)
}

.ss-val .muted {
  color: var(--ink-3)
}

.ss-val .mono {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em
}

.lock-pill {
  padding: 2px 8px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em
}

.ss-foot {
  padding: 14px 26px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}
/* ===== REFERENCE DESIGN ENHANCEMENTS ===== */

/* 1. Floating glass pill nav */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  background: none;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: navSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlideDown {
  from { transform: translateY(-80px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.nav-inner {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  box-shadow: 0 4px 28px rgba(90, 40, 180, 0.09), 0 1px 4px rgba(0,0,0,0.04);
  padding: 7px 10px 7px 22px;
  max-width: 1100px;
  width: 100%;
}

.nav-link {
  border-radius: 9999px;
}

.nav-right .btn-ghost {
  border-radius: 9999px;
}

.nav-right .btn-primary {
  border-radius: 9999px;
}

/* 2. Main content clears fixed nav */
.main-content {
  padding-top: 0;
}

/* 3. Eyebrow pill variant */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  padding: 5px 14px;
  border-radius: 9999px;
}

/* 4. Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

/* 5. Lift card hover */
.lift-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.35s ease;
  will-change: transform;
  cursor: default;
}
.lift-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(90, 40, 180, 0.13);
}

/* 6. FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border-radius: 16px;
  border: 1px solid transparent;
  background: var(--bg-soft);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.faq-item.open {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.faq-item:not(.open):hover {
  border-color: var(--line);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  letter-spacing: -.015em;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  background: var(--bg-sunk);
  color: var(--ink-3);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}
.faq-body-inner {
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}
.faq-item.open .faq-body-inner {
  padding-bottom: 20px;
}

/* 7. Section background blobs */
.blob-bg {
  position: relative;
  overflow: hidden;
}
.blob-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, oklch(0.72 0.22 295 / .06), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.blob-bg > * { position: relative; z-index: 1; }

/* 8. Scale-up featured pricing card */
.plan-card-featured-scale {
  transform: scale(1.03);
  position: relative;
  z-index: 2;
}

/* 9. Comparison & pricing - larger radii override */
.compare {
  border-radius: 20px;
  overflow: hidden;
}


/* ===== HERO REDESIGN: Centered + Preview Card ===== */

.hero {
  padding: 110px 0 80px;
  min-height: auto;
  text-align: center
}

.hero-grid {
  display: block
}

.hero-inner {
  display: block;
  max-width: 780px;
  margin: 0 auto
}

.hero-sub {
  margin: 28px auto 0;
  text-align: center;
  max-width: 52ch
}

.hero-cta {
  justify-content: center;
  margin-top: 40px
}

.hero-meta {
  justify-content: center;
  border-top: none;
  padding-top: 0;
  margin-top: 44px;
  gap: 48px;
  max-width: none
}

.hero-meta b {
  font-size: 26px
}

/* Hero blob background — more prominent, centered top */
.hero-blob.b1 {
  width: 900px;
  height: 600px;
  top: -30%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: radial-gradient(circle, oklch(0.72 0.22 295 / .45), transparent 60%)
}

.hero-blob.b2 {
  width: 500px;
  height: 500px;
  top: -5%;
  left: -8%;
  background: radial-gradient(circle, oklch(0.75 0.15 320 / .38), transparent 60%)
}

.hero-blob.b3 {
  width: 460px;
  height: 460px;
  top: 0;
  right: -8%;
  left: auto;
  bottom: auto;
  background: radial-gradient(circle, oklch(0.78 0.18 260 / .35), transparent 60%)
}

/* Hero preview card (macOS window style) */
.hero-preview-wrap {
  margin-top: 64px;
  width: 100%
}

.hero-preview {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 0 0 1px rgba(90,40,180,0.06),
              0 24px 64px rgba(90,40,180,0.13),
              0 8px 24px rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px)
}

.hp-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.6)
}

.hp-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0
}

.hp-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%
}

.hp-dots span:nth-child(1) { background: #ff5f57 }
.hp-dots span:nth-child(2) { background: #febc2e }
.hp-dots span:nth-child(3) { background: #28c840 }

.hp-window-title {
  flex: 1;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: -.01em
}

.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid oklch(0.88 0.08 295);
  padding: 3px 10px;
  border-radius: 20px
}

.hp-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite
}

.hp-body {
  padding: 20px;
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.hp-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  text-align: left
}

.hp-card-dark {
  background: var(--ink);
  border-color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px
}

.hp-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 10px;
  flex-shrink: 0
}

.hp-t {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 3px;
  line-height: 1.35
}

.hp-s {
  font-size: 11px;
  color: var(--ink-4);
  line-height: 1.45;
  margin-bottom: 10px
}

.hp-bar {
  height: 4px;
  border-radius: 9999px;
  background: var(--bg-sunk);
  overflow: hidden
}

.hp-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2))
}

.hp-pct {
  font-size: 10px;
  color: var(--ink-4);
  margin-top: 4px;
  font-family: var(--mono)
}

/* dark card elements */
.hp-flow-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase
}

.hp-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px
}

.hp-flow-steps code {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--accent-2);
  background: rgba(255,255,255,0.08);
  padding: 5px 10px;
  border-radius: 6px;
  display: block
}

.hp-flow-steps .arr {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  padding-left: 6px
}

.hp-stat-row {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.hp-stat-row span {
  font-size: 10px;
  color: rgba(255,255,255,0.35)
}

.hp-stat-row b {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em
}


/* CTA BANNER - dark purple gradient */
.cta-banner {
  border-radius: 28px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0520 0%, #1a0840 40%, #0d0f35 100%);
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: cta-float 8s ease-in-out infinite;
  pointer-events: none;
}
.cta-blob.cb1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(139,92,246,0.45) 0%, transparent 70%);
  top: -120px; left: -80px;
  animation-delay: 0s;
}
.cta-blob.cb2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(99,60,200,0.35) 0%, transparent 70%);
  bottom: -100px; right: 200px;
  animation-delay: -3s;
}
.cta-blob.cb3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(168,130,255,0.25) 0%, transparent 70%);
  top: 20px; right: 60px;
  animation-delay: -5s;
}

@keyframes cta-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.97); }
}

/* =====================================================================
   DESIGN SYSTEM v2 — Glass · Noise · Mesh · Motion
   ===================================================================== */

/* Particle canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.hero {
  position: relative;
}
.hero-inner {
  position: relative;
  z-index: 1;
}

/* Floating orbs — replaces blobs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orb-breathe 9s ease-in-out infinite;
}
.hero-orb.orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle at 35% 45%,
    rgba(139,92,246,0.13) 0%,
    rgba(99,102,241,0.07) 45%,
    transparent 70%);
  top: -180px; right: -140px;
  animation-delay: 0s;
}
.hero-orb.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle,
    rgba(168,130,255,0.09) 0%,
    transparent 65%);
  bottom: 40px; left: -100px;
  animation-delay: -4.5s;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%       { transform: scale(1.07) translate(12px, -18px); }
}

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 4px 20px rgba(0,0,0,0.045),
    0 1px 3px rgba(0,0,0,0.03);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.glass-card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 10px 36px rgba(139,92,246,0.09),
    0 2px 8px rgba(0,0,0,0.04);
  border-color: rgba(139,92,246,0.22);
  transform: translateY(-3px);
}

/* Noise texture on hero section */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}

/* Gradient mesh — alternating sections */
.section:nth-child(even) {
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(139,92,246,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 85% 75%, rgba(99,102,241,0.04) 0%, transparent 60%);
}

/* Icon box */
.icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* Card mono label */
.card-mono-label {
  font-size: 10px;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(139,92,246,0.07);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 4px;
  padding: 2px 7px;
  display: inline-block;
}

/* Inset blocks (pain point / solution) */
.inset-block {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.7;
}
.inset-block-warn {
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.12);
}
.inset-block-accent {
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.14);
}
.inset-label {
  font-size: 11px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.04em;
}
.inset-label.warn  { color: var(--err); }
.inset-label.accent { color: var(--accent); }

/* Comparison grid v2 */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.compare-cell {
  padding: 18px 26px;
  background: var(--bg);
}
.compare-cell-trad { background: var(--bg-soft); }
.compare-cell-ai   { background: rgba(139,92,246,0.03); }
.compare-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.compare-label.accent { color: var(--accent); }
.compare-text {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Case metric number */
.case-metric {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.025em;
  line-height: 1;
}

/* Step card v2 */
.step.glass-card {
  border-radius: 16px;
  padding: 28px 24px;
}
.step-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 14px;
  font-family: var(--mono);
  letter-spacing: -0.03em;
}

/* Hero meta hover lift */
.hero-meta > div {
  transition: transform 0.22s ease;
}
.hero-meta > div:hover {
  transform: translateY(-3px);
}

/* Primary button glow on hover */
.btn-primary {
  transition: box-shadow 0.22s ease, transform 0.18s ease, background 0.2s ease;
}
.btn-primary:hover {
  box-shadow: 0 6px 22px rgba(139,92,246,0.28);
}

/* Subtle section divider */
.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(139,92,246,0.12) 30%, rgba(139,92,246,0.12) 70%, transparent 100%);
  margin: 0;
}

/* Reveal baseline — ensure transitions fire */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =====================================================
   VS COMPARISON BLOCK
   ===================================================== */
.vs-wrap {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: stretch;
}

/* Shared column */
.vs-col {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header row */
.vs-col-header {
  padding: 14px 24px;
  display: flex;
  align-items: center;
}
.vs-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-family: var(--mono);
}
.vs-col-label.ai {
  color: var(--accent);
}

/* Left: 传统方式 */
.vs-col-trad {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.vs-col-trad .vs-col-header {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

/* Right: 瞬犀方案 — highlighted */
.vs-col-ai {
  background: rgba(139,92,246,0.06);
  border: 1.5px solid rgba(139,92,246,0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(139,92,246,0.08), 0 0 0 1px rgba(139,92,246,0.06) inset;
}
.vs-col-ai .vs-col-header {
  background: rgba(139,92,246,0.08);
  border-bottom: 1px solid rgba(139,92,246,0.15);
}

/* Rows */
.vs-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.55;
  transition: background 0.18s ease;
}
.vs-row + .vs-row {
  border-top: 1px solid var(--line);
}
.vs-row-trad {
  color: var(--ink-3);
}
.vs-row-trad + .vs-row-trad {
  border-top: 1px solid var(--line);
}
.vs-row-ai {
  color: var(--ink);
  font-weight: 500;
}
.vs-row-ai + .vs-row-ai {
  border-top: 1px solid rgba(139,92,246,0.1);
}
.vs-row-ai:hover {
  background: rgba(139,92,246,0.05);
}
.vs-row-trad:hover {
  background: rgba(0,0,0,0.02);
}

/* Icons */
.vs-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.vs-icon-x {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
}
.vs-icon-check {
  background: rgba(139,92,246,0.12);
  color: var(--accent);
}

/* VS divider */
.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vs-divider::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.25) 20%, rgba(139,92,246,0.25) 80%, transparent);
}
.vs-divider span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 4px 7px;
  font-family: var(--mono);
}
