/**
 * C1「Token 市场」模板 — 浅色底，与 V1 的柔光渐变营销风区分。
 * 定位：AI 大模型 Token 转售 / 聚合计费 / 统一计量。
 * 视觉：浅灰白底、细网格、琥珀计价强调、等宽 API、偏「结算台/终端」结构（非 V1 大 Hero 渐变）。
 */

@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --tp-c1-bg: #f4f6f9;
  --tp-c1-surface: #ffffff;
  --tp-c1-elevated: #f1f5f9;
  --tp-c1-border: rgba(15, 23, 42, 0.1);
  --tp-c1-border-soft: #e2e8f0;
  --tp-c1-text: #0f172a;
  --tp-c1-muted: #64748b;
  --tp-c1-amber: #d97706;
  --tp-c1-amber-bright: #f59e0b;
  --tp-c1-amber-dim: #b45309;
  --tp-c1-teal: #0d9488;
  --tp-c1-teal-soft: #14b8a6;
  --tp-c1-grid: rgba(15, 23, 42, 0.035);
}

body {
  background: var(--tp-c1-bg);
  color: var(--tp-c1-text);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

.tp-c1-market.landing-wrap {
  background:
    linear-gradient(165deg, rgba(255, 251, 235, 0.65) 0%, transparent 42%),
    linear-gradient(135deg, transparent 0%, rgba(13, 148, 136, 0.04) 45%, transparent 72%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, var(--tp-c1-grid) 40px, var(--tp-c1-grid) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, var(--tp-c1-grid) 40px, var(--tp-c1-grid) 41px),
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(245, 158, 11, 0.07), transparent 52%),
    var(--tp-c1-bg);
  min-height: 100vh;
}

/* —— 顶栏：整条条栏极淡浅色底 —— */
.landing-header.c1-header {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.48) 0%, rgba(255, 255, 255, 0.82) 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* 与 V1 一致：主导航相对 Logo 左对齐，与 Logo 右侧 80px 间距；右侧控件贴右 */
.landing-header.c1-header .landing-header-inner {
  justify-content: flex-start;
  gap: 0;
}

.landing-header.c1-header .landing-nav {
  justify-content: flex-start;
  margin-left: 80px;
  flex: 1;
  min-width: 0;
}

.landing-header.c1-header .landing-header-right {
  margin-left: auto;
}

@media (max-width: 768px) {
  .landing-header.c1-header .landing-nav {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .landing-header.c1-header .landing-header-inner {
    gap: 14px;
  }
}

.landing-header.c1-header .landing-nav-link {
  color: #475569;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.landing-header.c1-header .landing-nav-link:hover,
.landing-header.c1-header .landing-nav-link.active {
  color: var(--tp-c1-amber-bright);
}

.landing-header.c1-header .tp-lang-menu {
  z-index: 1051;
}

.c1-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-c1-muted);
  text-decoration: none;
  padding: 8px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.c1-nav-login__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: currentColor;
}

.c1-nav-login__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.c1-nav-login:hover {
  color: var(--tp-c1-teal);
}

.c1-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.landing-header.c1-header .landing-cta-header.c1-nav-register {
  background: linear-gradient(180deg, #fbbf24 0%, var(--tp-c1-amber-bright) 100%);
  color: #1c1917;
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.22);
}

.landing-header.c1-header .landing-cta-header.c1-nav-register:hover {
  background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 100%);
  color: #1c1917;
}

.landing-header.c1-header .landing-cta-arrow {
  display: none;
}

.landing-header.c1-header .landing-ui-switch {
  background: var(--tp-c1-elevated);
  border: 1px solid var(--tp-c1-border-soft);
}

.landing-header.c1-header .landing-ui-switch a {
  color: var(--tp-c1-muted);
}

