/* ============================================================
   高简平台 · 全局样式系统 (gj.css)
   Aether v1.0 材质 + gj token 体系
   品牌色占位，老师定色后只改 :root 值
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* 品牌色（占位，待老师定后填入，只改值不改变量名） */
  --gj-primary: #3f83ff;
  --gj-primary-light: #6a9eff;
  --gj-accent: #ff8a3f;
  --gj-accent-hover: #ff7020;

  /* 中性色 */
  --gj-text: #1a1a1e;
  --gj-text-secondary: #6b7280;
  --gj-border: rgba(0, 0, 0, 0.06);

  /* 功能色 */
  --gj-success: #34c759;
  --gj-warning: #f59e0b;
  --gj-danger: #ef4444;
  --gj-info: #007aff;

  /* Aether · 材质 */
  --glass-strong: rgba(255, 255, 255, 0.85);
  --glass-default: rgba(255, 255, 255, 0.75);
  --glass-subtle: rgba(255, 255, 255, 0.55);
  --pearl-bg: #eef1f6;
  --pearl-aurora: radial-gradient(ellipse at 50% 0%, rgba(180, 200, 255, 0.25), transparent 60%);

  /* Aether · 几何 */
  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-default: 16px;

  /* Aether · 棱镜倒角 */
  --bevel-highlight: inset 1px 1px 0 rgba(255, 255, 255, 0.6);
  --bevel-shadow: inset -0.5px -0.5px 0 rgba(0, 0, 0, 0.04);
  --hairline-border: 0 0 0 1px rgba(0, 0, 0, 0.06);
  --ambient-float: 0 2px 16px rgba(0, 0, 0, 0.06);
  --ambient-float-hover: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Aether · 无障碍 */
  --focus-ring: 0 0 0 3px #007aff;

  /* 字体 */
  --gj-font: 'Inter', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --gj-font-mono: 'JetBrains Mono', 'SF Mono', 'Menlo', 'Consolas', monospace;
  --gj-font-size-base: 16px;
  --letter-spacing-display: -0.022em;

  /* 间距 */
  --gj-space-1: 4px;
  --gj-space-2: 8px;
  --gj-space-3: 12px;
  --gj-space-4: 16px;
  --gj-space-6: 24px;
  --gj-space-8: 32px;
  --gj-space-xs: var(--gj-space-1);
  --gj-space-sm: var(--gj-space-2);
  --gj-space-md: var(--gj-space-4);
  --gj-space-lg: var(--gj-space-6);
  --gj-space-xl: var(--gj-space-8);
  --gj-space-2xl: 48px;

  /* 圆角 */
  --gj-radius-sm: 4px;
  --gj-radius: 8px;
  --gj-radius-md: var(--gj-radius);
  --gj-radius-lg: var(--radius-default);
  --gj-radius-pill: var(--radius-pill);
  --gj-radius-card: var(--radius-card);

  /* 阴影 */
  --gj-shadow-sm: var(--ambient-float);
  --gj-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --gj-shadow-md: var(--gj-shadow);
  --gj-shadow-lg: var(--ambient-float-hover);

  /* 语义映射 */
  --gj-bg: var(--pearl-bg);
  --gj-bg-card: var(--glass-default);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: var(--gj-font-size-base); }

body {
  font-family: var(--gj-font);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gj-text);
  background: var(--pearl-bg);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--pearl-aurora);
  pointer-events: none;
  z-index: 0;
}

/* ===== 玻璃材质 ===== */
.glass-pane {
  background: var(--glass-default);
  border-radius: var(--radius-card);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.glass-pane--strong {
  background: var(--glass-strong);
}

.glass-pane--subtle {
  background: var(--glass-subtle);
}

/* ===== 布局 ===== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gj-space-6);
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== 按钮 ===== */
.gj-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gj-space-2);
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--gj-font);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
}

.gj-btn:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--focus-ring);
}

.gj-btn-primary,
.btn-primary {
  background: var(--gj-primary);
  color: #fff;
}

.gj-btn-primary:hover,
.btn-primary:hover {
  background: var(--gj-primary-light);
  transform: translateY(-1px);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float-hover);
}

.gj-btn-accent,
.btn-accent {
  background: var(--gj-accent);
  color: #fff;
}

.gj-btn-accent:hover,
.btn-accent:hover {
  background: var(--gj-accent-hover);
  transform: translateY(-1px);
}

