﻿:root {
  color-scheme: light;
  --jt-bg: #ffffff;
  --jt-bg-alt: #f3f6fb;
  --jt-text: #0a1633;
  --jt-text-soft: #5c6478;
  --jt-border-subtle: #dedede;
  /* 参考 Logo 的深蓝 + 浅蓝 */
  --jt-primary: #00558b;
  --jt-primary-soft: rgba(0, 85, 139, 0.08);
  --jt-primary-alt: #1c8ad6;
  /* 新增：更丰富的色彩体系 */
  --jt-accent-blue: #0066cc;
  --jt-accent-teal: #00a8cc;
  --jt-accent-purple: #6c5ce7;
  --jt-accent-green: #00b894;
  --jt-accent-orange: #f39c12;
  --jt-gradient-1: linear-gradient(135deg, #00558b 0%, #1c8ad6 100%);
  --jt-gradient-2: linear-gradient(135deg, #0066cc 0%, #00a8cc 100%);
  --jt-gradient-3: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  --jt-gradient-4: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  --jt-radius-lg: 24px;
  --jt-radius-md: 16px;
  --jt-radius-sm: 999px;
  --jt-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --jt-shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.08);
  --jt-shadow-colored: 0 12px 32px rgba(0, 85, 139, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "SF Pro SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--jt-text);
  background: var(--jt-bg);
}

body {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.jt-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.jt-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.jt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.jt-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.jt-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.jt-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jt-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.jt-nav a {
  position: relative;
  padding: 4px 0;
  color: var(--jt-text-soft);
}

.jt-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--jt-text);
  transition: width 0.18s ease-out;
}

.jt-nav a:hover {
  color: var(--jt-text);
}

.jt-nav a:hover::after {
  width: 100%;
}

.jt-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jt-auth-entry,
.zyt-auth-entry {
  border: 1px solid rgba(19, 120, 242, 0.22);
  border-radius: 999px;
  background: #eef6ff;
  color: #0d65c6;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.jt-auth-entry {
  min-height: 34px;
  padding: 0 14px;
}

.zyt-auth-entry {
  min-height: 36px;
  padding: 0 16px;
}

.jt-auth-entry.is-logged-in,
.zyt-auth-entry.is-logged-in {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #ffffff;
  color: #12233d;
}

.jt-auth-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.jt-auth-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  width: 150px;
  padding: 6px;
  border: 1px solid rgba(15, 42, 76, 0.1);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 42, 76, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.jt-auth-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}

.jt-auth-menu.is-authenticated:hover .jt-auth-dropdown,
.jt-auth-menu.is-authenticated:focus-within .jt-auth-dropdown,
.jt-auth-menu.is-authenticated.is-open .jt-auth-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jt-auth-menu:not(.is-authenticated) .jt-auth-dropdown {
  display: none;
}

.jt-auth-menu-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #15243b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 11px;
  text-align: left;
}

.jt-auth-menu-item:hover,
.jt-auth-menu-item:focus-visible {
  background: #eef6ff;
  color: #0d65c6;
  outline: none;
}

.jt-auth-menu-item.is-danger {
  color: #d33d3d;
}

.jt-auth-menu-item.is-danger:hover,
.jt-auth-menu-item.is-danger:focus-visible {
  background: #fff0f0;
  color: #b92121;
}

.jt-auth-menu-divider {
  display: block;
  height: 1px;
  margin: 5px 4px;
  background: rgba(15, 42, 76, 0.08);
}

.jt-auth-menu-item[data-auth-invite] {
  color: #0d65c6;
}

/* 移动端菜单按钮，桌面端默认隐藏 */
.jt-mobile-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  color: var(--jt-text);
}

.jt-mobile-menu-toggle:hover {
  opacity: 0.7;
}

/* 移动端折叠菜单，默认隐藏 */
.jt-mobile-nav {
  display: none;
  position: fixed;
  top: 64px; /* 与头部高度保持一致 */
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  padding: 16px 20px 24px;
  z-index: 900;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

.jt-mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--jt-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: color 0.2s ease;
}

.jt-mobile-nav a:last-child {
  border-bottom: none;
}

.jt-mobile-nav a:hover {
  color: var(--jt-primary);
}

/* 展开状态 */
.jt-mobile-nav.is-open {
  display: block;
}

.jt-lang-toggle {
  border-radius: var(--jt-radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--jt-text-soft);
  cursor: pointer;
}

.jt-lang-toggle:hover {
  border-color: rgba(0, 0, 0, 0.18);
}

.jt-cta-mini {
  padding: 8px 16px;
  border-radius: var(--jt-radius-sm);
  background: var(--jt-primary);
  color: #ffffff;
  font-size: 13px;
}

.jt-cta-mini:hover {
  background: #003a60;
}

.jt-section {
  padding: 96px 0;
}

#timeline.jt-section {
  padding-top: 64px;
}

.jt-section-alt {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 50%, #ffffff 100%);
  position: relative;
}

