:root {
  --hs-bg: #f6f8fb;
  --hs-surface: rgba(255, 255, 255, 0.86);
  --hs-surface-strong: #ffffff;
  --hs-line: rgba(15, 23, 42, 0.08);
  --hs-text: #0f172a;
  --hs-muted: #5b6472;
  --hs-primary: #0f766e;
  --hs-primary-2: #14b8a6;
  --hs-accent: #2563eb;
  --hs-warm: #c45100;
  --hs-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --hs-soft-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

:root.dark {
  --hs-bg: #020617;
  --hs-surface: rgba(15, 23, 42, 0.78);
  --hs-surface-strong: #0f172a;
  --hs-line: rgba(148, 163, 184, 0.18);
  --hs-text: #f8fafc;
  --hs-muted: #a9b4c5;
  --hs-primary: #2dd4bf;
  --hs-primary-2: #14b8a6;
  --hs-accent: #60a5fa;
  --hs-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --hs-soft-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

html {
  background: var(--hs-bg);
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif !important;
  letter-spacing: 0 !important;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(20, 184, 166, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.13), transparent 32rem),
    linear-gradient(135deg, #fbfcff 0%, #f3f7f8 48%, #eef4f8 100%) !important;
}

.dark body,
body:has(.dark) {
  background:
    radial-gradient(circle at 8% 8%, rgba(20, 184, 166, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 4%, rgba(59, 130, 246, 0.16), transparent 34rem),
    linear-gradient(135deg, #020617 0%, #071115 52%, #08111f 100%) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 80%);
}

:root.dark body::before {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
}

body.hs-home header,
body.hs-page nav.fixed {
  position: sticky !important;
  top: 0;
  z-index: 50 !important;
  padding: 14px 24px !important;
  background: rgba(246, 248, 251, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(22px);
}

body.hs-dark.hs-home header,
body.hs-dark.hs-page nav.fixed {
  background: rgba(2, 6, 23, 0.72) !important;
  border-bottom-color: rgba(148, 163, 184, 0.14);
}

body.hs-home header nav,
body.hs-page nav.fixed > div {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
  min-height: 54px !important;
}

body.hs-home header nav > div:first-child,
body.hs-page nav.fixed > div > a:first-child {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px;
  flex: 0 0 auto !important;
}

body.hs-page nav.fixed > div > a:first-child {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hs-brand-name {
  font-weight: 900;
  font-size: 22px;
  color: var(--hs-primary);
}

body.hs-home header img[alt="Logo"],
body.hs-page nav.fixed img[alt="Logo"] {
  border-radius: 10px !important;
}

.hs-nav-links {
  display: none;
  align-items: center;
  gap: 30px;
  flex: 1 1 auto;
  justify-content: flex-start;
  color: rgba(15, 23, 42, 0.7);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hs-nav-links a {
  transition: color 0.2s ease;
}

.hs-nav-links a:hover {
  color: var(--hs-primary);
}

body.hs-page nav.fixed > div > div:not(.hs-nav-links):not(.hs-controls),
body.hs-home header nav > div:not(:first-child):not(.hs-nav-links):not(.hs-controls),
body.hs-home header nav > div:last-child:not(.hs-controls) {
  display: none !important;
}

.hs-controls {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  white-space: nowrap;
}

.hs-menu-button,
.hs-mobile-menu {
  display: none;
}

.hs-menu-button {
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--hs-line);
  border-radius: 999px;
  background: var(--hs-surface);
  color: var(--hs-text);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
}

.hs-menu-icon {
  width: 19px;
  height: 19px;
}

.hs-mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 100;
  min-width: 210px;
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  background: var(--hs-surface-strong);
  box-shadow: var(--hs-shadow);
  padding: 8px;
}

.hs-mobile-menu a,
.hs-mobile-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--hs-text);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 900;
}

.hs-mobile-menu a:hover,
.hs-mobile-menu button:hover {
  background: rgba(20, 184, 166, 0.1);
  color: var(--hs-primary);
}

.hs-nav-spacer {
  display: none;
}

.hs-pill-button,
.hs-icon-button,
.hs-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hs-line);
  background: var(--hs-surface);
  color: var(--hs-text);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hs-pill-button {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
}

.hs-icon-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 19px;
}

.hs-login-button {
  min-height: 42px;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--hs-primary-2), #0f766e);
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.24);
}

