:root {
  color-scheme: light;
  --navy: #0f2744;
  --gold: #c9a84c;
  --bg: #f7f5f0;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.09);
  --text-1: #1a1a1a;
  --text-2: #555555;
  --text-3: #999999;
  --green: #1d9e75;
  --orange: #d65f3f;
  --blue-soft: #edf3f8;
  --gold-soft: #f7efd5;
  --green-soft: #e8f5ef;
  --orange-soft: #f8ece6;
  --radius-card: 14px;
  --radius-control: 8px;
  --max-width: 1100px;
  --surface-soft: #fbfaf7;
  --shadow-soft: 0 14px 38px rgba(15, 39, 68, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100vh;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-1);
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "PingFang HK", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

button,
input {
  font: inherit;
}

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.admin-only[hidden] {
  display: none !important;
}

html[data-admin-mode="false"] .admin-only {
  display: none !important;
}

html[data-admin-mode="true"] .admin-only:not([hidden]) {
  display: block;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

strong,
.stat-num,
.score-pill strong,
.metric strong {
  font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
}

input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--text-1);
  outline: 0;
  transition: border-color 0.16s ease;
}

input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 39, 68, 0.06);
}

input::placeholder {
  color: var(--text-3);
}

.app-shell {
  width: 100%;
  min-height: 100vh;
}

.app-header {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--navy);
  color: #fff;
}

.brand-lockup,
.header-right,
.nav-status,
.site-footer span,
.primary-button,
.secondary-button,
.nav-consult {
  display: inline-flex;
  align-items: center;
}