.jt-hero {
  padding-top: 120px;
  background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 30%, #f0f7ff 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.jt-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 85, 139, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.jt-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28, 138, 214, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.jt-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.jt-hero-text {
  position: relative;
  z-index: 1;
}

.jt-hero-text h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 8px 0 16px;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jt-hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--jt-text-soft);
  max-width: 34em;
}

.jt-hero-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--jt-text-soft);
}

.jt-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.jt-hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.jt-hero-card {
  width: 100%;
  max-width: 320px;
  border-radius: var(--jt-radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.98) 100%);
  box-shadow: var(--jt-shadow-colored);
  border: 1px solid rgba(0, 85, 139, 0.12);
  overflow: hidden;
  position: relative;
}

.jt-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--jt-gradient-1);
}

.jt-hero-card-header {
  padding: 16px 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jt-text-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.jt-hero-card-body {
  padding: 24px;
  font-size: 14px;
  color: var(--jt-text);
}

.jt-btn {
  border-radius: 980px;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, color 0.12s ease-out;
}

.jt-btn-primary {
  background: var(--jt-gradient-1);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 85, 139, 0.25);
  position: relative;
  overflow: hidden;
}

.jt-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.jt-btn-primary:hover::before {
  left: 100%;
}

.jt-btn-primary:hover {
  background: var(--jt-gradient-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 85, 139, 0.35);
}

.jt-btn-ghost {
  background: transparent;
  color: var(--jt-text);
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.jt-btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.jt-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--jt-primary-alt);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

.jt-lead {
  font-size: 20px;
  margin-top: 12px;
}

.jt-body {
  font-size: 15px;
  color: var(--jt-text-soft);
  line-height: 1.8;
}

.jt-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 72px;
  align-items: flex-start;
}

.jt-list {
  margin: 0 0 16px;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.8;
  list-style: none;
}

.jt-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.jt-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--jt-gradient-1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.jt-list li:nth-child(1)::before {
  background: var(--jt-gradient-1);
}

.jt-list li:nth-child(2)::before {
  background: var(--jt-gradient-2);
}

.jt-list li:nth-child(3)::before {
  background: var(--jt-gradient-3);
}

.jt-list li:nth-child(4)::before {
  background: var(--jt-gradient-4);
}

.jt-grid {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.jt-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jt-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jt-card {
  border-radius: var(--jt-radius-md);
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 24px 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--jt-shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.jt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--jt-gradient-1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.jt-card:nth-child(1)::before {
  background: var(--jt-gradient-1);
}

.jt-card:nth-child(2)::before {
  background: var(--jt-gradient-2);
}

.jt-card:nth-child(3)::before {
  background: var(--jt-gradient-3);
}

.jt-card:nth-child(4)::before {
  background: var(--jt-gradient-4);
}

.jt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 85, 139, 0.12);
  border-color: rgba(0, 85, 139, 0.15);
}

.jt-card:hover::before {
  opacity: 1;
}

.jt-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.jt-card:nth-child(1) h3 {
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jt-card:nth-child(2) h3 {
  background: var(--jt-gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jt-card:nth-child(3) h3 {
  background: var(--jt-gradient-3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jt-card:nth-child(4) h3 {
  background: var(--jt-gradient-4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jt-card p {
  margin: 0;
  font-size: 14px;
  color: var(--jt-text-soft);
  line-height: 1.7;
}

.jt-center {
  text-align: center;
}

.jt-logo-wall {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.jt-logo-placeholder {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 85, 139, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 247, 255, 0.5) 100%);
  font-size: 13px;
  color: var(--jt-text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.jt-logo-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 85, 139, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.jt-logo-placeholder:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 85, 139, 0.1);
  border-color: rgba(0, 85, 139, 0.2);
}

.jt-logo-placeholder:hover::before {
  opacity: 1;
}

.jt-belief {
  background: linear-gradient(135deg, #00558b 0%, #1c8ad6 50%, #0066cc 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.jt-belief::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.jt-belief .jt-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.jt-belief-content {
  max-width: 800px;
  width: 100%;
}

.jt-belief h2 {
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

/* News Link and CTA */
.jt-news-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
}

.jt-news-link:hover {
  color: var(--jt-primary);
}

.jt-news-link::after {
  content: " →";
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-left: 4px;
}

.jt-news-link:hover::after {
  opacity: 1;
}

.jt-news-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
}

/* Jobs Grid */
.jt-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.jt-job-card {
  padding: 32px;
  border-radius: var(--jt-radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 85, 139, 0.08);
  box-shadow: var(--jt-shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jt-job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jt-shadow-colored);
}

.jt-job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 85, 139, 0.08);
}

.jt-job-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jt-job-salary {
  font-size: 16px;
  font-weight: 600;
  color: var(--jt-primary-alt);
  padding: 6px 14px;
  border-radius: var(--jt-radius-sm);
  background: var(--jt-primary-soft);
}

.jt-job-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jt-job-section h4 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--jt-text);
}

.jt-job-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.jt-job-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--jt-text-soft);
  line-height: 1.7;
}