.gj-btn-ghost,
.btn-ghost {
  background: var(--glass-subtle);
  color: var(--gj-text);
}

.gj-btn-ghost:hover,
.btn-ghost:hover {
  background: var(--glass-default);
}

.gj-btn-outline,
.btn-outline {
  background: var(--glass-default);
  color: var(--gj-primary);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    0 0 0 1px var(--gj-primary),
    var(--ambient-float);
}

.gj-btn-danger { background: var(--gj-danger); color: #fff; }
.gj-btn:disabled, .btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.gj-btn--lg {
  font-size: 1rem;
  padding: 14px 32px;
}

/* ===== 卡片 ===== */
.gj-card,
.card {
  background: var(--glass-default);
  border-radius: var(--radius-card);
  padding: var(--gj-space-lg);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.gj-card--interactive {
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gj-card--interactive:hover {
  transform: translateY(-4px);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float-hover);
}

.gj-card--interactive:focus-visible {
  outline: none;
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--focus-ring);
}

/* ===== 表单 ===== */
.gj-input,
.gj-select,
.gj-textarea,
.input {
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--gj-font);
  font-size: 0.875rem;
  color: var(--gj-text);
  background: var(--glass-default);
  box-shadow: var(--hairline-border);
  transition: box-shadow 0.2s ease;
}

.gj-input:focus,
.gj-select:focus,
.gj-textarea:focus,
.input:focus {
  outline: none;
  box-shadow: var(--hairline-border), var(--focus-ring);
}

.gj-label {
  display: block;
  margin-bottom: var(--gj-space-xs);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gj-text-secondary);
}

/* ===== 标签 / Chip ===== */
.gj-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--glass-subtle);
  box-shadow: var(--hairline-border);
}

/* ===== 导航栏 ===== */
.gj-nav,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gj-space-4);
  padding: var(--gj-space-3) var(--gj-space-6);
  margin: var(--gj-space-4) var(--gj-space-6) 0;
  background: var(--glass-strong);
  border-radius: var(--radius-pill);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  position: sticky;
  top: var(--gj-space-4);
  z-index: 100;
}

.gj-nav-brand {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-display);
  color: var(--gj-text);
  text-decoration: none;
  white-space: nowrap;
}

.gj-nav-brand span {
  color: var(--gj-primary);
}

.gj-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--gj-space-2);
  list-style: none;
}

.gj-nav-links a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--gj-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.gj-nav-links a:hover {
  color: var(--gj-text);
  background: var(--glass-subtle);
}

.gj-nav-links a.is-active {
  color: var(--gj-text);
  background: var(--glass-default);
  box-shadow: var(--hairline-border);
}

.gj-nav-links a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.gj-nav__search {
  flex: 1 1 200px;
  min-width: 0;
  max-width: 360px;
  margin: 0 var(--gj-space-2);
}

.gj-nav__search .aether-search-field {
  width: 100%;
}

.gj-nav__search .aether-search-field__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Aether 搜索栏 ===== */
.aether-search-field {
  --color-ink: #1d1d1f;
  --color-ink-tertiary: #86868b;
  --color-ink-secondary: #54545a;
  --color-surface-glass-strong: rgba(255, 255, 255, 0.75);
  --color-hairline: rgba(15, 23, 42, 0.08);
  --color-bevel-light: rgba(255, 255, 255, 0.9);
  --color-bevel-soft: rgba(255, 255, 255, 0.55);
  --color-accent-ring: rgba(10, 132, 255, 0.32);
  --glass-bevel-inset: inset 1.5px 1.5px 0 0 var(--color-bevel-light),
    inset -1px -1px 0 0 var(--color-bevel-soft),
    inset 0 0 0 1px rgba(15, 23, 42, 0.04);
  --glass-shadow-resting: 0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 28px -10px rgba(15, 23, 42, 0.16);
  --glass-shadow-raised: 0 2px 4px rgba(15, 23, 42, 0.06),
    0 22px 44px -14px rgba(15, 23, 42, 0.22);
  --glass-blur: blur(20px) saturate(180%);
  --aether-focus-ring: 0 0 0 3px var(--color-accent-ring);
  --dur-med: 220ms;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: min(100%, 360px);
}

.aether-search-field__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-ink-secondary);
}