.landing-header.c1-header .landing-ui-switch a.is-active {
  background: #fff;
  color: var(--tp-c1-amber);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.landing-header.c1-header .landing-nav-dropdown {
  background: #fff;
  border: 1px solid var(--tp-c1-border-soft);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.landing-header.c1-header .landing-dropdown-title {
  color: var(--tp-c1-text);
}

.landing-header.c1-header .landing-dropdown-subtitle {
  color: var(--tp-c1-muted);
}

/* —— Hero —— */
.tp-c1-hero {
  position: relative;
  padding: clamp(32px, 6vw, 72px) 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.tp-c1-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 960px) {
  .tp-c1-hero-grid {
    grid-template-columns: 1fr;
  }
}

.tp-c1-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-c1-teal);
  margin: 0 0 14px;
}

.tp-c1-h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--tp-c1-text);
}

.tp-c1-h1-line {
  display: block;
}

.tp-c1-h1-accent {
  color: var(--tp-c1-amber-bright);
}

.tp-c1-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--tp-c1-muted);
  max-width: 52ch;
}

.tp-c1-terminal {
  border: 1px solid var(--tp-c1-border-soft);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--tp-c1-surface);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.tp-c1-terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--tp-c1-elevated);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-c1-muted);
  border-bottom: 1px solid var(--tp-c1-border-soft);
}

.tp-c1-terminal-bar::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tp-c1-amber-bright);
  opacity: 0.9;
}

.tp-c1-terminal-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 8px;
  padding: 14px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.tp-c1-terminal-body code {
  font-family: inherit;
  color: #475569;
  background: none;
}

.tp-c1-path {
  color: var(--tp-c1-teal);
  font-weight: 600;
}

.tp-c1-endpoint-copy {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--tp-c1-border-soft);
  border-radius: 6px;
  background: var(--tp-c1-elevated);
  color: var(--tp-c1-muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.tp-c1-endpoint-copy:hover {
  color: var(--tp-c1-amber-bright);
  border-color: rgba(245, 158, 11, 0.45);
  background: #fffbeb;
}

.tp-c1-endpoint-copy.is-copied {
  color: var(--tp-c1-teal);
  border-color: rgba(13, 148, 136, 0.35);
  background: #f0fdfa;
}

.tp-c1-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tp-c1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.tp-c1-btn--primary {
  background: linear-gradient(180deg, #fbbf24 0%, var(--tp-c1-amber-bright) 100%);
  color: #1c1917;
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.22);
}

.tp-c1-btn--primary:hover {
  background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 100%);
  color: #1c1917;
  transform: translateY(-1px);
}

.tp-c1-btn--ghost {
  background: var(--tp-c1-surface);
  color: var(--tp-c1-text);
  border: 1px solid var(--tp-c1-border-soft);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.tp-c1-btn--ghost:hover {
  border-color: rgba(13, 148, 136, 0.35);
  color: var(--tp-c1-teal);
  background: #f0fdfa;
}

.tp-c1-play {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tp-c1-panel {
  border: 1px solid var(--tp-c1-border-soft);
  border-radius: 10px;
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.tp-c1-panel-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-c1-amber);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tp-c1-border-soft);
}

.tp-c1-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-c1-panel li {
  position: relative;
  padding: 10px 0 10px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--tp-c1-muted);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.tp-c1-panel li:last-child {
  border-bottom: none;
}

.tp-c1-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--tp-c1-teal-soft);
  border-radius: 1px;
}

.tp-c1-meter {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--tp-c1-border-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--tp-c1-muted);
  line-height: 1.6;
}

.tp-c1-meter strong {
  color: var(--tp-c1-amber);
  font-weight: 600;
}

.tp-c1-vendors {
  padding: 28px 24px 36px;
  border-top: 1px solid var(--tp-c1-border-soft);
  border-bottom: 1px solid var(--tp-c1-border-soft);
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
}

.tp-c1-vendors-head {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tp-c1-muted);
  margin: 0 0 18px;
}

.tp-c1-vendors-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
}