.hs-pill-button:hover,
.hs-icon-button:hover,
.hs-login-button:hover {
  transform: translateY(-1px);
}

@media (min-width: 821px) {
  .hs-nav-links {
    display: flex;
  }
}

@media (max-width: 820px) {
  .hs-nav-links,
  .hs-desktop-control {
    display: none !important;
  }

  .hs-menu-button {
    display: inline-flex;
  }

  .hs-controls.hs-menu-open .hs-mobile-menu {
    display: block;
  }
}

body.hs-home header a[href="/login"],
body.hs-auth a[href="/login"],
body.hs-home .btn-primary,
body.hs-auth .btn-primary {
  min-height: 42px;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--hs-primary-2), var(--hs-primary)) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.26) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}

body.hs-home header a[href="/login"] {
  padding: 9px 20px !important;
  font-size: 14px !important;
}

body.hs-home header a[href="/login"]:hover,
body.hs-home .btn-primary:hover,
body.hs-auth .btn-primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.32) !important;
}

body.hs-home main {
  padding-top: 86px !important;
  padding-bottom: 44px !important;
}

body.hs-home main > div {
  max-width: 1200px !important;
}

body.hs-home main > div > div:first-child {
  position: relative;
  min-height: 540px;
  padding: 28px 0 72px;
  align-items: center !important;
}

body.hs-home main > div > div:first-child::before {
  content: attr(data-hs-kicker);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--hs-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

body.hs-home h1,
body.hs-auth h1,
.hs-display {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif !important;
  letter-spacing: 0 !important;
}

body.hs-home h1 {
  max-width: 820px;
  margin-top: 34px !important;
  margin-bottom: 24px !important;
  color: var(--hs-text) !important;
  font-size: clamp(52px, 6vw, 82px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
}

body.hs-home h1::after {
  content: attr(data-hs-title);
  display: block;
  margin-top: 6px;
  color: var(--hs-primary);
}

body.hs-home h1 + p {
  max-width: 690px;
  margin-bottom: 30px !important;
  color: var(--hs-muted) !important;
  font-size: 18px !important;
  line-height: 1.78 !important;
}

body.hs-home h1 + p::after {
  display: block;
  content: attr(data-hs-desc);
  font-size: 18px !important;
  line-height: 1.78 !important;
}

body.hs-home h1 + p {
  font-size: 0 !important;
}

.hs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

body.hs-home .hs-hero-actions .hs-hero-primary {
  min-height: 58px;
  border-radius: 12px !important;
  padding: 0 30px !important;
  background: linear-gradient(135deg, var(--hs-primary-2), var(--hs-primary)) !important;
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.28) !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 900 !important;
}

body.hs-home .hs-hero-actions .hs-hero-primary::after {
  content: " →";
}

.hs-hero-secondary,
.hs-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 2px solid var(--hs-primary);
  border-radius: 12px;
  background: transparent;
  color: var(--hs-primary) !important;
  padding: 0 30px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hs-hero-secondary:hover,
.hs-cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(20, 184, 166, 0.08);
}

body.hs-home .terminal-container {
  transform: perspective(1300px) rotateY(-8deg) rotateX(4deg);
}

body.hs-home .terminal-window {
  width: min(480px, 88vw) !important;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(8, 13, 26, 0.96)) !important;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.32) !important;
}

body.hs-home .terminal-window::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px 34px;
  height: 58px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.22);
  filter: blur(26px);
}

body.hs-home .terminal-body {
  font-size: 15px !important;
  line-height: 2 !important;
}

body.hs-home main > div > div:nth-child(2) {
  margin-top: -30px !important;
  margin-bottom: 34px !important;
}

body.hs-home main > div > div:nth-child(2) > div,
body.hs-home main > div > div:nth-child(3) > div,
body.hs-home main > div > div:nth-child(5) > div {
  border: 1px solid var(--hs-line) !important;
  border-radius: 20px !important;
  background: var(--hs-surface) !important;
  box-shadow: var(--hs-soft-shadow) !important;
  backdrop-filter: blur(20px);
}