.aether-search-field__input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 48px;
  padding: 0 1.125rem;
  background: var(--color-surface-glass-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-hairline);
  border-radius: 9999px;
  box-shadow: var(--glass-bevel-inset), var(--glass-shadow-resting);
  transition:
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.aether-search-field__input:focus-within {
  border-color: rgba(10, 132, 255, 0.45);
  box-shadow: var(--glass-bevel-inset), var(--glass-shadow-raised),
    var(--aether-focus-ring);
}

.aether-search-field__icon {
  flex: none;
  color: var(--color-ink-tertiary);
}

.aether-search-field__input input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-ink);
  letter-spacing: -0.002em;
}

.aether-search-field__input input::placeholder {
  color: var(--color-ink-tertiary);
}

.aether-search-field__input input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.aether-search-field__kbd {
  flex: none;
  font-family: var(--gj-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--color-ink-tertiary);
  padding: 0.125rem 0.5rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--color-hairline);
  border-radius: 8px;
  pointer-events: none;
  user-select: none;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: var(--gj-space-2xl) var(--gj-space-6);
  margin: var(--gj-space-6);
  background: var(--glass-strong);
  border-radius: var(--radius-card);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
}

.hero__badge {
  display: inline-flex;
  margin-bottom: var(--gj-space-4);
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-display);
  color: var(--gj-text);
  margin-bottom: var(--gj-space-4);
}

.hero p {
  font-size: 1.0625rem;
  color: var(--gj-text-secondary);
  max-width: 36rem;
  margin: 0 auto var(--gj-space-8);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gj-space-3);
}

/* ===== 入口卡片 ===== */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gj-space-6);
  max-width: 1080px;
  margin: 0 auto var(--gj-space-6);
  padding: 0 var(--gj-space-6);
}

.entry-card {
  text-align: center;
  padding: var(--gj-space-8) var(--gj-space-6);
}

.entry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--gj-space-4);
  border-radius: var(--radius-pill);
  font-size: 1.5rem;
  background: var(--glass-subtle);
  box-shadow: var(--hairline-border);
}

.entry-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: var(--letter-spacing-display);
  margin-bottom: var(--gj-space-2);
}

.entry-card p {
  color: var(--gj-text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.entry-card__arrow {
  display: inline-block;
  margin-top: var(--gj-space-4);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gj-primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gj-card--interactive:hover .entry-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== 信任数据 ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gj-space-8);
  max-width: 1080px;
  margin: 0 auto var(--gj-space-6);
  padding: var(--gj-space-8) var(--gj-space-6);
  background: var(--glass-default);
  border-radius: var(--radius-card);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.trust-item {
  text-align: center;
  min-width: 6rem;
}

.trust-item .num {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-display);
  color: var(--gj-accent);
  line-height: 1.2;
}

.trust-item .label {
  margin-top: var(--gj-space-1);
  font-size: 0.875rem;
  color: var(--gj-text-secondary);
}

/* ===== Footer ===== */
.site-footer {
  margin-top: auto;
  padding: var(--gj-space-6);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gj-text-secondary);
}

/* ===== 通用区块 ===== */
.section {
  max-width: 1080px;
  margin: 0 auto var(--gj-space-6);
  padding: 0 var(--gj-space-6);
}

.section__header {
  text-align: center;
  margin-bottom: var(--gj-space-8);
}

.section__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-display);
  margin-bottom: var(--gj-space-3);
}

.section__desc {
  color: var(--gj-text-secondary);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gj-space-8);
  align-items: center;
}

.two-col__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  background: var(--glass-subtle);
  box-shadow: var(--hairline-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gj-text-secondary);
  font-size: 0.875rem;
}

.two-col__body p + p {
  margin-top: var(--gj-space-4);
}

.two-col__body p {
  color: var(--gj-text-secondary);
  line-height: 1.6;
}

/* ===== 子页 Hero ===== */
.page-hero {
  text-align: center;
  padding: var(--gj-space-xl) var(--gj-space-6);
  margin: var(--gj-space-4) var(--gj-space-6) var(--gj-space-6);
  background: var(--glass-strong);
  border-radius: var(--radius-card);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-display);
  margin-bottom: var(--gj-space-3);
}