.jt-job-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--jt-primary-alt);
  font-weight: 700;
  font-size: 16px;
}

.jt-job-list li:last-child {
  margin-bottom: 0;
}

.jt-job-apply {
  margin-top: 64px;
  padding: 48px;
  border-radius: var(--jt-radius-lg);
  background: linear-gradient(135deg, rgba(0, 85, 139, 0.05) 0%, rgba(28, 138, 214, 0.03) 100%);
  border: 1px solid rgba(0, 85, 139, 0.1);
  text-align: center;
}

.jt-job-apply-content h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
}

.jt-job-email {
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--jt-primary);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--jt-radius-sm);
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--jt-primary);
  transition: all 0.2s ease;
}

.jt-job-email:hover {
  background: var(--jt-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 85, 139, 0.2);
}

.jt-contact {
  display: flex;
  justify-content: space-between;
  gap: 72px;
}

.jt-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 20px 0 32px;
  background: #f9f9fb;
  font-size: 12px;
  color: var(--jt-text-soft);
}

.jt-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.jt-footer-meta {
  opacity: 0.7;
}

/* About Stats */
.jt-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.jt-stat-item {
  text-align: center;
  padding: 24px;
  border-radius: var(--jt-radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 85, 139, 0.08);
}

.jt-stat-number {
  font-size: 36px;
  font-weight: 700;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.jt-stat-unit {
  font-size: 20px;
  font-weight: 500;
}

.jt-stat-label {
  font-size: 13px;
  color: var(--jt-text-soft);
  margin-top: 8px;
}

/* Timeline */
.jt-timeline {
  margin-top: 24px;
  position: relative;
  padding-left: 120px;
}

#timeline h2 {
  margin-bottom: 0;
}

.jt-timeline::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--jt-gradient-1);
}

.jt-timeline-item {
  position: relative;
  margin-bottom: 56px;
  min-height: 60px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.jt-timeline-item:last-child {
  margin-bottom: 0;
}

/* 去掉圆圈，只保留时间轴线 */
/* .jt-timeline-item::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--jt-gradient-1);
  border: 4px solid var(--jt-bg);
  box-shadow: 0 0 0 2px rgba(0, 85, 139, 0.1);
  z-index: 1;
  transform: translateY(2px);
} */

.jt-timeline-year {
  flex-shrink: 0;
  width: 90px;
  font-size: 20px;
  font-weight: 700;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: right;
  line-height: 1.4;
  padding-right: 20px;
}

.jt-timeline-content {
  flex: 1;
  min-width: 0;
}

.jt-timeline-content h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--jt-text);
  line-height: 1.4;
}

.jt-timeline-content p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--jt-text-soft);
  line-height: 1.7;
}

.jt-timeline-content p:last-child {
  margin-bottom: 0;
}

.jt-timeline-stats {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.jt-timeline-stats li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--jt-text-soft);
  line-height: 1.7;
}

.jt-timeline-stats li:last-child {
  margin-bottom: 0;
}

.jt-timeline-stats li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--jt-primary-alt);
  font-weight: 700;
  font-size: 16px;
}

/* Services Grid */
.jt-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.jt-service-card {
  padding: 24px;
  border-radius: var(--jt-radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 85, 139, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.jt-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 85, 139, 0.12);
}

.jt-service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.jt-service-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--jt-primary-alt);
  opacity: 0.8;
  flex-shrink: 0;
}

.jt-service-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jt-service-card p {
  margin: 0;
  font-size: 14px;
  color: var(--jt-text-soft);
  line-height: 1.6;
}

/* Creators Grid */
.jt-creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.jt-creator-card {
  padding: 32px;
  border-radius: var(--jt-radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.98) 100%);
  border: 1px solid rgba(0, 85, 139, 0.12);
  box-shadow: var(--jt-shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jt-creator-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jt-shadow-colored);
}

.jt-creator-platform {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--jt-radius-sm);
  background: var(--jt-primary-soft);
  color: var(--jt-primary);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.jt-creator-card h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 600;
}

.jt-creator-stats {
  display: flex;
  gap: 24px;
}

.jt-creator-stat {
  flex: 1;
}

.jt-creator-stat-value {
  font-size: 28px;
  font-weight: 700;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.jt-creator-stat-unit {
  font-size: 16px;
  font-weight: 500;
}

.jt-creator-stat-label {
  display: block;
  font-size: 12px;
  color: var(--jt-text-soft);
  margin-top: 4px;
}

/* Logo Items */
.jt-logo-item {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 85, 139, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 247, 255, 0.5) 100%);
  font-size: 15px;
  font-weight: 500;
  color: var(--jt-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 80px;
}

.jt-logo-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.jt-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 85, 139, 0.1);
  border-color: rgba(0, 85, 139, 0.2);
}

.jt-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Cases Grid */
.jt-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.jt-case-card {
  padding: 32px;
  border-radius: var(--jt-radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 85, 139, 0.08);
  box-shadow: var(--jt-shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jt-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jt-shadow-colored);
}