body.hs-home main > div > div:nth-child(2) > div {
  padding: 12px 18px !important;
}

body.hs-home main > div > div:nth-child(3) {
  gap: 18px !important;
}

body.hs-home main > div > div:nth-child(3) > div {
  padding: 28px !important;
  border-radius: 24px !important;
}

body.hs-home main > div > div:nth-child(3) h3 {
  font-size: 22px !important;
}

body.hs-home main > div > div:nth-child(3) p {
  font-size: 15px !important;
  line-height: 1.8 !important;
}

body.hs-home main > div > div:nth-child(4) {
  display: none !important;
}

body.hs-home main > div > div:nth-child(4)::before,
.hs-section-kicker {
  content: "Model Network";
  display: block;
  margin-bottom: 12px;
  color: var(--hs-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

body.hs-home main > div > div:nth-child(4) h2 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif !important;
  font-size: clamp(30px, 3vw, 48px) !important;
  font-weight: 900 !important;
}

body.hs-home main > div > div:nth-child(5) {
  display: none !important;
}

body.hs-home main > div > div:nth-child(5) > div {
  min-height: 82px;
  padding: 18px !important;
}

.hs-extra {
  margin-top: 92px;
}

.hs-section {
  margin-top: 68px;
}

.hs-section-head {
  margin-bottom: 28px;
}

.hs-section-head h2 {
  color: var(--hs-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.16;
}

.hs-section-head p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--hs-muted);
  font-size: 16px;
  line-height: 1.7;
}

.hs-section-head.hs-centered {
  text-align: center;
}

.hs-section-head.hs-centered p {
  margin-left: auto;
  margin-right: auto;
}

.hs-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hs-card,
.hs-price-card,
.hs-faq-item,
.hs-cta,
.hs-download-panel,
.hs-download-empty {
  border: 1px solid var(--hs-line);
  border-radius: 24px;
  background: var(--hs-surface);
  box-shadow: var(--hs-soft-shadow);
  backdrop-filter: blur(22px);
}

.hs-card {
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow);
}

.hs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(37, 99, 235, 0.12));
  color: var(--hs-primary);
  font-weight: 900;
}

.hs-svg-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.hs-product-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hs-card h3,
.hs-price-card h3 {
  color: var(--hs-text);
  font-size: 21px;
  font-weight: 900;
}

.hs-card p,
.hs-price-card p,
.hs-faq-item p {
  margin-top: 12px;
  color: var(--hs-muted);
  line-height: 1.72;
}

.hs-ecosystem-card {
  min-height: 344px;
  display: flex;
  flex-direction: column;
}

.hs-ecosystem-card .hs-icon,
.hs-value-card .hs-icon {
  background: rgba(20, 184, 166, 0.1);
  color: var(--hs-primary);
  font-size: 24px;
}

.hs-dark .hs-ecosystem-card .hs-icon,
.hs-dark .hs-value-card .hs-icon {
  background: rgba(45, 212, 191, 0.1);
  color: var(--hs-primary);
}

.hs-ecosystem-card strong {
  margin-top: auto;
  color: var(--hs-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
}

.hs-dark .hs-ecosystem-card strong {
  color: var(--hs-primary);
}

.hs-pay-grid,
.hs-recharge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hs-recharge-grid {
  gap: 12px;
  border: 1px solid var(--hs-line);
  border-radius: 20px;
  background: var(--hs-surface);
  padding: 22px;
  box-shadow: var(--hs-soft-shadow);
}

.hs-recharge-card {
  display: grid;
  place-items: center;
  min-height: 106px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 16px;
  text-align: center;
}

.hs-dark .hs-recharge-card {
  background: rgba(15, 23, 42, 0.46);
}

.hs-recharge-card.featured {
  border: 2px solid var(--hs-primary-2);
  background: rgba(20, 184, 166, 0.09);
}

.hs-recharge-card span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.13);
  color: #d97706;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.hs-recharge-card strong {
  margin-top: 8px;
  color: var(--hs-text);
  font-size: 22px;
  font-weight: 900;
}