.page-hero p {
  color: var(--gj-text-secondary);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

.page-hero .hero__badge {
  display: inline-flex;
  margin-bottom: var(--gj-space-3);
}

/* ===== 能力 / 特性网格 ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gj-space-4);
}

.feature-card {
  text-align: center;
  padding: var(--gj-space-6) var(--gj-space-4);
}

.feature-card__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--gj-space-3);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gj-primary);
  background: var(--glass-subtle);
  box-shadow: var(--hairline-border);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--gj-space-2);
}

.feature-card p {
  font-size: 0.8125rem;
  color: var(--gj-text-secondary);
  line-height: 1.5;
}

/* ===== 筛选 Chip 行 ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gj-space-2);
  margin-bottom: var(--gj-space-6);
}

.filter-bar .gj-chip {
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.filter-bar .gj-chip.is-active {
  background: var(--glass-default);
  box-shadow: var(--hairline-border);
  color: var(--gj-text);
  font-weight: 600;
}

/* ===== 课程网格 ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gj-space-6);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.product-card__cover {
  aspect-ratio: 16 / 9;
  background: var(--glass-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gj-text-secondary);
  font-size: 2rem;
}

.product-card__body {
  padding: var(--gj-space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gj-space-2);
  margin-bottom: var(--gj-space-3);
}

.product-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: var(--gj-space-2);
}

.product-card p {
  font-size: 0.875rem;
  color: var(--gj-text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: var(--gj-space-4);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gj-space-3);
}

.product-card__price {
  font-weight: 700;
  color: var(--gj-accent);
}

/* ===== 步骤流程 ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gj-space-6);
  counter-reset: step;
}

.step-item {
  text-align: center;
  padding: var(--gj-space-6);
  position: relative;
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: var(--gj-space-4);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  background: var(--gj-primary);
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--gj-space-2);
}

.step-item p {
  font-size: 0.875rem;
  color: var(--gj-text-secondary);
  line-height: 1.5;
}

/* ===== 预览面板 ===== */
.preview-panel {
  padding: var(--gj-space-8);
  text-align: center;
}

.preview-panel__chart {
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto var(--gj-space-6);
  border-radius: 50%;
  background: var(--glass-subtle);
  box-shadow: var(--hairline-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gj-text-secondary);
  font-size: 0.875rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--gj-space-3);
}

.faq-item {
  padding: var(--gj-space-4) var(--gj-space-6);
}

.faq-item h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--gj-space-2);
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--gj-text-secondary);
  line-height: 1.6;
}

/* ===== 底部 CTA ===== */
.cta-banner {
  text-align: center;
  padding: var(--gj-space-8) var(--gj-space-6);
  margin: 0 var(--gj-space-6) var(--gj-space-6);
  background: var(--glass-strong);
  border-radius: var(--radius-card);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.cta-banner h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-display);
  margin-bottom: var(--gj-space-3);
}

.cta-banner p {
  color: var(--gj-text-secondary);
  margin-bottom: var(--gj-space-6);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gj-space-3);
}

/* ===== AI 知识引擎 ===== */
.kb-layout {
  max-width: 720px;
  margin: 0 auto var(--gj-space-6);
  padding: 0 var(--gj-space-6);
}

.kb-messages {
  min-height: 320px;
  max-height: 480px;
  overflow-y: auto;
  padding: var(--gj-space-4);
  margin-bottom: var(--gj-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--gj-space-4);
}

.kb-bubble {
  max-width: 85%;
  padding: var(--gj-space-3) var(--gj-space-4);
  border-radius: var(--radius-default);
  font-size: 0.875rem;
  line-height: 1.5;
}

.kb-bubble--user {
  align-self: flex-end;
  background: var(--gj-primary);
  color: #fff;
  border-radius: var(--radius-default) var(--radius-default) 4px var(--radius-default);
}

.kb-bubble--ai {
  align-self: flex-start;
  background: var(--glass-default);
  box-shadow: var(--hairline-border);
  border-radius: var(--radius-default) var(--radius-default) var(--radius-default) 4px;
}

.kb-dock {
  display: flex;
  gap: var(--gj-space-3);
  padding: var(--gj-space-3);
  background: var(--glass-strong);
  border-radius: var(--radius-pill);
  box-shadow:
    var(--bevel-highlight),
    var(--bevel-shadow),
    var(--hairline-border),
    var(--ambient-float);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
}

.kb-dock .gj-input {
  flex: 1;
  box-shadow: none;
  background: transparent;
}

.kb-dock .gj-btn {
  flex-shrink: 0;
}

.kb-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gj-space-2);
  margin-top: var(--gj-space-4);
}