.jt-case-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.jt-case-platform {
  padding: 4px 10px;
  border-radius: var(--jt-radius-sm);
  background: var(--jt-primary-soft);
  color: var(--jt-primary);
  font-size: 11px;
  font-weight: 600;
}

.jt-case-brand {
  padding: 4px 10px;
  border-radius: var(--jt-radius-sm);
  background: rgba(0, 0, 0, 0.04);
  color: var(--jt-text-soft);
  font-size: 11px;
  font-weight: 500;
}

.jt-case-card h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 600;
}

.jt-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 85, 139, 0.08);
}

.jt-case-stat {
  text-align: center;
}

.jt-case-stat-value {
  font-size: 24px;
  font-weight: 700;
  background: var(--jt-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.jt-case-stat-unit {
  font-size: 14px;
  font-weight: 500;
}

.jt-case-stat-label {
  display: block;
  font-size: 11px;
  color: var(--jt-text-soft);
  margin-top: 4px;
}

.jt-case-desc {
  margin: 0;
  font-size: 14px;
  color: var(--jt-text-soft);
  line-height: 1.6;
}

/* Marketing Insights */
.insight-hero {
  padding-bottom: 36px;
}

.insight-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.insight-tabs button {
  min-width: 108px;
  border: 1px solid var(--jt-border-subtle);
  background: #fff;
  color: var(--jt-text-soft);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.insight-tabs button:hover {
  color: var(--jt-primary);
  border-color: rgba(0, 85, 139, 0.28);
  transform: translateY(-1px);
}

.insight-tabs button.active {
  background: var(--jt-gradient-1);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

.insight-panel {
  display: none;
}

.insight-panel.active {
  display: block;
}

.site-insight-panels {
  min-height: 280px;
}

.site-insight-panel-head {
  margin-bottom: 28px;
}

.site-insights-dynamic-section {
  padding-top: 72px;
}

.site-insights-dynamic:empty {
  display: none;
}

.site-insight-card {
  min-height: 220px;
}

.site-insight-card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.site-insight-card--link:hover {
  color: inherit;
  text-decoration: none;
}

.site-insight-card__cover {
  margin: -32px -32px 20px;
  border-radius: var(--jt-radius-lg) var(--jt-radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef4fb;
}

.site-insight-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-insight-card .jt-case-desc {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0;
}

.site-insight-card__cta {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--jt-primary);
}

.insight-article-main {
  padding: 48px 0 96px;
  background: #f8fafc;
  min-height: calc(100vh - 72px);
}

.insight-article-state {
  text-align: center;
  color: var(--jt-text-soft);
  padding: 80px 20px;
}

.insight-article {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 85, 139, 0.08);
  border-radius: 20px;
  padding: 36px 40px 48px;
  box-shadow: var(--jt-shadow-subtle);
}

.insight-article-back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--jt-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.insight-article-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.insight-article-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
}

.insight-article-summary {
  margin: 0 0 24px;
  color: var(--jt-text-soft);
  font-size: 18px;
  line-height: 1.8;
}

.insight-article-cover {
  margin: 0 0 28px;
  border-radius: 16px;
  overflow: hidden;
}

.insight-article-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insight-article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.insight-article-keywords span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--jt-primary-soft);
  color: var(--jt-primary);
  font-size: 12px;
}

.insight-article-body {
  color: var(--jt-text);
  font-size: 16px;
  line-height: 1.9;
}

.insight-article-body h2,
.insight-article-body h3 {
  margin: 32px 0 12px;
  line-height: 1.35;
}

.insight-article-body p {
  margin: 0 0 16px;
}

.insight-article-figure {
  margin: 28px 0;
}

.insight-article-figure img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.insight-article-figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--jt-text-soft);
  line-height: 1.6;
}

.insight-article-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--jt-border-subtle);
  color: var(--jt-text-soft);
  font-size: 14px;
}

.d-none {
  display: none !important;
}

@media (max-width: 768px) {
  .insight-article {
    padding: 24px 20px 32px;
  }

  .site-insight-card__cover {
    margin: -24px -24px 16px;
  }
}

.site-insight-empty {
  border: 1px dashed var(--jt-border-subtle);
  border-radius: 16px;
  padding: 42px 24px;
  color: var(--jt-text-soft);
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

/* Jingxuan AI GEO product page */
.jx-ai-page {
  background: #f8fafc;
}

.jx-ai-hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.jx-ai-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.jx-ai-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  color: #0f172a;
  letter-spacing: 0;
}

.jx-ai-hero-sub {
  max-width: 680px;
  color: #475569;
  font-size: 19px;
  line-height: 1.8;
}

.jx-ai-keywords,
.jx-ai-mini-tags,
.jx-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jx-ai-keywords {
  margin: 22px 0 26px;
}