.hs-recharge-card p {
  margin-top: 6px;
  color: var(--hs-muted);
  font-size: 14px;
  font-weight: 700;
}

.hs-pay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 18px;
  background: var(--hs-surface);
  padding: 40px;
  box-shadow: var(--hs-soft-shadow);
}

.hs-pay-card.featured {
  border: 2px solid rgba(15, 118, 110, 0.68);
}

.hs-dark .hs-pay-card.featured {
  border-color: rgba(45, 212, 191, 0.62);
}

.hs-recommend {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--hs-primary-2), var(--hs-primary));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.hs-pay-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hs-text);
  font-size: 21px;
  font-weight: 900;
}

.hs-pay-card h3 .hs-product-icon {
  width: 26px;
  height: 26px;
}

.hs-pay-price {
  margin-top: 22px;
  color: var(--hs-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.hs-pay-card p {
  margin-top: 8px;
  color: var(--hs-muted);
}

.hs-pay-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: auto;
  border-radius: 10px;
  background: #13201d;
  color: #fff;
  font-weight: 900;
}

.hs-pay-card.featured a {
  background: linear-gradient(135deg, var(--hs-primary-2), var(--hs-primary));
}

.hs-dark .hs-pay-card a,
.hs-dark .hs-pay-card.featured a {
  background: linear-gradient(135deg, var(--hs-primary-2), #0f766e);
}

.hs-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.hs-value-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 146px;
  border-radius: 16px;
  background: var(--hs-surface);
  padding: 40px;
  box-shadow: var(--hs-soft-shadow);
}

.hs-value-card .hs-icon {
  margin-bottom: 0;
}

.hs-value-card h3 {
  color: var(--hs-text);
  font-size: 24px;
  font-weight: 900;
}

.hs-value-card p {
  margin-top: 12px;
  color: var(--hs-muted);
  line-height: 1.72;
}

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

.hs-price-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.hs-price-card.featured {
  border-color: rgba(20, 184, 166, 0.28);
  box-shadow: 0 24px 70px rgba(15, 118, 110, 0.16);
}

.hs-badge {
  display: inline-flex;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--hs-primary);
  font-size: 12px;
  font-weight: 900;
}

.hs-price {
  margin-top: 22px;
  color: var(--hs-text);
  font-size: 38px;
  font-weight: 900;
}

.hs-price span {
  font-size: 14px;
  color: var(--hs-muted);
}

.hs-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: var(--hs-muted);
  font-size: 14px;
}

.hs-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--hs-primary);
  font-weight: 900;
}

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

.hs-faq-item {
  padding: 24px;
}

.hs-faq-item h3 {
  color: var(--hs-text);
  font-size: 18px;
  font-weight: 900;
}

.hs-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 38px;
  background:
    radial-gradient(circle at 86% 20%, rgba(20, 184, 166, 0.22), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
}

.hs-cta h2 {
  color: var(--hs-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
}

.hs-cta p {
  margin-top: 12px;
  color: var(--hs-muted);
  line-height: 1.7;
}

.hs-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--hs-primary-2), var(--hs-primary));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.28);
}

.hs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.hs-cta .hs-cta-secondary {
  min-height: 52px;
  border-width: 1px;
  box-shadow: none;
}

.hs-page-main {
  min-height: calc(100vh - 80px);
  padding: 120px 24px 80px !important;
  width: 100%;
  overflow-x: hidden;
}

.hs-virtual-page,
.hs-page-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.hs-page-head {
  margin-bottom: 28px;
}

.hs-page-head h1 {
  color: var(--hs-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.12;
}

.hs-page-head p {
  max-width: 760px;
  margin-top: 14px;
  color: var(--hs-muted);
  font-size: 17px;
  line-height: 1.7;
}

.hs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid var(--hs-line);
  border-radius: 18px;
  background: var(--hs-surface);
  padding: 8px;
  box-shadow: var(--hs-soft-shadow);
}

.hs-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 16px;
}

.hs-tabs button,
.hs-segment button {
  border: 0;
  color: var(--hs-muted);
  font-weight: 800;
  cursor: pointer;
}