.tp-c1-vendors-row img {
  height: 26px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(0.85);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.tp-c1-vendors-row img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.tp-c1-vendors-more {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--tp-c1-amber);
  padding: 6px 12px;
  border: 1px solid var(--tp-c1-border-soft);
  border-radius: 4px;
  background: #fff;
}

.tp-c1-market .landing-section {
  background: transparent;
}

.tp-c1-market .landing-models-head .landing-tag {
  border-color: var(--tp-c1-border-soft);
  color: var(--tp-c1-teal);
  background: rgba(13, 148, 136, 0.06);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.tp-c1-market .landing-models-title,
.tp-c1-market .landing-faq-title,
.tp-c1-market .landing-platform-title {
  color: var(--tp-c1-text);
}

.tp-c1-market .landing-models-title .landing-gradient-text {
  background: none;
  -webkit-text-fill-color: var(--tp-c1-amber-bright);
  color: var(--tp-c1-amber-bright);
}

.tp-c1-market .landing-faq-desc,
.tp-c1-market .landing-hero-sub {
  color: var(--tp-c1-muted);
}

.tp-c1-market .landing-search-input {
  background: #fff;
  border: 1px solid var(--tp-c1-border-soft);
  color: var(--tp-c1-text);
  border-radius: 6px;
}

.tp-c1-market .landing-chip {
  background: #fff;
  border: 1px solid var(--tp-c1-border-soft);
  color: #475569;
  border-radius: 4px;
}

.tp-c1-market .landing-chip.active {
  border-color: rgba(245, 158, 11, 0.45);
  color: var(--tp-c1-amber);
  background: #fffbeb;
}

.tp-c1-market .landing-model-card {
  background: #fff;
  border: 1px solid var(--tp-c1-border-soft);
  border-left: 3px solid var(--tp-c1-amber-bright);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.tp-c1-market .landing-model-name {
  color: var(--tp-c1-text);
}

.tp-c1-market .landing-model-tag {
  background: rgba(245, 158, 11, 0.12);
  color: var(--tp-c1-amber-dim);
  border-radius: 3px;
}

.tp-c1-market .landing-banner-cta {
  background: linear-gradient(135deg, #fffbeb 0%, #f0fdfa 100%);
  border: 1px solid #fde68a;
  border-radius: 8px;
}

.tp-c1-market .landing-banner-cta-title {
  color: var(--tp-c1-text);
}

.tp-c1-market .landing-banner-cta-sub {
  color: var(--tp-c1-muted);
}

.tp-c1-market .landing-btn-dark {
  background: linear-gradient(180deg, #fbbf24 0%, var(--tp-c1-amber-bright) 100%);
  color: #1c1917;
  border-radius: 6px;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

/* 悬停与顶栏「免费试用」一致：浅琥珀渐变 + 深字 */
.tp-c1-market .landing-btn-dark:hover:not(:disabled):not([disabled]),
.tp-c1-market .landing-btn-dark:focus-visible:not(:disabled):not([disabled]) {
  background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 100%) !important;
  color: #1c1917 !important;
  border-color: rgba(217, 119, 6, 0.35) !important;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.22);
}

.tp-c1-market .landing-footer {
  background: #f8fafc;
  border-top: 1px solid var(--tp-c1-border-soft);
}

.tp-c1-market .landing-footer a {
  color: #475569;
}

.tp-c1-market .landing-footer a:hover {
  color: var(--tp-c1-teal);
}

.tp-c1-market .landing-footer-disclaimer {
  color: var(--tp-c1-muted);
}

.tp-c1-market .landing-pricing-hero,
.tp-c1-market .service-hero {
  background: #fff;
  border-bottom: 1px solid var(--tp-c1-border-soft);
}

.tp-c1-market .landing-pricing-hero-title,
.tp-c1-market .service-hero-title {
  color: var(--tp-c1-text);
}

.tp-c1-market .landing-pricing-hero-sub,
.tp-c1-market .service-hero-sub {
  color: var(--tp-c1-muted);
}

/* ========== C1 Contact：鲜艳频道（与全站浅灰底区分） ========== */
.tp-c1-market.landing-wrap--contact {
  background: linear-gradient(165deg, #fffbeb 0%, #fce7f3 28%, #e0f2fe 58%, #ecfccb 100%) !important;
}

.tp-c1-market.landing-wrap--contact .contact-main {
  padding: 28px 16px 44px;
}

.tp-c1-market.landing-wrap--contact .contact-hero {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow:
    0 24px 80px rgba(236, 72, 153, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  background:
    radial-gradient(ellipse 100% 90% at 0% 0%, rgba(251, 113, 133, 0.55), transparent 55%),
    radial-gradient(ellipse 80% 70% at 100% 10%, rgba(34, 211, 238, 0.5), transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(250, 204, 21, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(167, 139, 250, 0.4), transparent 45%),
    linear-gradient(145deg, #1e1b4b 0%, #4c1d95 38%, #0e7490 72%, #134e4a 100%);
}

.tp-c1-market.landing-wrap--contact .contact-hero::before {
  background:
    radial-gradient(circle at 20% 80%, rgba(253, 224, 71, 0.25), transparent 40%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.35));
}

.tp-c1-market.landing-wrap--contact .contact-hero-overlay {
  background-image:
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 14px);
  opacity: 0.85;
}

.tp-c1-market.landing-wrap--contact .tp-c1-contact-line1 {
  display: block;
  color: #ffffff;
  text-shadow:
    0 0 40px rgba(251, 113, 133, 0.65),
    0 2px 16px rgba(15, 23, 42, 0.35);
}

.tp-c1-market.landing-wrap--contact .tp-c1-contact-line2 {
  display: block;
  margin-top: 0.12em;
  color: #fde047;
  background: linear-gradient(100deg, #fde047 0%, #fb7185 35%, #a78bfa 65%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .tp-c1-market.landing-wrap--contact .tp-c1-contact-line2 {
    -webkit-text-fill-color: unset;
    color: #fde047;
    background: none;
    filter: none;
  }
}

.tp-c1-market.landing-wrap--contact .contact-email {
  margin-top: 36px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-c1-market.landing-wrap--contact .contact-email:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 28px rgba(251, 113, 133, 0.35);
  transform: translateY(-2px);
}

.tp-c1-market.landing-wrap--contact .contact-email-icon {
  font-size: 16px;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
}

.tp-c1-market.landing-wrap--contact .contact-form-wrap {
  border-radius: 22px;
  padding: 28px 24px 24px;
  border: 3px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4, #84cc16);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 20px 50px rgba(79, 70, 229, 0.12),
    0 0 60px rgba(236, 72, 153, 0.08);
}

.tp-c1-market.landing-wrap--contact .contact-field span {
  color: #334155;
  font-weight: 600;
}

.tp-c1-market.landing-wrap--contact .contact-field em {
  color: #e11d48;
}

.tp-c1-market.landing-wrap--contact .contact-field input,
.tp-c1-market.landing-wrap--contact .contact-field textarea {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: none;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
  color: #0f172a;
  padding: 12px 14px;
}

.tp-c1-market.landing-wrap--contact .contact-field input:focus,
.tp-c1-market.landing-wrap--contact .contact-field textarea:focus {
  box-shadow:
    inset 0 0 0 2px transparent,
    0 0 0 3px rgba(236, 72, 153, 0.35),
    0 0 0 6px rgba(34, 211, 238, 0.15);
  outline: none;
}

.tp-c1-market.landing-wrap--contact .contact-required {
  color: #64748b;
}

.tp-c1-market.landing-wrap--contact .contact-submit-btn {
  min-width: 180px;
  border-radius: 12px;
  border: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(120deg, #ec4899 0%, #f97316 40%, #eab308 100%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(236, 72, 153, 0.45);
}

.tp-c1-market.landing-wrap--contact .contact-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.5);
}

@media (max-width: 900px) {
  .tp-c1-market.landing-wrap--contact .contact-hero-inner {
    padding: 40px 28px 36px;
  }
}

.tp-c1-market .model-openai-main,
.tp-c1-market [class*="model-"][class*="-main"] {
  color: var(--tp-c1-muted);
}

.tp-c1-market .model-openai-page-title,
.tp-c1-market .model-openai-breadcrumb a,
.tp-c1-market .model-openai-bc-current {
  color: var(--tp-c1-text);
}

.tp-c1-market .model-openai-intro-card,
.tp-c1-market .model-openai-featured-inner,
.tp-c1-market .model-openai-table-wrap {
  background: #fff;
  border: 1px solid var(--tp-c1-border-soft);
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

.tp-c1-market .model-openai-featured-title,
.tp-c1-market .model-openai-intro-text {
  color: var(--tp-c1-muted);
}

.tp-c1-market .landing-btn-dark.model-openai-featured-cta {
  background: linear-gradient(180deg, #fbbf24 0%, var(--tp-c1-amber-bright) 100%);
  color: #1c1917;
}

@media (max-width: 720px) {
  .tp-c1-terminal-body {
    font-size: 12px;
  }

  .tp-c1-endpoint-copy {
    margin-left: 0;
    width: 100%;
    margin-top: 8px;
  }
}

/* C1：outline 悬停与顶栏 CTA 一致（琥珀浅底 + 深字），关闭 landing 深色底 + ::before 动画叠层 */
.tp-c1-market .landing-btn.landing-btn-outline {
  -webkit-text-fill-color: currentColor;
}

.tp-c1-market .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled]),
.tp-c1-market .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled]) {
  background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 100%) !important;
  border-color: rgba(217, 119, 6, 0.35) !important;
  color: #1c1917 !important;
  -webkit-text-fill-color: #1c1917 !important;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.22);
}

.tp-c1-market .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled]) .landing-btn-arrow,
.tp-c1-market .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled]) .landing-btn-arrow {
  stroke: #1c1917;
}