.jx-ai-keywords span,
.jx-ai-mini-tags span {
  border: 1px solid rgba(0, 85, 139, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #00558b;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.jx-ai-actions-center {
  justify-content: center;
  margin-top: 24px;
}

.jx-ai-product-preview {
  border: 1px solid rgba(0, 85, 139, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  padding: 22px;
}

.jx-ai-preview-head,
.jx-ai-preview-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.jx-ai-preview-head {
  margin-bottom: 16px;
  color: #64748b;
  font-size: 13px;
}

.jx-ai-preview-row {
  grid-template-columns: 1fr auto auto;
  min-height: 58px;
  border-top: 1px solid #e2e8f0;
  color: #0f172a;
}

.jx-ai-preview-row span {
  color: #64748b;
  font-size: 13px;
}

.jx-ai-preview-row em {
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  padding: 4px 8px;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}

.jx-ai-section {
  background: #ffffff;
}

.jx-ai-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.jx-ai-card,
.jx-ai-list-item,
.jx-ai-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.jx-ai-card h3,
.jx-ai-list-item h3,
.jx-ai-faq-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f172a;
}

.jx-ai-card p,
.jx-ai-list-item p,
.jx-ai-faq-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.jx-ai-list,
.jx-ai-faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 28px auto 0;
}