.hs-tabs button.active,
.hs-tabs button:hover {
  background: rgba(20, 184, 166, 0.11);
  color: var(--hs-primary);
}

.hs-rule-card {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) minmax(0, 1.2fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px 24px;
  color: var(--hs-muted);
}

.hs-rule-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  color: var(--hs-text);
  white-space: nowrap;
}

.hs-rule-card em {
  justify-self: end;
  color: var(--hs-muted);
  font-style: normal;
  white-space: nowrap;
}

.hs-pricing-card {
  overflow: hidden;
}

.hs-download-panel,
.hs-download-empty {
  padding: 28px;
}

.hs-download-empty h1 {
  color: var(--hs-text);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
}

.hs-download-empty p {
  margin-top: 12px;
  color: var(--hs-muted);
}

.hs-download-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.hs-download-summary h2 {
  color: var(--hs-text);
  font-size: 26px;
  font-weight: 900;
}

.hs-download-summary p,
.hs-download-note {
  margin-top: 10px;
  color: var(--hs-muted);
  line-height: 1.7;
}

.hs-download-summary a,
.hs-download-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hs-primary-2), var(--hs-primary));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 0 16px;
}

.hs-download-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.hs-download-filter {
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  padding: 12px;
}

.hs-dark .hs-download-filter {
  background: rgba(15, 23, 42, 0.54);
}

.hs-download-filter span {
  display: block;
  margin-bottom: 8px;
  color: var(--hs-muted);
  font-size: 13px;
  font-weight: 900;
}

.hs-download-filter div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hs-download-filter button {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--hs-muted);
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}

.hs-download-filter button.active,
.hs-download-filter button:hover {
  background: rgba(20, 184, 166, 0.12);
  color: var(--hs-primary);
}

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

.hs-download-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  background: var(--hs-surface-strong);
  padding: 20px;
  overflow: hidden;
}

.hs-download-card.pending {
  border-style: dashed;
}

.hs-download-card > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
}

.hs-download-badge {
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--hs-primary);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.hs-download-card h3 {
  margin-top: 16px;
  color: var(--hs-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hs-download-card p {
  margin-top: 10px;
  color: var(--hs-muted);
  line-height: 1.65;
}

.hs-download-card dl {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--hs-muted);
  font-size: 13px;
}

.hs-download-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.hs-download-card dt {
  font-weight: 800;
}

.hs-download-card dd {
  color: var(--hs-text);
  font-weight: 900;
}

.hs-download-card a {
  width: 100%;
  margin-top: auto;
}

.hs-download-card.pending a {
  background: #475569;
}

.hs-download-card small {
  display: block;
  margin-top: 12px;
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hs-pricing-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--hs-line);
  padding: 22px;
}

.hs-pricing-head h2 {
  color: var(--hs-text);
  font-size: 24px;
  font-weight: 900;
}

.hs-pricing-head p {
  margin-top: 6px;
  color: var(--hs-muted);
}

.hs-segment {
  display: inline-flex;
  border: 1px solid var(--hs-line);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  padding: 4px;
}

.hs-segment button {
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
}

.hs-segment button.active {
  background: var(--hs-primary);
  color: #fff;
}

.hs-group-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 20px 22px 10px;
}

.hs-group-card {
  appearance: none;
  cursor: pointer;
  text-align: left;
  min-width: 250px;
  border: 1px solid var(--hs-line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.hs-dark .hs-group-card {
  background: rgba(15, 23, 42, 0.52);
}

.hs-group-card.active {
  border-color: rgba(20, 184, 166, 0.48);
  background: rgba(20, 184, 166, 0.1);
}

.hs-group-card strong {
  color: var(--hs-text);
}

.hs-group-card span {
  display: inline-flex;
  margin-left: 8px;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(20, 184, 166, 0.14);
  color: var(--hs-primary);
  font-size: 12px;
  font-weight: 900;
}

.hs-group-card p,
.hs-group-intro {
  margin-top: 10px;
  color: var(--hs-muted);
  font-size: 13px;
}

.hs-group-intro {
  margin: 10px 22px 18px;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(20, 184, 166, 0.08);
}

.hs-table-wrap {
  overflow-x: auto;
  margin: 0 22px 22px;
  border: 1px solid var(--hs-line);
  border-radius: 18px;
}

.hs-price-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--hs-text);
}