.tp-c1-market .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled])::before,
.tp-c1-market .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled])::before {
  opacity: 0 !important;
  animation: none !important;
  transform: none !important;
}

.landing-wrap.tp-c1-market .landing-models .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled]),
.landing-wrap.tp-c1-market .landing-models .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled]),
.landing-wrap.tp-c1-market .landing-models-actions .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled]),
.landing-wrap.tp-c1-market .landing-models-actions .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled]),
.landing-wrap.tp-c1-market .model-openai-models .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled]),
.landing-wrap.tp-c1-market .model-openai-models .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled]) {
  background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 100%) !important;
  border-color: rgba(217, 119, 6, 0.35) !important;
  color: #1c1917 !important;
  -webkit-text-fill-color: #1c1917 !important;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.22);
}

.landing-wrap.tp-c1-market .landing-models .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled])::before,
.landing-wrap.tp-c1-market .landing-models .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled])::before,
.landing-wrap.tp-c1-market .landing-models-actions .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled])::before,
.landing-wrap.tp-c1-market .landing-models-actions .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled])::before,
.landing-wrap.tp-c1-market .model-openai-models .landing-btn.landing-btn-outline:hover:not(:disabled):not([disabled])::before,
.landing-wrap.tp-c1-market .model-openai-models .landing-btn.landing-btn-outline:focus-visible:not(:disabled):not([disabled])::before {
  opacity: 0 !important;
  animation: none !important;
  transform: none !important;
}

/* 定价 Scale 卡 CTA：悬停与其它主按钮统一 */
.tp-c1-market .landing-pricing-card--scale .landing-pricing-cta--scale:hover:not(:disabled):not([disabled]),
.tp-c1-market .landing-pricing-card--scale .landing-pricing-cta--scale:focus-visible:not(:disabled):not([disabled]) {
  background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 100%) !important;
  color: #1c1917 !important;
  border: 1px solid rgba(217, 119, 6, 0.35) !important;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.22);
  transform: none;
}