.jx-ai-download {
  background: linear-gradient(135deg, #00558b 0%, #0071e3 100%);
  color: #ffffff;
}

.jx-ai-download .jt-kicker,
.jx-ai-download h2,
.jx-ai-download .jt-body {
  color: #ffffff;
}

/* Jingxuan pricing page */
.jx-pricing-page {
  background: #f3f6fb;
  color: #0a1633;
}

.jx-pricing-hero {
  padding: 76px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #eaf3ff 100%);
}

.jx-pricing-hero h1 {
  margin: 10px auto 16px;
  max-width: 820px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.jx-pricing-hero-sub {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #5c6478;
  font-size: 18px;
  line-height: 1.8;
}

.jx-billing-toggle {
  display: inline-flex;
  padding: 5px;
  border: 1px solid #d8e2f0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.jx-billing-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.jx-billing-toggle button.active {
  background: var(--jt-gradient-1);
  color: #ffffff;
}

.jx-pricing-section {
  padding-top: 34px;
}

.jx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.jx-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid #dce5f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.jx-plan-card.popular {
  border-color: #1c8ad6;
  box-shadow: 0 20px 48px rgba(0, 85, 139, 0.17);
}

.jx-plan-card.recommend {
  border-color: #00a8cc;
}

.jx-plan-card.enterprise {
  background: #fbfdff;
}

.jx-plan-unavailable {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border: 1px solid rgba(234, 88, 12, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.94), rgba(255, 255, 255, 0.96));
  color: #b45309;
  padding: 0 10px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.jx-plan-unavailable::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.jx-plan-unavailable span {
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.jx-plan-tag {
  align-self: flex-start;
  border-radius: 999px;
  background: var(--jt-primary-soft);
  color: var(--jt-primary);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.jx-plan-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.jx-plan-desc {
  min-height: 72px;
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.jx-plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  min-height: 78px;
  margin: 18px 0 6px;
}

.jx-price-origin {
  color: #94a3b8;
  font-weight: 800;
  text-decoration: line-through;
}

.jx-discount-badge {
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.jx-price-main {
  color: #0a1633;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.jx-price-unit {
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.jx-discount-note {
  min-height: 22px;
  margin: 0 0 16px;
  color: #64748b;
  font-size: 13px;
}

.jx-plan-features {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.jx-plan-features li {
  position: relative;
  padding-left: 20px;
  color: #334155;
  line-height: 1.5;
}

.jx-plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1c8ad6;
}

.jx-plan-contact {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  margin: -2px 0 14px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #f8fbff;
  padding: 9px;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.jx-plan-contact:hover,
.jx-plan-contact:focus-visible,
.jx-plan-contact.is-open {
  border-color: #93c5fd;
  box-shadow: 0 12px 26px rgba(28, 138, 214, 0.12);
  transform: translateY(-1px);
}

.jx-plan-contact img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.jx-plan-qr-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 20;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 188px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
  color: #0f172a;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.jx-plan-qr-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.jx-plan-qr-popover img {
  width: 142px;
  height: 142px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.jx-plan-qr-popover strong {
  font-size: 13px;
}

.jx-plan-qr-popover span {
  color: #64748b;
  font-size: 12px;
}

.jx-plan-contact:hover .jx-plan-qr-popover,
.jx-plan-contact:focus-visible .jx-plan-qr-popover,
.jx-plan-contact.is-open .jx-plan-qr-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

@media (max-width: 760px) {
  .jx-plan-qr-popover {
    left: 0;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(220px, calc(100vw - 48px));
    margin: 0 auto;
    transform: translateY(8px) scale(0.96);
  }

  .jx-plan-qr-popover::after {
    left: 28px;
    transform: rotate(45deg);
  }

  .jx-plan-contact:hover .jx-plan-qr-popover,
  .jx-plan-contact:focus-visible .jx-plan-qr-popover,
  .jx-plan-contact.is-open .jx-plan-qr-popover {
    transform: translateY(0) scale(1);
  }
}

.jx-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.jx-plan-btn:hover {
  transform: translateY(-1px);
}

.jx-plan-btn.primary {
  background: var(--jt-gradient-1);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 85, 139, 0.22);
}

.jx-plan-btn.secondary {
  border: 1px solid #cdd8e8;
  background: #ffffff;
  color: #00558b;
}

.jx-section-head {
  text-align: center;
  margin-bottom: 24px;
}

.jx-section-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.jx-section-head p {
  margin: 0;
  color: #64748b;
}

.jx-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid #dce5f2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.jx-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.jx-compare-table th,
.jx-compare-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #e5edf7;
  text-align: left;
  white-space: nowrap;
}

.jx-compare-table th {
  background: #eef4fb;
  color: #334155;
  font-weight: 900;
}

.jx-compare-table td {
  color: #475569;
}

.jx-compare-table .yes {
  color: #059669;
  font-weight: 900;
}

.jx-compare-table .no {
  color: #dc2626;
  font-weight: 900;
}

.jx-limit-section {
  background: #fff;
}

.jx-limit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.jx-limit-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(10, 22, 51, 0.06);
}

.jx-limit-card span {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 85, 139, 0.08);
  color: var(--jt-primary);
  font-size: 13px;
  font-weight: 700;
}

.jx-limit-card h3 {
  margin: 16px 0 10px;
  color: var(--jt-text);
  font-size: 19px;
  line-height: 1.35;
}

.jx-limit-card p {
  margin: 0;
  color: var(--jt-text-soft);
  line-height: 1.75;
  font-size: 15px;
}

.jx-limit-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.jx-growth-placeholder {
  background: #ffffff;
}

.jx-growth-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #dce5f2;
  border-radius: 14px;
  background: linear-gradient(135deg, #00558b 0%, #1c8ad6 100%);
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.jx-growth-inner .jt-kicker,
.jx-growth-inner h2,
.jx-growth-inner p {
  color: #ffffff;
}

.jx-growth-inner h2 {
  margin: 6px 0 10px;
  font-size: 28px;
}

.jx-growth-inner p {
  margin: 0;
  max-width: 760px;
  opacity: 0.9;
  line-height: 1.7;
}

.jx-growth-inner .jt-btn {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.jx-growth-inner .jt-btn.is-ready {
  background: #ffffff;
  color: #00558b;
}

.jx-growth-invite-code {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.jx-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.jx-faq-card {
  border: 1px solid #dce5f2;
  border-radius: 12px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.jx-faq-card h4 {
  margin: 0 0 10px;
  font-size: 17px;
}

.jx-faq-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .jx-ai-hero-grid {
    grid-template-columns: 1fr;
  }

  .jx-pricing-grid,
  .jx-limit-grid,
  .jx-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jx-growth-inner {
    grid-template-columns: 1fr;
  }
}

/* Contact Grid */
.jt-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.jt-contact-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--jt-radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 85, 139, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jt-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--jt-shadow-subtle);
}

.jt-contact-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.jt-contact-item h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.jt-contact-item p {
  margin: 0;
  font-size: 14px;
  color: var(--jt-text-soft);
  line-height: 1.6;
}

.jt-contact-item a {
  color: var(--jt-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.jt-contact-item a:hover {
  color: var(--jt-primary-alt);
  text-decoration: underline;
}

.jt-qr-code {
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jt-qr-code img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.jt-qr-code img:hover {
  transform: scale(1.05);
}

.jt-qr-placeholder {
  width: 120px;
  height: 120px;
  margin: 16px auto 0;
  border-radius: 12px;
  background: rgba(0, 85, 139, 0.05);
  border: 2px dashed rgba(0, 85, 139, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--jt-text-soft);
}

@media (max-width: 960px) {
  .jt-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .jt-hero {
    padding-top: 96px;
  }

  .jt-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .jt-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jt-logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .jt-contact {
    flex-direction: column;
  }

  .jt-jobs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .jt-job-apply {
    padding: 40px 32px;
  }

  .jt-about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .jt-timeline {
    padding-left: 60px;
  }

  .jt-timeline::before {
    left: 40px;
  }

  .jt-timeline-item {
    flex-direction: column;
    gap: 12px;
  }

  .jt-timeline-year {
    width: auto;
    text-align: left;
    padding-right: 0;
    font-size: 18px;
  }

  /* .jt-timeline-item::before {
    left: 30px;
  } */

  .jt-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .jt-creators-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .jt-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jt-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jt-news-content,
  .jt-join-content {
    margin-left: 0;
    text-align: left;
  }

  .jt-belief .jt-container {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .jt-header-inner {
    gap: 12px;
  }

  /* 小屏隐藏桌面导航 */
  .jt-nav {
    display: none;
  }

  /* 小屏显示汉堡按钮 */
  .jt-mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .jt-header-actions {
    gap: 8px;
  }

  .jt-hero-text h1 {
    font-size: 32px;
  }

  .jt-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .jt-grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .jx-pricing-grid,
  .jx-limit-grid,
  .jx-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jx-pricing-hero {
    padding: 54px 0 34px;
  }

  .jx-plan-desc,
  .jx-plan-price {
    min-height: 0;
  }

  .jt-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jt-about-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .jt-timeline {
    padding-left: 40px;
  }

  .jt-timeline::before {
    left: 20px;
  }

  .jt-timeline-item {
    flex-direction: column;
    gap: 12px;
  }

  .jt-timeline-year {
    width: auto;
    text-align: left;
    padding-right: 0;
    font-size: 18px;
  }

  /* .jt-timeline-item::before {
    left: 10px;
  } */

  .jt-timeline-content {
    width: 100%;
  }

  .jt-services-grid,
  .jt-creators-grid,
  .jt-cases-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jt-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .jt-case-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .jt-jobs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .jt-job-card {
    padding: 24px;
  }
  
  .jt-job-apply {
    padding: 32px 24px;
  }

  .jt-news-content,
  .jt-join-content {
    margin-left: 0;
    text-align: left;
  }

  .jt-belief .jt-container {
    justify-content: center;
    text-align: center;
  }
}

/* ── 数据计数动画 ── */
.jt-stat-number,
.jt-creator-stat-value,
.jt-case-stat-value {
  transition: opacity 0.3s ease;
}
.jt-count-up {
  display: inline-block;
}

/* ── 价格页账号弹窗 ── */
.jx-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.jx-auth-modal.is-open {
  display: flex;
}

.jx-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 51, 0.58);
  backdrop-filter: blur(7px);
}

.jx-auth-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1fr);
  width: min(860px, 100%);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  border: 1px solid rgba(207, 219, 236, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(6, 24, 55, 0.32);
}

.jx-auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  color: #718198;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.jx-auth-close:hover {
  background: #f1f6fd;
  color: #0b1b34;
}

.jx-auth-plan {
  position: relative;
  padding: 42px 34px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 82%, rgba(19, 120, 242, 0.16), transparent 30%),
    linear-gradient(145deg, #f8fbff 0%, #eef6ff 100%);
}

.jx-auth-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(19, 120, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 120, 242, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

.jx-auth-plan > * {
  position: relative;
  z-index: 1;
}

.jx-auth-plan-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 72, 120, 0.22);
  border-radius: 8px;
  color: #ff2f68;
  background: #fff1f6;
  font-size: 24px;
}

.jx-auth-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #e72f68;
  background: #fff0f5;
  font-size: 13px;
  font-weight: 800;
}

.jx-auth-plan h2 {
  margin: 0 0 16px;
  color: #06162f;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: 0;
}

.jx-auth-plan h2 span {
  color: #e72f68;
}

.jx-auth-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.jx-auth-price span {
  color: #e72f68;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 0;
}

.jx-auth-price em {
  color: #34445f;
  font-style: normal;
  font-weight: 800;
}

.jx-auth-benefits {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e0ebf7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(43, 92, 158, 0.1);
}

.jx-auth-benefits strong {
  margin-bottom: 2px;
  color: #0d1e38;
  font-size: 14px;
}

.jx-auth-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #31425d;
  font-size: 14px;
}