.hs-price-table th,
.hs-price-table td {
  border-bottom: 1px solid var(--hs-line);
  padding: 15px 16px;
  text-align: left;
  white-space: nowrap;
}

.hs-price-table th {
  background: rgba(148, 163, 184, 0.1);
  color: var(--hs-muted);
  font-size: 13px;
  font-weight: 900;
}

.hs-price-table td {
  font-size: 14px;
}

.hs-price-table td:not(:first-child) {
  color: var(--hs-primary);
  font-size: 16px;
  font-weight: 900;
}

.hs-price-table small {
  display: block;
  margin-top: 4px;
  color: var(--hs-muted);
  font-size: 11px;
  font-weight: 600;
  text-decoration: line-through;
}

.hs-price-table span {
  color: var(--hs-muted);
  font-size: 11px;
  font-weight: 600;
}

.hs-empty {
  margin: 22px;
  border: 1px dashed var(--hs-line);
  border-radius: 18px;
  padding: 52px 18px;
  color: var(--hs-muted);
  text-align: center;
  font-weight: 800;
}

body.hs-auth > div[id="app"] > div > div[class*="min-h-screen"] {
  background:
    radial-gradient(circle at 18% 12%, rgba(20, 184, 166, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.15), transparent 30rem),
    linear-gradient(135deg, #f8fbff, #eef6f7) !important;
}

body.hs-auth .card-glass {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: var(--hs-shadow) !important;
  backdrop-filter: blur(24px);
}

body.hs-auth .text-gradient {
  background: linear-gradient(135deg, var(--hs-primary), var(--hs-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

body.hs-auth .input {
  min-height: 48px;
  border-radius: 14px !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  background: rgba(248, 250, 252, 0.86) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

body.hs-auth .input:focus {
  border-color: rgba(20, 184, 166, 0.52) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12) !important;
}

body.hs-auth .input-label {
  color: var(--hs-text) !important;
  font-weight: 800 !important;
}

@media (max-width: 1020px) {
  body.hs-home main > div > div:first-child::before {
    left: 50%;
    transform: translateX(-50%);
  }

  body.hs-home .terminal-container {
    transform: none;
  }

  .hs-card-grid,
  .hs-price-grid,
  .hs-pay-grid,
  .hs-recharge-grid,
  .hs-value-grid,
  .hs-download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body.hs-home header {
    padding: 12px 14px !important;
  }

  body.hs-home header nav,
  body.hs-page nav.fixed > div {
    gap: 10px !important;
  }

  .hs-brand-name {
    font-size: 19px;
  }

  body.hs-home main {
    padding: 58px 16px 34px !important;
  }

  body.hs-home h1 {
    font-size: 42px !important;
  }

  body.hs-home main > div > div:first-child {
    min-height: auto;
    padding-bottom: 38px;
  }

  .hs-card-grid,
  .hs-price-grid,
  .hs-pay-grid,
  .hs-recharge-grid,
  .hs-value-grid,
  .hs-download-grid,
  .hs-download-filters,
  .hs-download-summary,
  .hs-faq,
  .hs-cta {
    grid-template-columns: 1fr;
  }

  .hs-cta {
    padding: 28px;
  }

  .hs-hero-actions,
  .hs-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.hs-home .hs-hero-actions .hs-hero-primary,
  .hs-hero-secondary,
  .hs-cta a,
  .hs-cta .hs-cta-secondary {
    width: 100%;
  }

  .hs-page-main {
    padding: 82px 10px 44px !important;
    width: 100vw;
    max-width: 100vw;
  }

  .hs-controls {
    gap: 6px;
  }

  .hs-pill-button {
    padding: 0 10px;
    font-size: 12px;
  }

  .hs-login-button {
    padding: 0 12px;
  }

  .hs-pay-card,
  .hs-value-card {
    padding: 20px 14px;
  }



  .hs-pricing-card,
  .hs-rule-card {
    border-radius: 18px;
  }

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

  .hs-rule-card em {
    justify-self: start;
    white-space: normal;
  }

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