.brand-lockup {
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.nav-brand > span:last-child {
  display: grid;
  gap: 0;
}

.nav-name {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-sub {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-right {
  gap: 10px;
  flex: 0 0 auto;
}

.language-switch {
  display: inline-grid;
  width: 72px;
  height: 28px;
  grid-template-columns: 1fr 1fr;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.language-option {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1;
}

.language-option[aria-pressed="true"] {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
}

.nav-consult {
  min-height: 34px;
  gap: 6px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.hero {
  background: var(--navy);
  color: #fff;
}

.hero-inner {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 36px;
  align-items: center;
  margin: 0 auto;
  padding: 30px 32px 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  max-width: 560px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.8;
}

.hero-skyline {
  width: 200px;
  justify-self: end;
  fill: var(--gold);
  opacity: 0.35;
}

.hero-bridge {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.bridge-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.bridge-summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.bridge-stats {
  display: flex;
  gap: 34px;
  align-items: center;
  min-width: 0;
}

.bridge-stat {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 5px;
  align-items: baseline;
}

.stat-num {
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.stat-unit {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.stat-label {
  grid-column: 1 / -1;
  margin-top: 5px;
  color: var(--text-3);
  font-size: 11px;
  line-height: 1.2;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fafaf9;
  color: var(--text-2);
  font-size: 11px;
}

.status-pill i,
.data-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.status-pill b {
  color: var(--navy);
  font-weight: 600;
}

.status-pill em {
  font-style: normal;
}

.form-steps {
  display: flex;
  min-height: 50px;
  justify-content: center;
  gap: 28px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.form-steps::-webkit-scrollbar {
  display: none;
}

.step-item {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 500;
}

.step-dot {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 50%;
  color: var(--text-3);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.step-item.is-active {
  border-bottom-color: var(--gold);
  color: var(--navy);
}

.step-item.is-active .step-dot {
  border-color: var(--navy);
  color: var(--navy);
}

.step-item.is-done {
  color: var(--gold);
}

.step-item.is-done .step-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  font-size: 0;
}

.step-item.is-done .step-dot::before {
  content: "\ea5e";
  font-family: "tabler-icons";
  font-size: 13px;
  line-height: 1;
}

.workspace {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
  margin: 24px auto 0;
  padding: 0 24px;
}

.main-column,
.sidebar {
  display: grid;
  gap: 16px;
}

.sidebar {
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

.form-card,
.side-card,
.report-output,
.advisor-workbench {
  overflow: hidden;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.form-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, var(--surface-soft));
}

.form-card-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.form-card-head h2 i {
  color: var(--gold);
  font-size: 20px;
}

.form-card-head p {
  margin: 0;
  color: var(--text-2);
  font-size: 12.5px;
}

.form-section {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.form-section > h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.form-section > h2 span {
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.field-grid,
.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.span-2 {
  grid-column: 1 / -1;
}

.text-field,
.field-block,
.rating-field {
  display: grid;
  gap: 8px;
  align-content: start;
}

.text-field > span,
.field-label,
.rating-field > span {
  color: var(--text-3);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.2;
}

.field-hint {
  margin: 0;
  color: var(--text-3);
  font-size: 11.5px;
  line-height: 1.6;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fafaf9;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.chip:hover {
  border-color: rgba(15, 39, 68, 0.28);
  color: var(--navy);
  transform: translateY(-1px);
}

.chip.is-selected {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.is-scrollable {
  max-height: 112px;
  overflow-y: auto;
  padding-right: 4px;
}

.rating-grid {
  gap: 12px 16px;
}

.rating-field strong {
  color: var(--navy);
}

.rating-squares {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  max-width: 230px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fafaf9;
}

.rating-square {
  height: 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-3);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
}

.rating-square.is-active {
  background: var(--navy);
  color: #fff;
}

.ability-overview {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fafaf9;
}

/* 六维能力雷达图（原生 SVG + JS 实时联动，无外部图表库） */
.ability-radar-wrap {
  display: flex;
  justify-content: center;
  padding: 4px 0 12px;
}
.ability-radar {
  width: 100%;
  max-width: 232px;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: visible;
}
.radar-ring,
.radar-spoke {
  fill: none;
  stroke: rgba(201, 168, 76, 0.22);
  stroke-width: 1;
}
.radar-label {
  fill: var(--navy);
  font-size: 12px;
  font-weight: 600;
}
.radar-data {
  fill: rgba(201, 168, 76, 0.2);
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linejoin: round;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.ability-overview-head,
.ability-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: center;
}

.ability-overview-head {
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 700;
}

.ability-overview-head em {
  grid-column: 3;
  color: var(--text-3);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  text-align: right;
}

.ability-bars {
  display: grid;
  gap: 8px;
}

.ability-row {
  color: var(--text-2);
  font-size: 12px;
}

.ability-row i {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 39, 68, 0.11);
}

.ability-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--navy);
}

.ability-row em {
  color: var(--text-3);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-style: normal;
  text-align: right;
}

.form-actions {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 22px 22px;
}

.primary-button,
.secondary-button {
  min-height: 40px;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.primary-button {
  height: 46px;
  background: var(--navy);
  color: #fff;
  transition:
    background 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.primary-button:hover {
  background: #15375f;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.16);
  transform: translateY(-1px);
}

.secondary-button {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
}

.secondary-button:hover {
  border-color: rgba(15, 39, 68, 0.28);
  color: var(--navy);
}

.side-card,
.report-output {
  padding: 17px;
}

.sidebar-title,
.report-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.sidebar-title span,
.report-heading p {
  margin: 0;
  color: var(--text-3);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-title em,
.report-heading span {
  color: var(--text-3);
  font-size: 11px;
  font-style: normal;
}

.database-overview .data-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.data-row {
  min-height: 82px;
  padding: 13px;
  border: 1px solid rgba(15, 39, 68, 0.055);
  border-radius: 10px;
  background: var(--surface-soft);
}

.data-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-2);
  font-size: 12px;
}

.data-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--navy);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.data-value::before {
  content: "\ea52";
  color: var(--gold);
  font-family: "tabler-icons";
  font-size: 18px;
  font-weight: 400;
}

.data-dot {
  display: none;
}

.hot-tags,
.tag-row,
.lead-schools,
.paper-badges,
.advisor-ai-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hot-tag,
.tag,
.lead-schools b,
.paper-badges span,
.advisor-ai-meta span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f0ed;
  color: var(--text-2);
  font-size: 11px;
  font-weight: 500;
}

.report-output {
  display: grid;
  gap: 14px;
}

.report-panel,
.assessment-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.report-empty,
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 32px;
  color: var(--text-3);
  text-align: center;
}

/* 模拟报告预览卡（视觉引导，非真实数据） */
.rpm {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
  padding: 14px 16px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}
.rpm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.rpm-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold);
  text-transform: uppercase;
}
.rpm-diff {
  font-size: 11px;
  color: var(--text-2);
}
.rpm-diff strong {
  color: var(--navy);
  font-weight: 700;
}
.rpm-buckets {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.rpm-bucket {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 12px;
  color: var(--text-1);
}
.rpm-green  { background: var(--green-soft); }
.rpm-gold   { background: var(--gold-soft); }
.rpm-orange { background: var(--orange-soft); }
.rpm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rpm-green  .rpm-dot { background: var(--green); }
.rpm-gold   .rpm-dot { background: var(--gold); }
.rpm-orange .rpm-dot { background: var(--orange); }
.rpm-count {
  margin-left: auto;
  font-weight: 600;
}
.rpm-bar {
  height: 7px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
  width: 100%;
}
.rpm-bar-short { width: 55%; }
.rpm-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(247,245,240,.96));
  pointer-events: none;
}

.report-empty-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 19px;
}

.report-empty-title {
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

.report-empty-desc,
.empty-state p {
  max-width: 280px;
  margin: 0 0 16px;
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.7;
}

.report-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .18s;
}
.report-empty-cta:hover { opacity: .82; }

.report-content {
  overflow: hidden;
  border-radius: 12px;
}

.report-header,
.school-card-main,
.assessment-actions,
.report-cta,
.workbench-head,
.lead-card-head,
.lead-actions,
.paper-subject-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-header {
  align-items: flex-start;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.report-title {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.report-meta {
  margin-top: 2px;
  color: var(--text-3);
  font-size: 11px;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.report-action-btn {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-2);
  font-size: 11.5px;
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    background 0.16s ease;
}

.report-action-btn:hover {
  border-color: rgba(15, 39, 68, 0.22);
  background: var(--surface-soft);
  color: var(--navy);
}

.report-action-btn.is-primary,
.report-cta-btn {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.kicker,
.rank-label,
.report-full-label {
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-hero h2 {
  margin: 4px 0 6px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.report-hero p,
.report-full-section p,
.school-summary,
.school-meta,
.school-name-en,
.report-cta-text,
.question-item p,
.question-item span {
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.7;
}

.readiness-card {
  display: grid;
  align-content: center;
  justify-items: end;
}

.readiness-card strong {
  color: var(--navy);
  font-size: 25px;
  font-weight: 600;
}

.readiness-card span,
.metric span {
  color: var(--text-3);
  font-size: 11px;
}

.meter,
.match-progress,
.score-line b {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 39, 68, 0.1);
}

.meter {
  width: 92px;
  margin-top: 8px;
}

.meter i,
.score-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--navy);
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
}

.metric {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metric:nth-child(even) {
  border-right: 0;
}

.metric:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metric strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border);
}

.tier-card {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.tier-card:last-child {
  border-bottom: 0;
}

.tier-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.tier-safe .tier-label {
  color: var(--green);
}

.tier-safe .tier-label::before {
  background: var(--green);
}

.tier-target .tier-label {
  color: var(--gold);
}

.tier-target .tier-label::before {
  background: var(--gold);
}

.tier-reach .tier-label {
  color: var(--orange);
}

.tier-reach .tier-label::before {
  background: var(--orange);
}

.tier-desc,
.tier-empty {
  margin: 0 0 9px;
  color: var(--text-3);
  font-size: 11.5px;
}

.school-item {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 12px;
}

.school-item:last-child {
  border-bottom: 0;
}

.school-item em {
  color: var(--text-3);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-style: normal;
}

.report-full {
  position: relative;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.report-full.is-locked .report-full-grid {
  max-height: 220px;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

/* 占位骨架：不含任何真实学校名单 / 时间线 / 材料，纯视觉提示「需领取」。 */
.report-full-grid--locked .report-full-section.is-teaser {
  border-top: 1px solid var(--border);
}

.report-full-grid--locked .report-full-section.is-teaser h3 {
  color: var(--text-2);
}

.teaser-lines {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.teaser-lines span {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--border), #f1f1f1);
}

.teaser-lines span:nth-child(2) {
  width: 86%;
}

.teaser-lines span:nth-child(3) {
  width: 62%;
}

.report-claim-card {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: 16px;
  border: 1px solid rgba(201, 168, 76, 0.36);
  border-radius: 12px;
  background: #fff;
}

.report-claim-card span {
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-claim-card h3 {
  margin: 6px 0;
  color: var(--navy);
  font-size: 15px;
}

.report-claim-card p {
  margin: 0 0 12px;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.7;
}

.claim-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.claim-form input {
  min-width: 0;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 11px;
  color: var(--text-1);
  font: 13px var(--font-sans);
  outline: none;
}

.claim-form input:focus {
  border-color: var(--navy);
}

.claim-form button {
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: 0 13px;
  font: 12px var(--font-sans);
  font-weight: 700;
  cursor: pointer;
}

.report-full-grid,
.insight-grid,
.question-plan,
.reason-grid,
.school-evidence,
.advisor-grid,
.agent-reasoning,
.exclusion-list,
.timeline-list,
.rubric-grid,
.answer-sheet-table {
  display: grid;
  gap: 10px;
}

.report-full-grid {
  margin-top: 8px;
}

.report-full-section {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.report-full-section h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.agent-reasoning-row,
.exclusion-item,
.timeline-item,
.rubric-item,
.answer-sheet-row,
.lead-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.agent-reasoning-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
}

.agent-reasoning-row span,
.timeline-item span,
.lead-card-head span {
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.agent-reasoning-row p,
.exclusion-item p,
.timeline-item p,
.rubric-item p,
.muted-copy,
.evidence-list,
.advisor-grid li {
  margin: 0;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.7;
}

.exclusion-item,
.timeline-item,
.rubric-item,
.answer-sheet-row {
  padding: 11px;
}

.exclusion-item strong,
.timeline-item strong,
.rubric-item strong,
.advisor-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
}

.evidence-list {
  padding-left: 18px;
}

.probability-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.probability-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fafaf9;
}

.probability-list strong {
  color: var(--navy);
  font-size: 13px;
}

.probability-list span {
  color: var(--navy);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.probability-list p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.6;
}

.advisor-grid {
  margin-top: 12px;
}

.advisor-grid > div {
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.advisor-grid ul {
  margin: 0;
  padding-left: 18px;
}

.report-cta {
  padding: 14px;
  background: #f3f2ef;
}

.report-cta-btn {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
}

.school-list {
  display: grid;
  gap: 10px;
}

.tier-section {
  display: grid;
  gap: 10px;
}

.tier-head {
  display: none;
}

.school-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.school-card h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.school-card-main {
  align-items: flex-start;
}

.school-name-en {
  display: block;
  color: var(--text-3);
  font-size: 11px;
  line-height: 1.35;
}

.school-meta {
  margin-top: 5px;
}

.score-pill {
  display: grid;
  min-width: 56px;
  justify-items: end;
  padding-top: 2px;
}

.score-pill strong {
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
}

.score-pill span {
  color: var(--text-3);
  font-size: 10px;
}

.match-progress {
  width: 100%;
}

.match-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.match-progress.is-high i {
  background: var(--green);
}

.match-progress.is-low i {
  background: var(--orange);
}

.badge-type {
  justify-self: start;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
}

.badge-type.is-direct {
  background: var(--gold-soft);
  color: #7b6122;
}

.badge-type.is-gov {
  background: var(--green-soft);
  color: #17684f;
}

.badge-type.is-private {
  background: var(--orange-soft);
  color: #8b3c25;
}

.tier-tag-0 {
  background: var(--green-soft);
  color: var(--green);
}

.tier-tag-1 {
  background: var(--gold-soft);
  color: #7b6122;
}

.tier-tag-2 {
  background: var(--orange-soft);
  color: var(--orange);
}

.school-details summary {
  list-style: none;
}

.school-details summary::-webkit-details-marker {
  display: none;
}

.expand-button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  font-size: 12px;
}

.score-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: 8px;
  align-items: center;
  margin: 6px 0;
  color: var(--text-2);
  font-size: 12px;
}

.score-line em {
  color: var(--navy);
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal;
  text-align: right;
}

.assessment-panel {
  padding: 14px;
}

.assessment-actions {
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.assessment-actions h2,
.paper-cover h2,
.paper-subject-head h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.assessment-actions p,
.paper-instructions p,
.paper-source-note p,
.paper-source-note li,
.paper-block li,
.paper-passage,
.paper-match-note,
.paper-compliance,
.paper-mini-meta {
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.7;
}

.assessment-paper {
  padding-top: 14px;
}

.paper-cover {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.paper-cover p {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}

.paper-meta,
.paper-student-info,
.lead-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.paper-meta span,
.paper-student-info span,
.lead-meta span {
  color: var(--text-2);
  font-size: 11px;
}

.paper-subject {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--border);
}

.matched-paper-list,
.workbench-grid {
  display: grid;
  gap: 10px;
}

.matched-paper-card {
  display: grid;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.matched-paper-card h4 {
  margin: 5px 0 3px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.matched-paper-card p {
  margin: 0;
  color: var(--text-3);
  font-size: 11px;
}

.paper-action {
  justify-self: start;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  font-size: 12px;
}

.paper-action.is-disabled {
  color: var(--text-3);
}

.answer-sheet-row {
  display: grid;
  gap: 6px;
}

.rubric-grid {
  grid-template-columns: 1fr;
}

.conversion-card {
  display: grid;
  gap: 10px;
}

.advisor-workbench {
  max-width: var(--max-width);
  margin: 22px auto 0;
  padding: 0;
}

.workbench-head {
  padding: 18px;
  border-bottom: 1px solid var(--border);
}

.workbench-head p {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.workbench-head h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 18px;
}

.workbench-head span {
  color: var(--text-2);
  font-size: 12px;
}

.workbench-grid {
  padding: 16px;
}

.lead-card {
  padding: 14px;
}

.workbench-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.workbench-tools input {
  min-height: 36px;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  color: var(--text-1);
  font-size: 12px;
}

.lead-card-head h3 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 15px;
}

.lead-card-head em {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #7b6122;
  font-size: 11px;
  font-style: normal;
}

.lead-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 12px;
}

.lead-note-field {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.lead-note-field span {
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-note-field textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--text-1);
  font: inherit;
  font-size: 12px;
  line-height: 1.65;
  background: #fafaf9;
}

.lead-actions button {
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  font-size: 12px;
}

.lead-report-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.lead-report-item {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px;
  background: #fafaf9;
}

.lead-report-item strong,
.lead-report-item span {
  display: block;
  font-size: 11px;
}

.lead-report-item strong {
  color: var(--navy);
}

.lead-report-item span,
.lead-report-item p {
  color: var(--text-2);
}

.lead-report-item p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.65;
}

.advisor-ai-report {
  display: grid;
  gap: 10px;
}

.advisor-ai-body {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fafaf9;
}

.advisor-ai-body h3,
.advisor-ai-body h4,
.advisor-ai-body p,
.advisor-ai-body ol {
  margin: 0;
}

.advisor-ai-body h3,
.advisor-ai-body h4 {
  color: var(--navy);
}

.advisor-ai-body p,
.advisor-ai-body li {
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.75;
}

.site-disclaimer {
  display: flex;
  max-width: var(--max-width);
  align-items: flex-start;
  gap: 10px;
  margin: 22px auto 0;
  padding: 13px 16px;
  border-radius: 10px;
  background: #f3f2ef;
  color: var(--text-2);
}

.site-disclaimer i {
  color: var(--gold);
  font-size: 18px;
  line-height: 1.45;
}

.site-disclaimer p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  max-width: var(--max-width);
  justify-content: space-between;
  gap: 16px;
  margin: 24px auto 0;
  padding: 16px 0 30px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 12px;
}

.site-footer span:last-child {
  gap: 6px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .workspace {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 768px) {
  .app-header {
    padding: 0 16px;
  }

  .nav-sub,
  .nav-consult i {
    display: none;
  }

  .nav-consult {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 28px 18px 26px;
  }

  .hero-skyline {
    display: none;
  }

  .hero-title {
    font-size: 25px;
  }

  .bridge-inner {
    padding: 0 16px;
  }

  .bridge-summary {
    display: grid;
    min-height: 0;
    gap: 12px;
    padding: 14px 0;
  }

  .bridge-stats {
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .bridge-stats::-webkit-scrollbar {
    display: none;
  }

  .bridge-stat {
    flex: 0 0 auto;
  }

  .form-steps {
    justify-content: flex-start;
    gap: 22px;
  }

  .workspace {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .claim-form {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .field-grid,
  .rating-grid,
  .form-actions,
  .database-overview .data-list,
  .paper-meta,
  .paper-student-info,
  .lead-meta {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .form-card-head,
  .form-section,
  .form-actions {
    padding-right: 16px;
    padding-left: 16px;
  }

  .report-header,
  .report-hero,
  .assessment-actions,
  .report-cta,
  .workbench-head,
  .school-card-main,
  .lead-card-head {
    display: grid;
  }

  .report-actions {
    justify-content: stretch;
  }

  .report-action-btn,
  .report-cta-btn {
    width: 100%;
  }

  .report-summary {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(even),
  .metric:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .site-disclaimer,
  .site-footer,
  .advisor-workbench {
    margin-right: 16px;
    margin-left: 16px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .nav-name {
    max-width: 148px;
  }

  .language-switch {
    width: 64px;
  }

  .bridge-stats {
    gap: 16px;
  }

  .status-row {
    gap: 6px;
    align-items: flex-start;
  }
}

@media print {
  .app-header,
  .hero,
  .hero-bridge,
  .form-card,
  .sidebar,
  .advisor-workbench,
  .report-heading,
  .school-list,
  .site-disclaimer,
  .site-footer,
  .toast {
    display: none !important;
  }

  body,
  .app-shell,
  .workspace,
  .main-column {
    display: block;
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
    background: #fff;
  }

  body.printing-report .assessment-panel,
  body.printing-report .report-actions,
  body.printing-report .report-cta {
    display: none !important;
  }

  body.printing-report .report-panel {
    display: block !important;
    border: 0;
  }

  body.printing-assessment .report-panel,
  body.printing-assessment .school-list {
    display: none !important;
  }

  body.printing-assessment .assessment-panel {
    display: block !important;
    border: 0;
    padding: 0;
  }

  .assessment-actions {
    display: none !important;
  }
}

/* ============================================================
   动效升级 · 与主站 www.yougang.xyz 一致的 premium 微交互
   ============================================================ */
:root {
  --ease-quint: cubic-bezier(.22, 1, .36, 1);
  --ease-quart: cubic-bezier(.25, 1, .5, 1);
}
/* 按钮：premium 缓动 + 按压回弹 */
.primary-button,
.secondary-button,
.report-cta-btn,
.report-action-btn,
.claim-form button,
.lead-actions button {
  transition: transform .22s var(--ease-quint), box-shadow .26s var(--ease-quint), background .2s ease, color .2s ease, border-color .2s ease;
}
.primary-button:active,
.secondary-button:active,
.report-cta-btn:active,
.claim-form button:active,
.report-action-btn:active { transform: translateY(0) scale(.97); }
.primary-button:hover { transform: translateY(-2px); }
.secondary-button:hover { transform: translateY(-2px); }
/* 主按钮 & 金色 CTA：hover 光泽扫过（克制高级感） */
.primary-button, .report-cta-btn { position: relative; overflow: hidden; }
.primary-button::after, .report-cta-btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, .3) 50%, transparent 68%);
  transform: translateX(-130%);
}
.primary-button > *, .report-cta-btn > * { position: relative; z-index: 2; }
.primary-button:hover::after, .report-cta-btn:hover::after { transform: translateX(130%); transition: transform .72s var(--ease-quart); }
/* 学校卡 hover 提升 */
.school-card { transition: transform .28s var(--ease-quint), box-shadow .28s var(--ease-quint), border-color .24s ease; }
.school-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px -18px rgba(15, 39, 68, .42); }
/* chip 反馈 */
.chip:active { transform: scale(.95); }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .primary-button, .secondary-button, .report-cta-btn, .report-action-btn, .claim-form button, .lead-actions button, .school-card, .chip { transition: none !important; }
  .primary-button:hover, .primary-button:active, .secondary-button:hover, .report-cta-btn:active, .school-card:hover, .chip:active { transform: none !important; }
  .primary-button::after, .report-cta-btn::after { display: none; }
}

/* ============================================================
   UI Unify · 与主站 www.yougang.xyz 视觉完全统一（2026-07-03）
   衬线 display / 金线眉标 / 状态光点语言 / 金色 pill CTA / 维港影像
   追加于文件尾：同名选择器自然覆盖上方旧规则，可整块回滚
   ============================================================ */
:root {
  --navy: #0D2137;
  --navy-2: #1A3A5C;
  --navy-900: #081427;
  --navy-800: #0B1E3D;
  --gold-line: rgba(201, 162, 75, 0.26);
  --serif: "Playfair Display", "Noto Serif SC", Georgia, "Songti SC", serif;
}

/* —— 页头：金线接缝 + 衬线品牌字 —— */
.app-header { border-bottom: 1px solid var(--gold-line); }
.brand-logo { font-family: var(--serif); }

/* —— Hero：全幅维港影像（左浓右透蒙版）+ 噪点 + 金色地平线光晕 —— */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E"),
    url("../public/img/hk-skyline.jpg") center 58%/cover no-repeat;
  opacity: .5;
  filter: grayscale(.35) brightness(.55) contrast(1.08);
  -webkit-mask-image: linear-gradient(100deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.46) 36%, rgba(0,0,0,.75) 64%, rgba(0,0,0,.98) 100%);
  mask-image: linear-gradient(100deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.46) 36%, rgba(0,0,0,.75) 64%, rgba(0,0,0,.98) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(90% 50% at 72% 62%, rgba(201, 162, 75, .18), transparent 62%),
    linear-gradient(105deg, transparent 46%, rgba(201, 162, 75, .1) 100%);
  mix-blend-mode: screen;
}
.hero-inner {
  position: relative; z-index: 1;
  grid-template-columns: minmax(0, 1fr) 300px;
  padding: 40px 32px 38px;
}

/* 眉标：衬线斜体 + 金色短线（www 同款） */
.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: none;
}

/* 标题：衬线 display + 金色渐变强调 */
.hero-title {
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.18;
  letter-spacing: .01em;
  text-shadow: 0 2px 24px rgba(8, 20, 39, .45);
}
.hero-title em {
  background: linear-gradient(180deg, #F2DC92 0%, var(--gold) 50%, #B0892F 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(201, 168, 76, .22));
}
.hero-desc { max-width: 440px; color: rgba(255, 255, 255, .62); font-size: 13.5px; }

/* Hero 右侧：AI 报告预览卡（行情终端质感，替代原柱状图装饰） */
.hero-report-card {
  position: relative; overflow: hidden; justify-self: end;
  width: 100%; max-width: 300px;
  padding: 18px 18px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 20, 39, .62), rgba(8, 20, 39, .42));
  -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.hero-report-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--gold) 65%, transparent);
  opacity: .85;
}
.hrc-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.hrc-label { display: inline-flex; align-items: center; gap: 5px; color: var(--gold); font-size: 11px; font-weight: 600; }
.hrc-live { color: rgba(255, 255, 255, .45); font-size: 10.5px; }
.hrc-readiness { display: flex; align-items: baseline; gap: 8px; }
.hrc-readiness span { color: rgba(255, 255, 255, .6); font-size: 11.5px; }
.hrc-readiness strong { color: #D9BC77; font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1; }
.hrc-meter { height: 5px; margin: 9px 0 4px; border-radius: 3px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.hrc-meter i { display: block; height: 100%; width: 74%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), #D9BC77); }
.hrc-rows { display: grid; margin-top: 8px; }
.hrc-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .85); font-size: 12px;
}
.hrc-row:last-child { border-bottom: 0; }
.hrc-row em { margin-left: auto; color: #D9BC77; font-style: normal; font-weight: 600; font-size: 12px; }
.hrc-dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.hrc-dot.d-safe { background: #4ade80; box-shadow: 0 0 8px rgba(74, 222, 128, .65); }
.hrc-dot.d-target { background: var(--gold); box-shadow: 0 0 8px rgba(201, 168, 76, .7); }
.hrc-dot.d-reach { background: #f4a4a4; box-shadow: 0 0 8px rgba(244, 164, 164, .6); }
.hrc-note { margin: 10px 0 0; padding-top: 9px; border-top: 1px solid rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .42); font-size: 10.5px; line-height: 1.6; }

/* —— 数据桥：衬线数字 + 金色状态光点（去绿色 bootstrap 感） —— */
.stat-num { font-family: var(--serif); font-size: 26px; }
.status-pill i {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, .75);
  animation: unify-pulse 2s ease-in-out infinite;
}
@keyframes unify-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* —— 移动端步进器：右缘渐隐提示可滚动 —— */
@media (max-width: 768px) {
  .form-steps {
    padding-right: 34px;
    -webkit-mask-image: linear-gradient(90deg, #000 84%, transparent 99%);
    mask-image: linear-gradient(90deg, #000 84%, transparent 99%);
  }
}

/* —— 表单卡：衬线标题 + 金色 focus —— */
.form-card-head h2 { font-family: var(--serif); font-size: 19px; }
input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}
.claim-form input:focus { border-color: var(--gold); }

/* —— 侧栏眉标：衬线斜体金色 + 前置金线（www eyebrow 语言） —— */
.sidebar-title span,
.report-heading p,
.workbench-head p {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 12px; letter-spacing: .08em; text-transform: none;
  color: var(--gold);
}
.sidebar-title span::before,
.report-heading p::before,
.workbench-head p::before {
  content: ""; width: 20px; height: 1px; flex: none;
  background: currentColor; opacity: .55;
}

/* —— 报告预览空态卡（rpm）：navy 终端卡 + 状态光点（去红绿黄底色块） —— */
.rpm {
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  box-shadow: 0 20px 48px -24px rgba(8, 20, 39, .6);
}
.rpm-label { color: var(--gold); }
.rpm-diff { color: rgba(255, 255, 255, .6); }
.rpm-diff strong { color: #D9BC77; font-family: var(--serif); font-size: 14px; }
.rpm-bucket {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  color: rgba(255, 255, 255, .85);
}
.rpm-green, .rpm-gold, .rpm-orange { background: rgba(255, 255, 255, .05); }
.rpm-green .rpm-dot { box-shadow: 0 0 8px rgba(29, 158, 117, .7); }
.rpm-gold .rpm-dot { box-shadow: 0 0 8px rgba(201, 168, 76, .75); }
.rpm-orange .rpm-dot { box-shadow: 0 0 8px rgba(214, 95, 63, .65); }
.rpm-count { color: #D9BC77; }
.rpm-bar { background: rgba(255, 255, 255, .09); }
.rpm-fade { background: linear-gradient(to bottom, transparent, rgba(8, 20, 39, .96)); }

/* —— 真实报告内的 tier 标签：中性底 + 彩色光点（替代满色 soft 块） —— */
.tier-tag-0, .tier-tag-1, .tier-tag-2 {
  background: rgba(13, 33, 55, .05);
  border: 1px solid rgba(13, 33, 55, .09);
  color: var(--text-2);
}
.tier-tag-0::before, .tier-tag-1::before, .tier-tag-2::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; margin-right: 5px; flex: 0 0 auto;
}
.tier-tag-0::before { background: var(--green); box-shadow: 0 0 6px rgba(29, 158, 117, .55); }
.tier-tag-1::before { background: var(--gold); box-shadow: 0 0 6px rgba(201, 168, 76, .6); }
.tier-tag-2::before { background: var(--orange); box-shadow: 0 0 6px rgba(214, 95, 63, .5); }

/* 学校类型徽章：统一金调（www lib-badge.type 同款），不再蓝绿橙各一色 */
.badge-type,
.badge-type.is-direct,
.badge-type.is-gov,
.badge-type.is-private {
  background: rgba(201, 168, 76, .13);
  color: #7b6122;
}

/* —— CTA：金色 pill（www btn-gold 同款） —— */
.primary-button {
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
}
.primary-button:hover {
  background: var(--gold);
  box-shadow: 0 10px 26px rgba(201, 168, 76, .36);
}
.primary-button:disabled { background: var(--gold); }
.secondary-button { border-radius: 999px; }
.report-empty-cta {
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
}
.report-action-btn.is-primary,
.report-cta-btn {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.claim-form button {
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
}

/* —— 报告标题衬线化 —— */
.report-hero h2,
.assessment-actions h2,
.workbench-head h2,
.report-title { font-family: var(--serif); }

/* —— 页脚：金线接缝 —— */
.site-footer { border-top: 1px solid var(--gold-line); }

/* —— 响应式补充 —— */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-report-card { display: none; }
  .hero-title { font-size: 27px; }
}
@media (prefers-reduced-motion: reduce) {
  .status-pill i { animation: none; }
}