.jx-auth-benefit i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #1378f2, #10b7c4);
  font-style: normal;
  font-size: 12px;
}

.jx-auth-plan-note {
  margin: 16px 0 0;
  color: #64758c;
  font-size: 13px;
  line-height: 1.7;
}

.jx-auth-panel {
  padding: 50px 36px 24px;
  overflow-y: auto;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.jx-auth-form {
  position: relative;
  display: grid;
  gap: 16px;
}

.jx-auth-panel [hidden] {
  display: none !important;
}

.jx-auth-form label {
  display: grid;
  gap: 8px;
  color: #142540;
  font-size: 14px;
  font-weight: 800;
}

.jx-auth-form input {
  width: 100%;
  height: 46px;
  border: 1px solid #cfdbea;
  border-radius: 8px;
  padding: 0 14px;
  color: #10213d;
  background: #fff;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.jx-auth-form input:focus {
  border-color: #1378f2;
  box-shadow: 0 0 0 3px rgba(19, 120, 242, 0.12);
}

.jx-auth-field-hint {
  margin: -8px 0 0;
  color: #63748b;
  font-size: 12px;
  line-height: 1.6;
}

.jx-auth-scan-toggle,
.jx-auth-password-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #d8e5f4;
  border-radius: 8px;
  color: #0d65c6;
  background: #f6faff;
  font-weight: 900;
  cursor: pointer;
}

.jx-auth-scan-toggle {
  justify-self: end;
  min-height: 34px;
  margin-top: -8px;
  margin-bottom: -4px;
  padding: 0 9px 0 11px;
  font-size: 12px;
}

.jx-auth-scan-toggle i,
.jx-auth-password-toggle i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #1378f2, #10b7c4);
  font-style: normal;
  line-height: 1;
}