.kb-suggestions .gj-chip {
  cursor: pointer;
}

.kb-notice {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gj-text-secondary);
  margin-top: var(--gj-space-3);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gj-space-6);
}

.info-card {
  text-align: center;
  padding: var(--gj-space-6);
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--gj-space-2);
}

.info-card p {
  font-size: 0.875rem;
  color: var(--gj-text-secondary);
  line-height: 1.5;
}

/* ===== 定价 ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gj-space-6);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: var(--gj-space-8) var(--gj-space-6);
  text-align: center;
}

.pricing-card--featured {
  background: var(--glass-strong);
  transform: scale(1.02);
}

.pricing-card__badge {
  display: inline-block;
  margin-bottom: var(--gj-space-3);
}

.pricing-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--gj-space-2);
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-display);
  color: var(--gj-text);
  margin-bottom: var(--gj-space-6);
}

.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gj-text-secondary);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  flex: 1;
  margin-bottom: var(--gj-space-6);
}

.pricing-card__features li {
  font-size: 0.875rem;
  color: var(--gj-text-secondary);
  padding: var(--gj-space-2) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card__features li::before {
  content: '✓ ';
  color: var(--gj-success);
  font-weight: 600;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table th,
.compare-table td {
  padding: var(--gj-space-3) var(--gj-space-4);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.compare-table thead th {
  font-weight: 600;
  background: var(--glass-subtle);
}

/* ===== 登录 / 注册 ===== */
.auth-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gj-space-6);
}

.auth-card {
  width: 100%;
  max-width: 400px;
  padding: var(--gj-space-8);
}

.auth-card h1 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: var(--letter-spacing-display);
  text-align: center;
  margin-bottom: var(--gj-space-2);
}

.auth-card__desc {
  text-align: center;
  color: var(--gj-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--gj-space-6);
}

.auth-tabs {
  display: flex;
  gap: var(--gj-space-2);
  margin-bottom: var(--gj-space-6);
  padding: var(--gj-space-1);
  background: var(--glass-subtle);
  border-radius: var(--radius-pill);
  box-shadow: var(--hairline-border);
}

.auth-tabs button {
  flex: 1;
  padding: var(--gj-space-2) var(--gj-space-4);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--gj-font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--gj-text-secondary);
  transition: background 0.2s ease, color 0.2s ease;
}

.auth-tabs button.is-active {
  background: var(--glass-default);
  color: var(--gj-text);
  box-shadow: var(--hairline-border);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--gj-space-4);
}

.auth-form[hidden] {
  display: none;
}

.auth-error {
  font-size: 0.8125rem;
  color: var(--gj-danger);
  text-align: center;
}

.auth-footer {
  margin-top: var(--gj-space-4);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gj-text-secondary);
}

.auth-footer a {
  color: var(--gj-primary);
  text-decoration: none;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .gj-nav,
  .nav {
    flex-direction: column;
    align-items: stretch;
    margin: var(--gj-space-3);
    padding: var(--gj-space-4);
    border-radius: var(--radius-card);
  }

  .gj-nav-brand {
    text-align: center;
  }

  .gj-nav-links {
    justify-content: center;
  }

  .gj-nav__search {
    flex: 1 1 100%;
    max-width: none;
    margin: 0;
    order: 3;
  }

  .gj-nav__search .aether-search-field__kbd {
    display: none;
  }

  .hero {
    margin: var(--gj-space-3);
    padding: var(--gj-space-8) var(--gj-space-4);
  }

  .entry-grid {
    grid-template-columns: 1fr;
    padding: 0 var(--gj-space-3);
    gap: var(--gj-space-4);
  }

  .trust-bar {
    margin: 0 var(--gj-space-3) var(--gj-space-6);
    gap: var(--gj-space-6);
    padding: var(--gj-space-6);
  }

  .entry-card__arrow {
    opacity: 1;
    transform: translateX(0);
  }

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

  .feature-grid,
  .product-grid,
  .steps,
  .info-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .page-hero {
    margin: var(--gj-space-3);
    padding: var(--gj-space-6) var(--gj-space-4);
  }

  .section {
    padding: 0 var(--gj-space-3);
  }

  .cta-banner {
    margin: 0 var(--gj-space-3) var(--gj-space-6);
    padding: var(--gj-space-6) var(--gj-space-4);
  }

  .kb-layout {
    padding: 0 var(--gj-space-3);
  }
}