.jx-auth-scan-toggle:hover,
.jx-auth-password-toggle:hover {
  border-color: #b8d4f5;
  background: #eef7ff;
}

.jx-auth-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
  color: #53657e !important;
  font-weight: 600 !important;
}

.jx-auth-check input {
  width: 16px;
  height: 16px;
  accent-color: #1378f2;
}

.jx-auth-code-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
}

.jx-auth-code-row button,
.jx-auth-secondary {
  height: 46px;
  border: 1px solid #cfdbea;
  border-radius: 8px;
  color: #0d65c6;
  background: #f8fbff;
  font-weight: 800;
  cursor: pointer;
}

.jx-auth-primary {
  height: 50px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #1378f2, #075bd4);
  box-shadow: 0 16px 28px rgba(19, 120, 242, 0.25);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.jx-auth-primary:disabled,
.jx-auth-code-row button:disabled,
.jx-auth-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.jx-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.jx-auth-links button {
  border: 0;
  color: #0d65c6;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.jx-auth-scan {
  position: relative;
  text-align: center;
}

.jx-auth-password-toggle {
  justify-self: end;
  min-height: 34px;
  margin: -8px 0 12px;
  padding: 0 10px;
  font-size: 12px;
}

.jx-auth-qr-card {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 62, 118, 0.1);
}

.jx-auth-qr-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.jx-auth-qr-mask {
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #50627b;
  background: rgba(247, 251, 255, 0.94);
  font-size: 13px;
  font-weight: 800;
}

.jx-auth-scan h3 {
  margin: 0 0 8px;
  color: #071733;
  font-size: 20px;
}

.jx-auth-scan p {
  margin: 0 0 16px;
  color: #607087;
  line-height: 1.7;
}

.jx-auth-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e5edf7;
}

.jx-auth-platforms span {
  display: grid;
  gap: 7px;
  place-items: center;
  color: #4f6078;
  font-size: 12px;
  font-weight: 800;
}

.jx-auth-platforms i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 42, 76, 0.1);
  font-style: normal;
  overflow: hidden;
}

.jx-auth-platforms img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.jx-auth-message {
  min-height: 20px;
  margin: 14px 0 0;
  color: #0d65c6;
  font-size: 13px;
  font-weight: 700;
}

.jx-auth-message.is-error {
  color: #d92d20;
}

.jx-auth-safe {
  margin: 10px 0 0;
  padding-top: 12px;
  border-top: 1px solid #edf2f8;
  color: #7b8ca4;
  text-align: center;
  font-size: 12px;
}

body.jx-auth-lock {
  overflow: hidden;
}

/* ── 邀请好友弹窗 ── */
.jx-invite-dialog {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.jx-invite-dialog.is-open {
  display: flex;
}

.jx-invite-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 51, 0.54);
  backdrop-filter: blur(6px);
}

.jx-invite-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(207, 219, 236, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(6, 24, 55, 0.28);
  padding: 30px;
}

.jx-invite-card h2 {
  margin: 8px 0 10px;
  color: #061833;
  font-size: 28px;
}

.jx-invite-desc {
  margin: 0 0 22px;
  color: #61728a;
  line-height: 1.7;
}

.jx-invite-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #718198;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.jx-invite-close:hover {
  background: #f1f6fd;
  color: #0b1b34;
}

.jx-invite-field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: #f8fbff;
  padding: 14px 16px;
}

.jx-invite-field span {
  color: #718198;
  font-size: 13px;
  font-weight: 700;
}

.jx-invite-field strong {
  color: #00558b;
  font-size: 24px;
  letter-spacing: 0;
}

.jx-invite-field code {
  display: block;
  overflow-wrap: anywhere;
  color: #10223d;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.jx-invite-copy {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.jx-invite-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #0d65c6;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.jx-invite-status.is-error {
  color: #d92d20;
}

@media (max-width: 820px) {
  .jx-auth-modal {
    padding: 14px;
  }

  .jx-auth-dialog {
    grid-template-columns: minmax(0, 1fr);
  }

  .jx-auth-plan {
    padding: 28px 24px 22px;
  }

  .jx-auth-panel {
    padding: 30px 24px 24px;
  }

  .jx-auth-scan-toggle,
  .jx-auth-password-toggle {
    justify-self: stretch;
  }

  .jx-invite-dialog {
    padding: 14px;
  }

  .jx-invite-card {
    padding: 24px;
  }
}

/* Official register: nickname + usage mode */
.jx-auth-mode-section {
  display: grid;
  gap: 0.55rem;
  margin: 0.35rem 0 0.65rem;
}
.jx-auth-mode-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f2937;
}
.jx-auth-mode-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.jx-auth-mode-option input {
  margin-top: 0.2rem;
}
.jx-auth-mode-option span {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.45;
}
.jx-auth-mode-option strong {
  display: inline-block;
  margin-right: 0.35rem;
  color: #111827;
}
.jx-auth-team-fields {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

