:root {
  /* Extracted from Gallop logo 2026-08-31. Replace only if official brand guidelines specify otherwise. */
  --brand-blue: #00A4E4;
  --brand-blue-hover: #0090C9;
  --brand-navy: #203C70;
  --brand-navy-hover: #182E58;
  --navy-900: #0B1F3A;
  --navy-800: #122A4A;
  --navy-700: #203C70;
  --canvas: #F7F9FC;
  --canvas-alt: #F3F7FB;
  --surface: #FFFFFF;
  --surface-blue: #EFF5FF;
  --ice: #EAF2FB;
  --ink: #0F172A;
  --muted: #64748B;
  --border: #DCE4EE;
  --accent-premium: #C4B5A0;
  --service-admissions: #E8F4FC;
  --service-academic: #EEF3F8;
  --service-competition: #F7F3EA;
  --service-career: #E6EAF2;
  --shadow-sm: 0 1px 2px rgba(15, 39, 74, 0.05);
  --shadow-md: 0 10px 28px rgba(15, 39, 74, 0.08);
  --shadow-lg: 0 22px 50px rgba(11, 31, 58, 0.16);
  --radius: 12px;
  --radius-media: 18px;
  --header: 72px;
  --max: 1180px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.dev-only { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  min-width: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[lang="zh-Hans"] body { font-family: "Noto Sans SC", Inter, sans-serif; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--brand-navy); color: var(--canvas); }
:focus-visible { outline: 2px solid var(--brand-navy); outline-offset: 3px; }

.wrap { width: var(--max); margin: 0 auto; }
.section { padding: 88px 0; }
section, footer, .cta-band { scroll-margin-top: 88px; }
.section-head { margin-bottom: 36px; max-width: 720px; }
.kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
html[lang="zh-Hans"] .kicker {
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 13px;
}
h1, h2, h3 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; }
html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2,
html[lang="zh-Hans"] h3 { letter-spacing: 0; line-height: 1.25; }
h2 { font-size: 36px; }
.lede { margin-top: 12px; color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 640px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
/* Primary uses navy, not cyan: #00A4E4 on white fails WCAG (~2.8:1). Navy #203C70 is the logo hexagon color and passes. */
.pill-primary { background: var(--brand-navy); color: #fff; }
.pill-primary:hover { background: var(--brand-navy-hover); }
.pill-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.pill-ghost:hover { border-color: var(--brand-navy); color: var(--brand-navy); }
.pill-invert { background: var(--canvas); color: var(--brand-navy); }
.pill-invert:hover { background: #fff; }
.pill-outline-light { border-color: rgba(255,255,255,.45); color: var(--canvas); }
.pill-outline-light:hover { border-color: var(--canvas); }
.row-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-navy);
}
.link-more:hover span.arrow { transform: translateX(3px); }
.link-more .arrow { display: inline-block; transition: transform .15s ease; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header);
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  width: var(--max);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -0.03em; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.nav > a, .nav-svc {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav > a:hover, .nav-svc:hover { color: var(--brand-navy); }
.nav > a[aria-current="page"] { color: var(--brand-navy); font-weight: 600; }
.nav-svc .chev { width: 10px; height: 10px; transition: transform .15s ease; }
.nav-item { position: static; }
.header.has-mega .nav-svc .chev { transform: rotate(180deg); }

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.lang-btn {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.lang-btn.is-active { color: var(--ink); border-bottom-color: var(--brand-navy); font-weight: 600; }
.lang-sep { color: var(--border); }

/* Mega */
.mega {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: var(--header);
  width: var(--max);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 22px 28px 0;
  z-index: 59;
}
.header.has-mega .mega { display: block; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 28px;
}
.mega-col { padding-bottom: 16px; }
.mega-col + .mega-col { border-left: 1px solid var(--border); padding-left: 28px; }
.mega-col h3 {
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-navy);
}
.mega-col h3 a.mega-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-navy);
  padding: 0;
  line-height: inherit;
}
.mega-col h3 a.mega-heading:hover { color: var(--brand-blue); }
.mega-col a {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  padding: 3px 0;
  color: var(--ink);
}
.mega-col a:hover { color: var(--brand-navy); }
.mega-foot {
  display: flex;
  gap: 24px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.mega-foot a { color: var(--brand-navy); font-weight: 500; }
.mega-foot a:hover { text-decoration: underline; }
.mega-related {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.mega-related-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin: 0 0 4px;
}
.mega-col .mega-related a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  padding: 2px 0;
}
.mega-col .mega-related a:hover { color: var(--brand-navy); }
.mega-sub { margin: 2px 0 6px; }
.mega-sub-head {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 3px 0;
}
.mega-sub-children { padding-left: 12px; }
.mega-col .mega-sub-children a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  padding: 2px 0;
}
.mega-col .mega-sub-children a:hover { color: var(--brand-navy); }

/* Hero */
.hero { padding: 56px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 48px;
  align-items: start;
}
.hero-eyebrow { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.hero h1 { font-size: 56px; line-height: 1.08; max-width: 8.6em; }
html[lang="zh-Hans"] .hero h1 { font-size: 52px; max-width: 12ch; line-height: 1.2; }
.hero-sub {
  margin: 22px 0 32px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 38em;
}
.hero-photo {
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--ice);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* S2 lifecycle */
.stage-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.stage-tab {
  height: auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.stage-tab:hover { color: var(--ink); }
.stage-tab.is-active { color: var(--ink); border-bottom-color: var(--brand-navy); font-weight: 600; }
.stage-panel {
  padding: 28px 8px 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.stage-link {
  display: block;
  padding: 18px 20px 20px;
  border-radius: 8px;
  min-height: 116px;
}
.stage-link:hover { background: var(--surface-blue); }
.stage-link strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
html[lang="zh-Hans"] .stage-link strong { letter-spacing: 0; }
.stage-link span { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* S3 */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 1101px) {
  .help-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .help-grid > .help-card { grid-column: span 2; }
  .help-grid > .help-card:nth-child(4) { grid-column: 2 / span 2; }
  .help-grid > .help-card:nth-child(5) { grid-column: 4 / span 2; }
}
.help-card {
  padding: 28px 28px 24px;
  min-height: 308px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease;
}
.help-card:hover { border-color: var(--brand-navy); }
.help-card .idx {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-navy);
  margin-bottom: 14px;
}
.help-card h3 { font-size: 22px; margin-bottom: 10px; }
.help-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.help-card .link-more { margin-top: auto; }
.help-list { color: var(--ink); font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }

/* S4 */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prog-card {
  padding: 24px 22px 22px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease;
}
.prog-card:hover { border-color: var(--brand-navy); }
.prog-card h3 { font-size: 18px; line-height: 1.3; margin-bottom: 12px; }
.prog-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* S5 */
.filters { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.filter-btn {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.is-active { background: var(--brand-navy); color: var(--canvas); border-color: var(--brand-navy); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.result-card { padding: 24px 24px 20px; }
.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}
html[lang="zh-Hans"] .badge { letter-spacing: 0; text-transform: none; font-size: 12px; }
.badge-cat { border-color: var(--brand-navy); color: var(--brand-navy); }
.result-card h3 { font-size: 18px; margin: 14px 0 16px; }
.fields { display: grid; gap: 10px; }
.field { display: grid; grid-template-columns: 140px 1fr; gap: 12px; font-size: 14px; border-top: 1px solid var(--border); padding-top: 10px; }
.field dt { color: var(--muted); }
.field dd { color: var(--ink); }
.note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.empty-state {
  display: none;
  padding: 48px 28px;
  text-align: left;
  grid-column: 1 / -1;
}
.empty-state.show { display: block; }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; }
.empty-state p { color: var(--muted); font-size: 14.5px; }

/* S6 */
.team-card { padding: 24px 22px; text-align: left; }
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #E8EEF6;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-navy);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 16px; margin-bottom: 4px; }
.team-role { font-size: 13.5px; color: var(--brand-navy); font-weight: 500; margin-bottom: 10px; }
.team-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* S7 */
.insight-card { padding: 22px 22px 20px; display: flex; flex-direction: column; min-height: 220px; transition: border-color .15s ease; }
.insight-card:hover { border-color: var(--brand-navy); }
.insight-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.insight-card h3 { font-size: 18px; line-height: 1.35; margin-bottom: 12px; }
.insight-card .by { font-size: 13px; color: var(--muted); }

/* S8 */
.cta-band {
  background: var(--navy-900);
  color: var(--canvas);
  padding: 88px 0;
}
.cta-band h2 { font-size: 40px; max-width: 16ch; }
html[lang="zh-Hans"] .cta-band h2 { max-width: 12ch; }
.cta-band .lede { color: rgba(169,199,222,.85); }

/* Footer */
.footer {
  padding: 56px 0 140px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.footer h3 { font-size: 13px; font-weight: 600; color: var(--brand-navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.footer a { display: block; font-size: 14px; color: var(--muted); padding: 4px 0; }
.footer a:hover { color: var(--ink); }
.nap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted);
  align-items: flex-start;
}
.nap strong { color: var(--ink); font-weight: 600; }
.legal { display: flex; gap: 16px; }
.legal button { font-size: 13.5px; color: var(--muted); }
.legal button:hover { color: var(--ink); }

/* Dock */
.dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 70;
}
.dock-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.dock-btn:hover { border-color: var(--brand-navy); }
.dock-btn svg { flex-shrink: 0; }
.dock-btn.is-ai { background: var(--brand-navy); color: var(--canvas); border-color: var(--brand-navy); }
.dock-btn.is-ai:hover { background: var(--navy-900); }

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.overlay.is-open { display: block; }
.backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.40);
}
.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.modal-sm { width: 400px; text-align: center; }
.modal h2 { font-size: 24px; margin-bottom: 8px; }
.modal .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; line-height: 1.55; }
.close-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--muted);
}
.close-x:hover { color: var(--ink); background: var(--canvas); }
.discuss {
  display: grid;
  gap: 8px;
}
.discuss-btn {
  text-align: left;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.discuss-btn strong { display: block; font-size: 15px; margin-bottom: 2px; }
.discuss-btn span { font-size: 13px; color: var(--muted); }
.discuss-btn:hover, .discuss-btn.is-on { border-color: var(--brand-navy); }
.discuss-next { display: none; margin-top: 18px; }
.discuss-next.show { display: block; }
.qr-ph {
  width: 180px;
  height: 180px;
  margin: 8px auto 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

/* AI panel */
.ai-panel {
  position: fixed;
  right: 24px;
  bottom: 196px;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 16px;
  z-index: 71;
  display: none;
}
.ai-panel.is-open { display: block; }
.ai-panel h2 { font-size: 18px; margin-bottom: 6px; }
.ai-panel .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.chips { display: flex; flex-direction: column; gap: 6px; }
.chip {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  background: var(--surface);
}
.chip:hover, .chip.is-on { border-color: var(--brand-navy); color: var(--brand-navy); }
.ai-follow { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.ai-follow.show { display: block; }
.ai-follow p { font-size: 13px; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }



.ai-level2 { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.ai-level2.show { display: block; }
.ai-level2 p { font-size: 13px; color: var(--muted); margin-bottom: 8px; line-height: 1.5; }
.ai-panel .ai-level2 { margin: 12px 18px 0; }
.ai-level2 .chips { padding: 0; }
.ai-level2 .chip { padding: 8px 12px; font-size: 13px; }
.ai-panel { max-height: calc(100vh - 160px); overflow-y: auto; }

.book-l2 { display: none; margin-top: 16px; }
.book-l2.show { display: block; }
.book-l2-q { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.book-related {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.book-related-label {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}
.book-related-btn {
  background: none;
  border: 0;
  padding: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--brand-navy);
  text-align: left;
  cursor: pointer;
}
.book-related-btn:hover,
.book-related-btn.is-on { text-decoration: underline; }
#book-modal.book-chooser-locked #discuss,
#book-modal.book-chooser-locked #book-related { display: none; }
.ai-related {
  margin: 10px 18px 0;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.ai-related-btn {
  background: none;
  border: 0;
  padding: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.ai-related-btn:hover,
.ai-related-btn.is-on { color: var(--brand-navy); }
.book-form { display: none; margin-top: 18px; }
.book-form.show { display: block; }
.book-form.is-busy .pill { pointer-events: none; }
.book-field { margin-bottom: 12px; }
.book-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}
.book-field textarea { resize: vertical; min-height: 72px; }
.book-hint {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.book-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.book-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.book-consent label {
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.book-consent a { color: var(--brand-navy); text-decoration: underline; }
.book-error {
  color: #b42318;
  font-size: 13.5px;
  margin: 0 0 12px;
}
.book-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.book-confirm { display: none; margin-top: 18px; }
.book-confirm.show { display: block; }
.book-confirm-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.book-confirm-body { margin: 0 0 12px; }
.book-confirm-id {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-navy);
  margin: 0 0 16px;
}
.book-wechat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.book-wechat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 14px;
}
.book-wechat-qr {
  width: 260px;
  height: 260px;
  object-fit: contain;
  image-rendering: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.book-toast {
  margin-top: 10px;
  font-size: 13px;
  color: var(--brand-navy);
  font-weight: 500;
}
.legal-page h1 { margin: 8px 0 12px; }
.legal-page h2 { margin: 28px 0 8px; font-size: 18px; }
.legal-page p { color: var(--muted); max-width: 68ch; }
.legal-page .legal-effective { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
.legal-page ul { max-width: 68ch; color: var(--muted); padding-left: 1.2em; margin: 0 0 12px; }
.legal-page li { margin: 6px 0; }
.l2-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.l2-chip {
  text-align: left;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  color: var(--ink);
}
.l2-chip:hover, .l2-chip.is-on {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
  background: var(--ice);
}

.who-item { scroll-margin-top: calc(var(--header) + 16px); }
.who-item .help-chips { margin: 10px 0 0; }

/* Icons */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 20px; height: 20px; display: block; flex-shrink: 0; color: var(--brand-navy); }
.ico-16 { width: 16px; height: 16px; }
.ico-18 { width: 18px; height: 18px; }
.ico-24 { width: 24px; height: 24px; }
.ico-40 { width: 40px; height: 40px; }
.icon-tile {
  width: 64px; height: 64px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px; flex-shrink: 0;
}
.icon-tile.tint-admissions { background: var(--service-admissions); }
.icon-tile.tint-academic { background: var(--service-academic); }
.icon-tile.tint-competitions { background: var(--service-competition); }
.icon-tile.tint-career { background: var(--service-career); }
.icon-tile.tint-support { background: #EEF4FA; }

.mega-col h3 { display: flex; align-items: center; gap: 8px; }
.mega-col h3 .ico { width: 20px; height: 20px; }

.hero { padding: 56px 0 40px; }
.hero-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 48px; align-items: start; }
.hero-copy { min-width: 0; }
.hero-visual { min-width: 0; margin: 0; }
.hero-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--ice);
  aspect-ratio: 7 / 6;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-photo-cap { margin-top: 10px; }
.hero-photo-place {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.hero-photo-note {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}
html[lang="zh-Hans"] .hero-photo-place,
html[lang="zh-Hans"] .hero-photo-note { letter-spacing: 0; }
.path-sig { margin: 8px auto 8px; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
html[lang="zh-Hans"] .path-sig { letter-spacing: 0.02em; }

.stage-tab {
  min-height: 64px; padding: 10px 8px 12px; height: auto;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.stage-tab .ico { color: var(--muted); }
.stage-tab:hover .ico { color: var(--ink); }
.stage-tab.is-active { color: var(--brand-navy); }
.stage-tab.is-active .ico { color: var(--brand-navy); }
.stage-link strong { display: flex; align-items: center; gap: 8px; }

.help-card { min-height: 340px; }
.help-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.mini-chip {
  font-size: 12px; line-height: 1.3; padding: 5px 10px;
  border: 1px solid var(--border); border-radius: 999px; color: var(--muted); background: transparent;
}

.prog-card { padding: 0; overflow: hidden; min-height: 420px; }
.prog-media { height: 180px; position: relative; overflow: hidden; background: var(--ice); flex-shrink: 0; }
.prog-media img { width: 100%; height: 100%; object-fit: cover; }
.prog-media-timeline { background: var(--service-admissions); }
.prog-media-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 36%; opacity: 0.2; }
.prog-media-photo img { object-position: center 52%; }
.timeline {
  position: relative; z-index: 1; height: 100%;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 16px 14px; flex-wrap: wrap;
}
.timeline span { font-size: 13px; font-weight: 600; color: var(--brand-navy); letter-spacing: -0.02em; }
html[lang="zh-Hans"] .timeline span { letter-spacing: 0; font-size: 12px; }
.tl-arr { font-weight: 400; color: var(--muted); opacity: 0.8; }
.prog-media-career img { object-position: 30% 42%; }
.media-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 12px;
  background: var(--navy-900); color: var(--canvas); font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
}
html[lang="zh-Hans"] .media-cap { letter-spacing: 0; }
.path-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px;
  background: var(--navy-900); color: var(--canvas); font-size: 11px; font-weight: 500;
  display: flex; flex-wrap: wrap; gap: 4px 6px; align-items: center; letter-spacing: 0.02em;
}
html[lang="zh-Hans"] .path-overlay { letter-spacing: 0; }
.path-overlay .sep { opacity: 0.55; font-weight: 400; }
.path-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.prog-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.prog-card p { margin-bottom: 16px; }

.editorial { padding: 0 0 88px; }
.editorial-figure { position: relative; height: 380px; overflow: hidden; border-radius: var(--radius); background: var(--navy-900); }
.editorial-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.editorial-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(11,31,58,0.55) 0%, rgba(11,31,58,0.28) 28%, rgba(11,31,58,0) 46%);
}
.editorial-copy { position: absolute; left: 40px; bottom: 40px; z-index: 1; color: var(--canvas); max-width: 34%; }
.editorial-copy p { font-size: 28px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.25; }
html[lang="zh-Hans"] .editorial-copy p { letter-spacing: 0; font-size: 26px; }
.editorial-copy .ed-cap { margin-top: 12px; display: block; font-size: 11px; font-weight: 400; letter-spacing: 0.04em; color: rgba(169,199,222,.85); }
html[lang="zh-Hans"] .editorial-copy .ed-cap { letter-spacing: 0; }

.result-card { display: flex; flex-direction: column; }
.result-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.result-flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: start; margin-bottom: 18px; }
.result-k { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
html[lang="zh-Hans"] .result-k { letter-spacing: 0.04em; text-transform: none; font-size: 12px; }
.result-bg p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.result-outcome { font-size: 22px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.25; color: var(--ink); }
html[lang="zh-Hans"] .result-outcome { letter-spacing: 0; font-size: 20px; }
.result-arrow { color: var(--brand-navy); font-size: 18px; padding-top: 22px; }
.result-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.logo-slot { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.logo-box { width: 24px; height: 24px; border: 1px dashed var(--border); border-radius: 4px; flex-shrink: 0; }

.team-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.team-photo {
  aspect-ratio: 3 / 4; background: #E8EEF6;
  color: var(--brand-navy); display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px 16px; gap: 10px;
}
.team-photo .ico { color: var(--brand-navy); }
.team-photo p { font-size: 11px; line-height: 1.45; color: var(--brand-navy); max-width: 16em; }
.team-body { padding: 18px 18px 20px; }
.team-card .team-exp { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.insight-card { padding: 0; overflow: hidden; min-height: 0; }
.insight-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ice); }
.insight-thumb img { width: 100%; height: 100%; object-fit: cover; }
.insight-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.insight-card .by { margin-bottom: 12px; }

.dock-btn .ico { flex-shrink: 0; }
.dock-btn.is-ai .ico { color: var(--canvas); }
.discuss-btn { display: flex; align-items: flex-start; gap: 12px; }
.discuss-copy { min-width: 0; }
.discuss-btn .discuss-copy span { font-size: 13px; color: var(--muted); }
.discuss-btn .ico { margin-top: 2px; }
.chip { display: flex; align-items: center; gap: 10px; }

.discuss-btn .discuss-copy { color: var(--ink); }
.discuss-btn strong { color: var(--ink); }
.hidden { display: none !important; }

/* ——— Gallop blue + white identity (section rhythm & hierarchy) ——— */
::selection { background: var(--brand-blue); color: #fff; }
:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }

html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2,
html[lang="zh-Hans"] h3 { letter-spacing: 0; line-height: 1.25; }
html[lang="zh-Hans"] .hero h1 { line-height: 1.25; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Primary uses navy, not cyan: #00A4E4 on white fails WCAG (~2.8:1). Navy #203C70 is the logo hexagon color and passes. */
.pill-primary { background: var(--brand-navy); color: #fff; }
.pill-primary:hover { background: var(--brand-navy-hover); }
.pill-ghost {
  background: var(--surface);
  color: var(--brand-navy);
  border-color: var(--border);
}
.pill-ghost:hover {
  background: var(--ice);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.pill-invert { background: #fff; color: var(--brand-navy); }
.pill-invert:hover { background: var(--ice); }
.pill-outline-light { border-color: rgba(255,255,255,.45); color: #fff; }
.pill-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.kicker { color: var(--brand-blue); }
.link-more { color: var(--brand-blue); }
.hero-eyebrow { color: var(--brand-blue); }

.header {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav > a, .nav-svc { color: var(--ink); }
.nav > a:hover, .nav-svc:hover { color: var(--brand-blue); }
.lang-btn.is-active { color: var(--ink); border-bottom-color: var(--brand-blue); }

.mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  display: block;
  flex-shrink: 0;
}
.brand-name { color: var(--brand-navy); }
html[lang="zh-Hans"] .brand-name { letter-spacing: 0; }

.ico { color: var(--brand-navy); }

.mega {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mega-col h3 { color: var(--brand-navy); }
.mega-col a:hover { color: var(--brand-blue); }
.mega-foot a { color: var(--brand-blue); }

.hero { background: var(--canvas); }
.hero-frame {
  border: 1px solid color-mix(in srgb, var(--brand-blue) 50%, var(--border));
  border-radius: 24px;
  background: var(--ice);
}
.path-sig { color: var(--muted); }

#path { background: var(--ice); }
.stage-tab { color: var(--muted); }
.stage-tab .ico { color: var(--muted); }
.stage-tab:hover { color: var(--ink); }
.stage-tab.is-active {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
  font-weight: 600;
}
.stage-tab.is-active .ico { color: var(--brand-blue); }
.stage-link:hover { background: var(--surface); }

#help { background: var(--canvas); }
.help-card {
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.help-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.help-card .idx { color: var(--brand-navy); }
.icon-tile.tint-admissions { background: var(--service-admissions); }
.icon-tile.tint-academic { background: var(--service-academic); }
.icon-tile.tint-competitions { background: var(--service-competition); }
.icon-tile.tint-career { background: var(--service-career); }
.icon-tile.tint-support { background: #EEF4FA; }

#programs { background: var(--canvas-alt); }
.prog-card {
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.prog-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
#programs .grid-4 > .prog-card:nth-child(1) { border-top: 3px solid var(--brand-blue); }
#programs .grid-4 > .prog-card:nth-child(2) { border-top: 3px solid var(--ice); }
#programs .grid-4 > .prog-card:nth-child(3) { border-top: 3px solid var(--accent-premium); }
#programs .grid-4 > .prog-card:nth-child(4) { border-top: 3px solid var(--navy-700); }
.timeline span { color: var(--brand-navy); }
.media-cap, .path-overlay {
  background: var(--navy-900);
  color: #fff;
}
.medal-chip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-premium);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(196, 181, 160, 0.35);
}

.editorial-figure {
  border-radius: var(--radius-media);
  background: var(--navy-900);
}
.editorial-figure::after {
  background: linear-gradient(to right, rgba(11,31,58,0.55) 0%, rgba(11,31,58,0.28) 32%, rgba(11,31,58,0) 55%);
}
.editorial-copy { color: #fff; }
.editorial-copy .ed-cap { color: rgba(169, 199, 222, 0.85); }

#results { background: #F4F8FC; }
.result-outcome { color: var(--navy-700); }
.result-arrow { color: var(--brand-blue); }
.result-card[data-type="admissions"] .badge {
  background: var(--service-admissions); color: var(--navy-700); border-color: transparent;
}
.result-card[data-type="academic"] .badge {
  background: var(--service-academic); color: var(--navy-700); border-color: transparent;
}
.result-card[data-type="competition"] .badge {
  background: var(--service-competition); color: var(--navy-700); border-color: transparent;
}
.result-card[data-type="career"] .badge {
  background: var(--service-career); color: var(--navy-700); border-color: transparent;
}
.logo-box {
  border: 1px dashed #C5D0DC;
  background: #EEF2F6;
}

#team { background: var(--surface); }
.team-photo {
  background: #E8EEF6;
  color: var(--brand-navy);
}
.team-photo .ico { color: var(--brand-navy); }
.team-photo p { color: var(--brand-navy); }
.team-role { color: var(--brand-blue); }
.team-tags .mini-chip {
  background: var(--ice);
  border-color: transparent;
  color: var(--brand-navy);
}
.avatar {
  background: #E8EEF6;
  color: var(--brand-navy);
}

#insights { background: var(--canvas-alt); }
.insight-card {
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.insight-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.badge-cat {
  color: var(--brand-blue);
  background: var(--ice);
  border-color: transparent;
}

.cta-band {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #A9C7DE; }

.footer {
  background: #071526;
  color: rgba(234, 242, 251, 0.72);
  border-top: 0;
}
.footer h3 { color: #fff; }
.footer a { color: rgba(234, 242, 251, 0.62); }
.footer a:hover { color: var(--brand-blue); }
.ft-related {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.ft-related-label {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(234, 242, 251, 0.42);
  margin: 0 0 4px;
}
.footer .ft-related a {
  font-size: 13px;
  color: rgba(234, 242, 251, 0.5);
}
.nap {
  border-top-color: rgba(255,255,255,.12);
  color: rgba(234, 242, 251, 0.55);
}
.nap strong { color: #fff; }
.legal button, .legal span, .legal a { color: rgba(234, 242, 251, 0.55); }
.legal button:hover, .legal a:hover { color: #fff; }
.legal a { font-size: 13.5px; text-decoration: none; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.dock-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.dock-btn:hover { border-color: var(--brand-blue); }
.dock-btn.is-ai {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}
.dock-btn.is-ai .ico { color: #fff; }
.dock-btn.is-ai:hover { background: var(--brand-blue-hover); }

.backdrop { background: rgba(11, 31, 58, 0.40); }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.discuss-btn { background: var(--surface); }
.discuss-btn .ico { color: var(--brand-navy); }
.discuss-btn:hover, .discuss-btn.is-on { border-color: var(--brand-navy); background: var(--ice); }

.ai-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 0 0 16px;
  overflow-y: auto;
}
.ai-panel h2 {
  background: var(--ice);
  padding: 16px 18px 4px;
  margin-bottom: 0;
  color: var(--ink);
}
.ai-panel .sub {
  background: var(--ice);
  margin: 0;
  padding: 6px 18px 14px;
  color: var(--muted);
}
.ai-panel .chips { padding: 12px 18px 0; }
.ai-panel .ai-follow {
  margin: 12px 18px 0;
}
.chip { background: var(--surface); color: var(--ink); }
.chip:hover, .chip.is-on {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--ice);
}
.chip.is-on .ico { color: var(--brand-blue); }

.filter-btn.is-active {
  background: var(--ice);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.close-x:hover { background: var(--ice); color: var(--ink); }


/* Mobile chrome: hidden on desktop */
.hamburger, .header-book-m, .m-nav { display: none; }
.ai-backdrop { display: none; position: fixed; inset: 0; background: rgba(11, 31, 58, 0.40); z-index: 80; }
body.is-locked { overflow: hidden; }

@media (max-width: 1199px) {
  .wrap, .header-inner {
    width: auto;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .mega {
    width: auto;
    left: 24px;
    right: 24px;
    transform: none;
  }
}

@media (max-width: 860px) {
  :root { --header: 56px; }
  html { overflow-x: hidden; }
  body {
    min-width: 0;
    overflow-x: hidden;
    font-size: 16px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
  .wrap {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .section { padding: 64px 0; }
  section, footer, .cta-band { scroll-margin-top: 68px; }
  .section-head { margin-bottom: 24px; max-width: none; }
  h2 { font-size: 30px; }
  .lede { font-size: 16px; }
  img { max-width: 100%; height: auto; }
  button, a, summary { touch-action: manipulation; }
  .pill { height: 48px; min-height: 48px; font-size: 15px; }
  .row-cta { flex-direction: column; gap: 10px; }
  .row-cta .pill { width: 100%; }

  /* Header */
  .header { height: 56px; }
  .header-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 12px 0 16px;
    gap: 8px;
  }
  .nav, .mega, .header.has-mega .mega { display: none !important; }
  .header-right .lang,
  .header-book-d { display: none !important; }
  .brand-name { display: none; }
  .mark { width: 28px; height: 28px; }
  .header-right { gap: 8px; }
  .header-book-m { display: none !important; }
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    flex-shrink: 0;
    border-radius: 8px;
  }
  .hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .m-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    z-index: 75;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px calc(32px + env(safe-area-inset-bottom, 0px));
  }
  .m-nav.is-open { display: block; }
  .m-nav[hidden] { display: none !important; }
  .m-nav.is-open[hidden] { display: none !important; }
  .m-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-blue);
    padding: 16px 0 8px;
  }
  html[lang="zh-Hans"] .m-label { letter-spacing: 0.04em; text-transform: none; }
  .m-acc { border-bottom: 1px solid var(--border); }
  .m-acc summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-navy);
    cursor: pointer;
  }
  .m-acc summary::-webkit-details-marker { display: none; }
  .m-acc summary .chev { margin-left: auto; width: 12px; height: 12px; transition: transform .15s ease; }
  .m-acc[open] summary .chev { transform: rotate(180deg); }
  .m-acc-body { padding: 0 0 12px 30px; }
  .m-acc-body a {
    display: block;
    font-size: 15px;
    min-height: 44px;
    padding: 10px 0;
    color: var(--ink);
  }
  .m-related {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }
  .m-related-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    margin: 0 0 2px;
  }
  .m-acc-body .m-related a {
    font-size: 13px;
    min-height: 36px;
    padding: 6px 0;
    color: var(--muted);
    font-weight: 400;
  }
  .m-acc-nested { border-bottom: 0; }
  .m-acc-nested summary {
    font-size: 15px;
    font-weight: 500;
    min-height: 44px;
    padding: 8px 0;
  }
  .m-acc-nested .m-acc-body { padding: 0 0 8px 14px; }
  .m-acc-nested .m-acc-body a {
    font-size: 14px;
    color: var(--muted);
    min-height: 40px;
    padding: 8px 0;
  }
  .m-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
  }
  .m-book { width: 100%; margin-top: 20px; }
  .m-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .m-lang .lang-btn {
    min-height: 44px;
    min-width: 44px;
    font-size: 15px;
  }

  /* Hero */
  .hero { padding: 28px 0 40px; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero h1 { font-size: 40px; max-width: none; line-height: 1.12; }
  html[lang="zh-Hans"] .hero h1 { font-size: 36px; max-width: none; line-height: 1.25; }
  .hero-sub { font-size: 16px; margin: 14px 0 20px; max-width: none; }
  .hero-visual { margin-top: 4px; }
  .hero-frame {
    aspect-ratio: 5 / 4;
    height: auto;
  }
  .hero-frame img {
    aspect-ratio: 5 / 4;
    height: auto;
    object-fit: cover;
    object-position: center 16%;
  }
  .hero-photo-note { font-size: 12px; }
  .path-sig { font-size: 12px; letter-spacing: 0.03em; white-space: normal; line-height: 1.6; }

  /* Lifecycle 2×2 */
  .stage-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-bottom: 0;
  }
  .stage-tab {
    min-height: 48px;
    height: auto;
    padding: 10px 8px;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    font-size: 13px;
    flex-direction: row;
    gap: 6px;
  }
  .stage-tab.is-active {
    border-color: var(--brand-blue);
    border-bottom-color: var(--brand-blue);
    color: var(--brand-blue);
  }
  .stage-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 0;
    grid-template-columns: none;
  }
  .stage-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    min-height: 48px;
  }
  .stage-link:last-child { border-bottom: 0; }
  .stage-link strong { margin: 0; flex: 1; font-size: 15px; }
  .stage-link span { display: none; }
  .stage-link::after {
    content: "→";
    color: var(--brand-blue);
    font-size: 16px;
    flex-shrink: 0;
  }

  /* Services: one card per row, compact */
  .grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .help-grid { grid-template-columns: 1fr; gap: 12px; }
  .help-card {
    min-height: 0;
    padding: 20px 18px 18px;
  }
  .help-card > p { display: none; }
  .icon-tile { width: 48px; height: 48px; margin-bottom: 12px; }
  .icon-tile .ico-40 { width: 28px; height: 28px; }
  .help-card h3 { font-size: 18px; margin-bottom: 10px; }
  .help-chips { margin-bottom: 12px; }

  /* Featured: horizontal snap */
  #programs .grid-4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }
  #programs .grid-4::-webkit-scrollbar { display: none; }
  #programs .grid-4 > .prog-card {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: start;
    min-height: 0;
  }
  .prog-card { min-height: 0; }
  .prog-media { height: 160px; }

  /* Editorial 3:4 */
  .editorial { padding: 0 0 64px; }
  .editorial .wrap { padding-left: 0; padding-right: 0; width: 100%; }
  .editorial-figure {
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 0;
  }
  .editorial-figure img { object-position: center 48%; }
  .editorial-figure::after {
    background: linear-gradient(to top, rgba(11,31,58,0.78) 0%, rgba(11,31,58,0.28) 50%, rgba(11,31,58,0) 100%);
  }
  .editorial-copy { left: 20px; right: 20px; bottom: 24px; max-width: none; }
  .editorial-copy p { font-size: 24px; }

  /* Results */
  .results-grid { grid-template-columns: 1fr; }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; min-height: 44px; height: 44px; }
  .result-flow { grid-template-columns: 1fr; gap: 8px; }
  .result-arrow { padding-top: 0; transform: rotate(90deg); justify-self: start; }

  /* Team carousel */
  #team .grid-4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }
  #team .grid-4::-webkit-scrollbar { display: none; }
  #team .grid-4 > .team-card {
    flex: 0 0 72%;
    max-width: 72%;
    scroll-snap-align: start;
  }
  .team-photo { aspect-ratio: 3 / 4; }
  .team-exp, #team .note { display: none; }

  /* Insights stacked */
  .grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .insight-thumb { aspect-ratio: 16 / 10; }
  .insight-card h3 { font-size: 18px; }

  /* CTA */
  .cta-band { padding: 64px 0; }
  .cta-band h2 { font-size: 30px; max-width: none; }
  .cta-band .row-cta { margin-top: 24px; }

  /* Footer accordion */
  .footer { padding: 40px 0 24px; }
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
  }
  .ft-acc {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .ft-acc summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
  }
  .ft-acc summary::-webkit-details-marker { display: none; }
  .ft-acc summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(255,255,255,.7);
    border-bottom: 1.5px solid rgba(255,255,255,.7);
    transform: rotate(45deg);
    margin-left: 8px;
    flex-shrink: 0;
  }
  .ft-acc[open] summary::after { transform: rotate(-135deg); }
  .ft-acc a { min-height: 40px; display: flex; align-items: center; }
  .nap { flex-direction: column; gap: 16px; }
  .legal { flex-wrap: wrap; }

  /* Dock: 2-item sticky bar */
  .dock {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    border-radius: 0;
    box-shadow: 0 -8px 24px rgba(11, 31, 58, 0.08);
  }
  .dock-btn {
    flex: 1;
    height: auto;
    min-height: 48px;
    flex-direction: row;
    justify-content: center;
    padding: 0 10px;
    font-size: 13px;
    gap: 8px;
  }
  .dock-wechat { display: none !important; }
  .book-wechat-qr {
    width: 220px;
    height: 220px;
  }

  /* AI bottom sheet */
  .ai-backdrop.is-open { display: block; }
  .ai-panel {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 80vh;
    max-height: 80vh;
    border-radius: 16px 16px 0 0;
    z-index: 81;
  }

  /* Booking bottom sheet */
  .modal {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px 16px 0 0;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .modal-sm {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 360px;
    max-height: none;
    border-radius: var(--radius);
    padding: 28px 22px;
  }
  .discuss-btn { min-height: 48px; }
  .chip { min-height: 48px; }
}

@media (min-width: 861px) {
  .ft-acc { display: block; }
  .ft-acc summary {
    list-style: none;
    pointer-events: none;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }
  .ft-acc summary::-webkit-details-marker { display: none; }
  .ft-acc summary::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ——— Production additions (service pages, breadcrumbs, lang links, mobile header) ——— */
a.lang-btn { text-decoration: none; }
.header-book-m { display: none !important; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 20px 0 0;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand-navy); }
.crumbs .sep { color: var(--border); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 500; }

.svc-hero { padding: 36px 0 72px; }
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.svc-hero h1 { font-size: 44px; max-width: 14ch; }
html[lang="zh-Hans"] .svc-hero h1 { font-size: 40px; max-width: 12ch; }
.svc-hero .lede { font-size: 17px; margin-top: 16px; margin-bottom: 28px; }
.svc-photo {
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-blue) 50%, var(--border));
  background: var(--ice);
  box-shadow: var(--shadow-md);
}
.svc-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; }

.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.who-item {
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.who-item h3 { font-size: 16px; margin-bottom: 6px; }
.who-item p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.who-item .link-more { margin-top: 12px; display: inline-flex; }

.steps { display: grid; gap: 12px; }
.step {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.step-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-navy);
  padding-top: 2px;
}
html[lang="zh-Hans"] .step-num { letter-spacing: 0.04em; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }


.enrich-card {
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 760px;
}
.enrich-card h3 { font-size: 16px; margin-bottom: 6px; }
.enrich-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.enrich-card .link-more { margin-top: 12px; display: inline-flex; }

.related { display: flex; flex-wrap: wrap; gap: 8px; }
.related a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
}
.related a:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--ice);
}

.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hub-related {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.hub-related-label {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}
.hub-related a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-navy);
}
.hub-related a:hover { color: var(--brand-blue); }
.pillar-card {
  padding: 28px 28px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.pillar-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pillar-card h2 { font-size: 22px; margin-bottom: 10px; }
.pillar-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.pillar-card .help-chips { margin-bottom: 20px; }

.stage-panel[hidden] { display: none !important; }

@media (max-width: 860px) {
  .header-book-m { display: none !important; }
  .svc-hero { padding: 16px 0 48px; }
  .svc-hero-grid { display: flex; flex-direction: column; gap: 24px; }
  .svc-hero h1 { font-size: 32px; max-width: none; }
  html[lang="zh-Hans"] .svc-hero h1 { font-size: 30px; }
  .who-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 0; }
  .close-x {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}

.adm-card { min-height: 0; padding: 22px 24px; }
.adm-card h2 { font-size: 18px; margin-bottom: 12px; }
.adm-card .link-more { margin-top: auto; }

a.pill { color: inherit; }

/* One-stop journey — seven vertical capsules */
#one-stop {
  background: var(--ice);
  overflow-x: clip;
}
#one-stop .section-head { max-width: 760px; }
.one-stop-scroller {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.one-stop-track {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 8px 2px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.one-stop-track::-webkit-scrollbar { display: none; }
.one-stop-step {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.one-stop-capsule {
  width: 148px;
  min-width: 148px;
  flex-shrink: 0;
  min-height: 368px;
  padding: 26px 14px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 2px solid #d5e3ee;
  border-radius: 48px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, transform .15s ease;
}
.one-stop-capsule:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.one-stop-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #D8B46A;
  opacity: 0.72;
  margin-bottom: 10px;
}
html[lang="zh-Hans"] .one-stop-num { letter-spacing: 0.04em; }
.one-stop-icon-well {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #eef5fa;
  flex-shrink: 0;
  margin-bottom: 14px;
}
.one-stop-icon-well img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;
}
.one-stop-icon-well img.is-fallback {
  opacity: 0.55;
}
.one-stop-capsule h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-navy);
  line-height: 1.35;
  min-height: 2.7em;
  margin: 0 0 12px;
}
.one-stop-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: #D8B46A;
  opacity: 0.55;
  margin: 0 0 14px;
  flex-shrink: 0;
}
.one-stop-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.one-stop-bullets li {
  font-size: 12.5px;
  line-height: 1.45;
  color: #475569;
}
.one-stop-bullet-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
}
.one-stop-bullet-link:hover,
.one-stop-bullet-link:focus-visible {
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.one-stop-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  flex-shrink: 0;
  color: #D8B46A;
  align-self: center;
}
.one-stop-connector svg { width: 12px; height: 12px; display: block; }
.one-stop-nav {
  display: none;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-navy);
  align-items: center;
  justify-content: center;
}
.one-stop-scroller.is-overflow .one-stop-nav { display: inline-flex; }
.one-stop-nav svg { width: 16px; height: 16px; }
.one-stop-nav:hover { border-color: var(--brand-navy); }
.one-stop-nav:disabled {
  opacity: 0.35;
  cursor: default;
  border-color: var(--border);
}
.one-stop-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.one-stop-cta .pill-primary:hover {
  background: var(--brand-navy-hover);
  transform: translateY(-1px);
}
a.pill.one-stop-service-cta,
a.pill.one-stop-service-cta:visited,
a.pill.one-stop-service-cta:hover,
a.pill.one-stop-service-cta:focus-visible,
a.pill.one-stop-service-cta span {
  color: #ffffff;
}

@media (min-width: 1200px) {
  .one-stop-track { overflow-x: auto; padding-bottom: 8px; }
  .one-stop-scroller.is-overflow .one-stop-nav { display: none; }
  .one-stop-capsule { width: 142px; min-width: 142px; }
}

@media (max-width: 1199px) {
  .one-stop-capsule { width: 200px; min-width: 200px; min-height: 360px; }
  .one-stop-capsule h3 { font-size: 16px; }
  .one-stop-bullets li { font-size: 13px; }
}

@media (max-width: 860px) {
  .one-stop-scroller {
    margin-right: -20px;
    padding-right: 20px;
  }
  .one-stop-track {
    overflow-x: auto;
    scroll-padding-inline: 0;
  }
  .one-stop-step { width: min(280px, 78vw); }
  .one-stop-capsule {
    width: 100%;
    min-width: 0;
    min-height: 340px;
    border-radius: 40px;
    padding: 24px 18px 26px;
  }
  .one-stop-connector { display: none; }
  .one-stop-scroller.is-overflow .one-stop-nav { display: none; }
  .one-stop-cta .pill { width: auto; min-width: 80%; }
}

@media (prefers-reduced-motion: reduce) {
  .one-stop-capsule,
  .one-stop-cta .pill-primary { transition: none; }
  .one-stop-capsule:hover { transform: none; }
}

/* Rankings reference */
.rankings-entry { padding: 8px 0 24px; }
.rankings-home-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 36px;
  background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
  border-color: color-mix(in srgb, var(--accent-premium) 38%, var(--border));
  box-shadow: var(--shadow-sm);
}
.rankings-home-card .icon-tile { margin-bottom: 0; }
.rankings-home-copy { min-width: 0; }
.rankings-home-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--brand-navy);
}
.rankings-home-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 46em;
}
.rankings-home-card .link-more { margin-top: 16px; }

.rankings-hero { padding: 12px 0 8px; }
.rankings-hero .wrap { width: min(1280px, calc(100% - 48px)); }
.rankings-hero h1 {
  font-size: 36px;
  max-width: none;
  white-space: nowrap;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}
html[lang="zh-Hans"] .rankings-hero h1 {
  font-size: 34px;
  letter-spacing: 0;
  white-space: nowrap;
}
.rankings-hero .lede { margin-top: 16px; max-width: 40em; }
.rankings-section { padding-top: 24px; }

.rankings-sticky { display: grid; gap: 14px; margin-bottom: 18px; }
.rankings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rankings-tab {
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  white-space: normal;
  line-height: 1.3;
  text-align: center;
}
.rankings-tab:hover { color: var(--ink); border-color: var(--brand-navy); }
.rankings-tab.is-active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
}
.rankings-search-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.rankings-search {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.rankings-search:focus { border-color: var(--brand-navy); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--ice) 80%, #fff); }

.rankings-more { margin-bottom: 16px; }
.rankings-more > summary {
  display: none;
  list-style: none;
}
.rankings-more > summary::-webkit-details-marker { display: none; }
.rankings-filter-body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 16px;
}
.rankings-region {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  min-width: 220px;
}
.rankings-region[hidden],
.rankings-region select[hidden] { display: none !important; }
.rankings-region select {
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.rankings-tops { display: flex; flex-wrap: wrap; gap: 8px; }
.rankings-chip {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
}
.rankings-chip:hover { color: var(--ink); border-color: var(--ink); }
.rankings-chip.is-active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
}
.rankings-chip.is-active:hover { color: #fff; border-color: var(--brand-navy); }
.rankings-clear {
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rankings-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 14px;
}
.rankings-match { font-size: 13px; color: var(--muted); }
.rankings-disclaimer {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52em;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: var(--ice);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent-premium) 22%, var(--ice));
}
.rankings-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.rankings-meta strong {
  font-weight: 600;
  color: var(--brand-navy);
  margin-right: 6px;
}

.rankings-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.rankings-table {
  width: 100%;
  border-collapse: collapse;
}
.rankings-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 12px;
  background: #FBF8F2;
  border-bottom: 1px solid var(--border);
}
html[lang="zh-Hans"] .rankings-table th {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
}
.rankings-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.rankings-table tr:last-child td { border-bottom: 0; }
.rankings-table tbody tr:hover { background: color-mix(in srgb, var(--ice) 70%, #FBF8F2); }
.rank-cell { width: 64px; }
.logo-cell { width: 56px; }
.uni-cell { min-width: 0; }
.uni-cell .uni-link-en { font-size: 15px; line-height: 1.25; }
.uni-cell .uni-link-zh {
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}
.name-en-cell, .name-zh-cell { min-width: 140px; overflow-wrap: anywhere; }
.loc-cell { overflow-wrap: anywhere; }
.loc-cell, .src-cell { font-size: 14px; color: var(--muted); }
.uni-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--border) 80%, #fff);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.uni-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}
.uni-link {
  display: inline;
  color: var(--brand-navy);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}
.uni-link:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}
.uni-link:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 3px;
  border-radius: 2px;
}
.uni-link-en {
  display: block;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.uni-link-zh {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-navy);
}
.name-en-cell .uni-link-en,
.name-zh-cell .uni-link-zh { margin-top: 0; }
.uni-link .uni-link-arrow {
  display: inline-block;
  margin-left: 4px;
  opacity: 0;
  transform: translateX(-2px);
  transition: opacity .15s ease, transform .15s ease;
}
.uni-link:hover .uni-link-arrow,
.uni-link:focus-visible .uni-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
.uni-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
html[lang="zh-Hans"] .uni-name { letter-spacing: 0; }
.uni-name-alt {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.rank-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.rank-mark.is-navy { background: var(--ice); color: var(--brand-navy); }
.rank-mark.is-gold { background: #F4E7C8; color: #7A5A1E; }
.rank-mark.is-silver { background: #E7EBF1; color: #3E4A5C; }
.rank-mark.is-bronze { background: #F0E4D6; color: #6B4A2E; }

.rankings-cards { display: none; }
.rank-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 0;
}
.rank-card-body { min-width: 0; }
.uni-name-en {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.uni-name-zh { font-size: 14px; color: var(--ink); margin-top: 4px; }
.rank-card-loc, .rank-card-src { font-size: 13px; color: var(--muted); margin-top: 8px; }
.rank-card-src { margin-top: 4px; }

.rankings-coverage {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52em;
  margin: 0 0 16px;
}

.uni-page { padding: 12px 0 8px; }
.uni-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.uni-hero .uni-logo-box {
  width: 88px;
  height: 88px;
  padding: 10px;
  border-radius: 16px;
}
.uni-hero .uni-logo { width: 68px; height: 68px; }
.uni-kicker { margin-top: 8px; }
.uni-names h1 { font-size: 40px; color: var(--navy-900); letter-spacing: -0.03em; max-width: 18ch; }
html[lang="zh-Hans"] .uni-names h1 { font-size: 36px; letter-spacing: 0; }
.uni-subname {
  margin-top: 8px;
  font-size: 18px;
  color: var(--muted);
}
.uni-place {
  margin-top: 14px;
  max-width: 42em;
}
.uni-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--brand-navy);
  font-weight: 600;
  text-underline-offset: 3px;
}
.uni-site:hover { color: var(--brand-blue); text-decoration: underline; }
.uni-ranks { margin-top: 28px; }
.uni-ranks h2 { font-size: 22px; color: var(--brand-navy); margin-bottom: 12px; }
.uni-rank-list {
  display: grid;
  gap: 10px;
  max-width: 42em;
}
.uni-rank-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.uni-rank-row span { color: var(--muted); font-size: 14px; }
.uni-rank-missing { font-size: 13px; font-weight: 500; color: var(--muted); text-align: right; }
.uni-consult {
  margin-top: 28px;
  padding: 24px 28px;
  background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-premium) 38%, var(--border));
  border-radius: 14px;
  max-width: 42em;
}
.uni-consult h2 { font-size: 22px; color: var(--brand-navy); margin-bottom: 8px; }
.uni-consult p { color: var(--muted); margin-bottom: 16px; }

.rankings-empty.empty-state {
  display: block;
  margin-top: 8px;
}
.rankings-empty[hidden] { display: none !important; }
.rankings-official {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.rankings-foot {
  margin-top: 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52em;
}

@media (max-width: 860px) {
  .rankings-entry { padding: 0 0 8px; }
  .rankings-home-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .rankings-home-card h2 { font-size: 22px; }
  .rankings-hero { padding-top: 8px; }
  .rankings-hero .wrap { width: calc(100% - 40px); }
  .rankings-hero h1 { font-size: 28px; max-width: 18ch; white-space: normal; }
  html[lang="zh-Hans"] .rankings-hero h1 { font-size: 26px; max-width: none; white-space: normal; }
  .rankings-section { padding-top: 8px; }
  .rankings-sticky {
    position: sticky;
    top: var(--header);
    z-index: 40;
    background: var(--canvas);
    padding: 10px 0 12px;
    margin: 0 -20px 14px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid var(--border);
  }
  .rankings-tab {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
    min-height: 52px;
    font-size: 13px;
    padding: 8px 10px;
  }
  .rankings-more > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    font-size: 15px;
    font-weight: 500;
    color: var(--brand-navy);
    cursor: pointer;
  }
  .rankings-more > summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--brand-navy);
    border-bottom: 1.5px solid var(--brand-navy);
    transform: rotate(45deg);
  }
  .rankings-more[open] > summary::after { transform: rotate(-135deg); }
  .rankings-filter-body { padding-bottom: 8px; }
  .rankings-region { min-width: 100%; width: 100%; }
  .rankings-region select, .rankings-clear { width: 100%; }
  .rankings-table-wrap { display: none; }
  .rankings-cards { display: grid; gap: 10px; }
  .rankings-official { flex-direction: column; }
  .rankings-official .pill { width: 100%; }
  .uni-logo-box {
    width: 36px;
    height: 36px;
    padding: 3px;
    border-radius: 8px;
  }
  .uni-logo { width: 30px; height: 30px; }
  .uni-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .uni-hero .uni-logo-box {
    width: 64px;
    height: 64px;
  }
  .uni-hero .uni-logo { width: 48px; height: 48px; }
  .uni-names h1 { font-size: 30px; max-width: none; }
  html[lang="zh-Hans"] .uni-names h1 { font-size: 28px; }
  .uni-rank-row { grid-template-columns: 1fr; }
  .m-link.is-active { color: var(--brand-navy); font-weight: 600; }
}

/* Shared offer carousel (admissions hub + homepage) */
.offers-section {
  --offers-shown: 3.4;
  --offers-gap: 16px;
  background: var(--ice);
  padding: 72px 0 80px;
  overflow-x: clip;
}
.offers-section.offers-home {
  padding: 56px 0 64px;
}
.offers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.offers-head .section-head { margin-bottom: 0; }
.offers-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.offers-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.offers-nav svg { width: 14px; height: 14px; }
.offers-nav:hover {
  border-color: var(--brand-navy);
  background: var(--surface);
  color: var(--brand-navy);
}
.offers-nav:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}
.offers-carousel { min-width: 0; }
.offers-viewport {
  container-type: inline-size;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  outline: none;
}
.offers-viewport.is-dragging { cursor: grabbing; user-select: none; }
.offers-viewport.is-reduced {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  cursor: auto;
  scrollbar-width: none;
}
.offers-viewport.is-reduced::-webkit-scrollbar { display: none; }
.offers-track {
  display: flex;
  gap: var(--offers-gap);
  width: max-content;
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 0;
}
.offers-viewport.is-reduced .offers-track { will-change: auto; }
.offer-slide {
  flex: 0 0 calc((100cqi - (var(--offers-shown) - 1) * var(--offers-gap)) / var(--offers-shown));
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.offers-viewport.is-reduced .offer-slide { scroll-snap-align: start; }
.offer-card {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.offer-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy-800);
  flex-shrink: 0;
}
.offer-media picture,
.offer-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.offer-media img {
  max-width: none;
  object-fit: cover;
  object-position: top;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.offer-body {
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  background: var(--surface);
}
.offer-card h3 {
  font-size: 16px;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}
html[lang="zh-Hans"] .offer-card h3 {
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1.3;
}
.offer-program {
  font-size: 13.5px;
  line-height: 1.45;
  min-height: calc(1.45em * 3);
  color: var(--ink);
}
.offers-disclaimer {
  margin-top: 18px;
  max-width: 720px;
}
.offers-cta {
  margin-top: 18px;
  gap: 8px;
}
.offers-cta .arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}
.offers-cta:hover .arrow { transform: translateX(3px); }
a.pill.offers-cta,
a.pill.offers-cta:visited,
a.pill.offers-cta:hover,
a.pill.offers-cta:focus-visible,
a.pill.offers-cta span,
a.pill.offers-cta .arrow {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .offers-section { --offers-shown: 2.2; }
}

@media (max-width: 860px) {
  .offers-section {
    --offers-shown: 1.15;
    --offers-gap: 12px;
    padding: 48px 0 56px;
  }
  .offers-section.offers-home { padding: 40px 0 48px; }
  .offers-head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 20px;
  }
  .offers-controls { align-self: flex-end; }
  .offer-media { max-height: min(42vh, 340px); }
  .offer-body { padding: 10px 14px 12px; }
  .offer-card h3 { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .offers-track { will-change: auto; }
}

/* High school long-term planning — dedicated service page */
.hsp-hero .lede { max-width: 68ch; }
.hsp-hero h1 { max-width: 16ch; }
html[lang="zh-Hans"] .svc-hero.hsp-hero h1 {
  max-width: none;
}
@media (min-width: 861px) {
  html[lang="zh-Hans"] .svc-hero.hsp-hero h1 {
    white-space: nowrap;
  }
}

#hsp-pillars,
#hsp-timeline,
#hsp-deliverables,
#hsp-process,
#hsp-boundary,
#hsp-faq,
#hsp-close {
  overflow-x: clip;
}
#hsp-pillars .section-head,
#hsp-timeline .section-head,
#hsp-deliverables .section-head,
#hsp-process .section-head,
#hsp-boundary .section-head,
#hsp-faq .section-head { max-width: 760px; }

.hsp-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.hsp-pillars-row {
  display: grid;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}
.hsp-pillars-row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hsp-pillars-row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc((100% - 48px) * 0.75 + 32px);
  margin-inline: auto;
}
.hsp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 22px 20px 20px;
  background: var(--surface);
  border: 1px solid #d7e1ec;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(15, 39, 74, 0.04);
}
.hsp-icon-well {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eef5fa;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.hsp-icon-well img {
  width: 52px;
  height: 52px;
  max-width: 52px;
  object-fit: contain;
  background: transparent;
}
.hsp-card-copy { min-width: 0; }
.hsp-card h3 {
  font-size: 17px;
  color: var(--brand-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.hsp-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

#hsp-timeline { background: var(--canvas-alt); }
.hsp-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}
.hsp-tl-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 16px;
}
.hsp-tl-axis {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.hsp-tl-num {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 10px;
}
html[lang="zh-Hans"] .hsp-tl-num { letter-spacing: 0; }
.hsp-tl-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-navy);
  box-shadow: 0 0 0 4px #e8eef6;
  flex-shrink: 0;
  z-index: 1;
}
.hsp-tl-line {
  display: block;
  width: calc(100% + 16px);
  height: 1px;
  margin-top: -6.5px;
  margin-left: 12px;
  background: #c5d2e0;
}
.hsp-tl-item:last-child .hsp-tl-line {
  width: calc(100% - 12px);
}
.hsp-tl-copy h3 {
  font-size: 17px;
  color: var(--brand-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.hsp-tl-copy p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
.hsp-tl-end {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-navy);
}
.hsp-tl-end::after {
  content: "→";
  font-weight: 500;
}
.hsp-tl-end:hover { color: var(--brand-blue); }

.hsp-delivs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.hsp-deliv {
  min-width: 0;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid #d7e1ec;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(15, 39, 74, 0.04);
}

#hsp-process { background: var(--ice); }
.hsp-process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px 8px;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.hsp-proc-step {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.hsp-proc-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid #d7e1ec;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-navy);
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}
.hsp-proc-arrow {
  color: #9aacbf;
  font-size: 16px;
  padding: 0 1px;
  flex-shrink: 0;
}
.hsp-proc-step:last-child .hsp-proc-arrow { display: none; }

@media (max-width: 1199px) {
  .hsp-process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hsp-proc-step:nth-child(3n) .hsp-proc-arrow { display: none; }
  .hsp-proc-label { font-size: 14px; padding: 8px 12px; }
}

.hsp-process-note {
  margin-top: 20px;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.hsp-boundary {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.hsp-boundary a {
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hsp-boundary a:hover { color: var(--brand-blue); }
.hsp-related-title {
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: 18px;
}

.hsp-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}
.hsp-faq-item {
  background: var(--surface);
  border: 1px solid #d7e1ec;
  border-radius: 16px;
  padding: 0;
}
.hsp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 48px 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  position: relative;
}
.hsp-faq-item summary::-webkit-details-marker { display: none; }
.hsp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.hsp-faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}
.hsp-faq-item[open] summary::after { content: "–"; }
.hsp-faq-item p {
  padding: 14px 20px 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

#hsp-close { background: var(--ice); }
#hsp-close h2 {
  font-size: 36px;
  max-width: 18ch;
  margin-bottom: 12px;
}
html[lang="zh-Hans"] #hsp-close h2 { max-width: 14ch; }
#hsp-close .lede { max-width: 62ch; }
#hsp-close .row-cta { margin-top: 24px; }

@media (max-width: 1100px) {
  .hsp-pillars-row--4,
  .hsp-pillars-row--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .hsp-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .hsp-tl-item { padding-right: 8px; }
  .hsp-tl-item:nth-child(2n) .hsp-tl-line { width: calc(100% - 12px); }
  .hsp-tl-item:nth-child(2n-1) .hsp-tl-line { width: calc(100% + 20px); }
}

@media (max-width: 720px) {
  .hsp-hero h1,
  html[lang="zh-Hans"] .svc-hero.hsp-hero h1 {
    max-width: none;
    white-space: normal;
  }
  .hsp-pillars-row--4,
  .hsp-pillars-row--3 { grid-template-columns: 1fr; }
  .hsp-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }
  .hsp-icon-well {
    width: 68px;
    height: 68px;
    margin-bottom: 0;
  }
  .hsp-icon-well img {
    width: 40px;
    height: 40px;
    max-width: 40px;
  }
  .hsp-card h3 { font-size: 16px; }
  .hsp-card p { font-size: 14px; }
  .hsp-timeline { grid-template-columns: 1fr; gap: 0; }
  .hsp-tl-item {
    flex-direction: row;
    gap: 16px;
    padding: 0 0 24px;
  }
  .hsp-tl-axis {
    flex-direction: column;
    align-items: center;
    width: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .hsp-tl-num { font-size: 22px; margin-bottom: 8px; }
  .hsp-tl-line {
    width: 1px;
    height: 100%;
    min-height: 28px;
    margin: 6px 0 0;
    margin-left: 0;
    flex: 1;
  }
  .hsp-tl-item:last-child .hsp-tl-line { display: none; }
  .hsp-tl-item:nth-child(n) .hsp-tl-line { width: 1px; }
  .hsp-delivs { grid-template-columns: 1fr; }
  .hsp-process { grid-template-columns: 1fr; max-width: 420px; }
  .hsp-proc-step { flex-direction: column; }
  .hsp-proc-step:nth-child(3n) .hsp-proc-arrow { display: inline; }
  .hsp-proc-step:last-child .hsp-proc-arrow { display: none; }
  .hsp-proc-arrow { transform: rotate(90deg); }
  .hsp-proc-label { font-size: 14px; padding: 10px 14px; }
  #hsp-close h2,
  html[lang="zh-Hans"] #hsp-close h2 {
    font-size: 28px;
    max-width: none;
  }
}

/* Boarding school explorer — high-school-admissions only */
.board-section {
  --board-shown: 5.65;
  --board-gap: 16px;
  background: var(--canvas);
  overflow-x: clip;
}
.board-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.board-head .section-head {
  margin-bottom: 0;
  max-width: 760px;
}
.board-controls {
  display: inline-flex;
  gap: 8px;
  flex-shrink: 0;
}
.board-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.board-nav svg { width: 14px; height: 14px; }
.board-nav:hover { border-color: var(--brand-navy); }
.board-nav:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 3px;
}
.board-carousel { min-width: 0; }
.board-viewport {
  overflow: hidden;
  container-type: inline-size;
  cursor: grab;
  touch-action: pan-y;
}
.board-viewport.is-dragging { cursor: grabbing; user-select: none; }
.board-viewport.is-reduced {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.board-viewport.is-reduced::-webkit-scrollbar { display: none; }
.board-track {
  display: flex;
  gap: var(--board-gap);
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 4px 2px 10px;
}
.board-viewport.is-reduced .board-track { will-change: auto; }
.board-slide {
  flex: 0 0 calc((100cqi - (var(--board-shown) - 1) * var(--board-gap)) / var(--board-shown));
  min-width: 168px;
  max-width: 280px;
}
.board-viewport.is-reduced .board-slide { scroll-snap-align: start; }
.board-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 228px;
  padding: 20px 18px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.board-card:hover {
  transform: translateY(-3px);
  border-color: #c5d4e6;
  box-shadow: var(--shadow-md);
}
.board-logo-well {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fb;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.board-logo-well--light {
  background: #f4f7fb;
  border-color: var(--border);
}
.board-logo-well--dark {
  background: #173765;
  border-color: #274b7c;
}
.board-logo-well img {
  width: 100%;
  height: 56px;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  object-position: center;
}
.board-logo-well img.is-fallback { opacity: 0.85; }
.board-name-en {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  line-height: 1.3;
}
html[lang="zh-Hans"] .board-name-en { letter-spacing: 0; }
.board-name-zh {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--navy-800);
  line-height: 1.4;
}
.board-loc {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--muted);
}
.board-hint {
  display: inline-flex;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-navy);
}
.board-card:hover .board-hint { color: var(--brand-blue); }
.board-foot { margin-top: 28px; }
.board-cta { margin-bottom: 16px; }
.board-disclaimer {
  max-width: 760px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .board-section { --board-shown: 4.25; }
}
@media (max-width: 1024px) {
  .board-section { --board-shown: 3.35; }
}
@media (max-width: 860px) {
  .board-section { --board-shown: 1.75; --board-gap: 12px; }
  .board-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .board-controls { align-self: flex-end; }
  .board-card { min-height: 210px; padding: 16px 14px 14px; }
  .board-logo-well { width: 100%; height: 48px; }
  .board-logo-well img {
    width: 100%;
    height: 44px;
    max-width: 100%;
    max-height: 44px;
  }
  .board-name-en { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .board-track { will-change: auto; }
  .board-card,
  .board-card:hover { transform: none; }
}

@media (max-width: 1100px) and (min-width: 861px) {
  .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Academic Appeals & Student Support — dedicated service page */
.aa-hero .lede { max-width: 68ch; }
.aa-hero h1 { max-width: 18ch; }
html[lang="zh-Hans"] .aa-hero h1 { max-width: none; }
.aa-support {
  margin: 16px 0 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brand-navy);
  letter-spacing: 0.01em;
}
html[lang="zh-Hans"] .aa-support { letter-spacing: 0; }
.aa-hero .row-cta { margin-top: 0; }

#aa-situations,
#aa-process,
#aa-notice,
#aa-faq,
#aa-disclaimer {
  overflow-x: clip;
}
#aa-situations .section-head,
#aa-process .section-head,
#aa-faq .section-head { max-width: 760px; }

.aa-situations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}
.aa-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 22px 20px 20px;
  background: var(--surface);
  border: 1px solid #d7e1ec;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(15, 39, 74, 0.04);
}
.aa-icon-well {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eef5fa;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.aa-icon-well img {
  width: 52px;
  height: 52px;
  max-width: 52px;
  object-fit: contain;
}
.aa-card h3 {
  font-size: 17px;
  color: var(--brand-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.aa-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

#aa-process { background: var(--canvas-alt); }
.aa-process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.aa-proc-step {
  min-width: 0;
  padding: 20px 16px 18px;
  background: var(--surface);
  border: 1px solid #d7e1ec;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 39, 74, 0.04);
}
.aa-proc-num {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #D8B46A;
}
html[lang="zh-Hans"] .aa-proc-num { letter-spacing: 0.04em; }
.aa-proc-copy h3 {
  font-size: 16px;
  color: var(--brand-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.aa-proc-copy p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.aa-notice {
  padding: 32px 36px;
  background: var(--ice);
  border: 1px solid #d7e1ec;
  border-left: 4px solid #D8B46A;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(15, 39, 74, 0.04);
}
.aa-notice h2 {
  font-size: 26px;
  max-width: 22ch;
  margin-bottom: 12px;
  color: var(--brand-navy);
}
html[lang="zh-Hans"] .aa-notice h2 { max-width: none; }
.aa-notice p {
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 22px;
}
.aa-notice .pill-primary:hover { background: var(--brand-navy-hover); }
.aa-notice .pill-primary:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 3px;
}

.aa-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}
.aa-faq-item {
  background: var(--surface);
  border: 1px solid #d7e1ec;
  border-radius: 16px;
}
.aa-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 48px 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  position: relative;
}
.aa-faq-item summary::-webkit-details-marker { display: none; }
.aa-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.aa-faq-item[open] summary { border-bottom: 1px solid var(--border); }
.aa-faq-item[open] summary::after { content: "–"; }
.aa-faq-item p {
  padding: 14px 20px 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

#aa-disclaimer { padding-top: 24px; padding-bottom: 72px; }
.aa-disclaimer {
  max-width: 860px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}

@media (max-width: 1100px) {
  .aa-situations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aa-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aa-proc-step:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .aa-hero h1,
  html[lang="zh-Hans"] .aa-hero h1 { max-width: none; }
  .aa-situations { grid-template-columns: 1fr; }
  .aa-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }
  .aa-icon-well {
    width: 68px;
    height: 68px;
    margin-bottom: 0;
  }
  .aa-icon-well img {
    width: 40px;
    height: 40px;
    max-width: 40px;
  }
  .aa-process { grid-template-columns: 1fr; }
  .aa-proc-step:last-child { grid-column: auto; }
  .aa-notice { padding: 24px 20px; }
  .aa-notice h2 { font-size: 22px; }
  .aa-notice .pill { width: 100%; }
}

/* About page redesign */
.about-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-hero {
  padding: 28px 0 56px;
  background:
    linear-gradient(180deg, rgba(234, 242, 251, 0.9) 0%, rgba(247, 249, 252, 1) 48%, #fff 100%);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.about-hero-copy { min-width: 0; }
.about-hero-copy .kicker { margin-top: 20px; }
.about-hero h1 {
  font-size: 42px;
  max-width: 18ch;
  color: var(--navy-900);
}
html[lang="zh-Hans"] .about-hero h1 {
  font-size: 36px;
  max-width: 16ch;
}
.about-hero .lede {
  font-size: 17px;
  margin-top: 16px;
  margin-bottom: 28px;
  max-width: 54ch;
}
.about-hero-media {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-blue) 42%, var(--border));
  box-shadow: var(--shadow-lg);
  background: var(--ice);
}
.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(32, 60, 112, 0.22) 0%, rgba(0, 164, 228, 0.08) 42%, rgba(32, 60, 112, 0) 70%);
}
.about-strip {
  background: var(--navy-900);
  padding: 28px 0;
}
.about-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}
.about-adv {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
}
.about-adv .icon-tile {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}
.about-adv .ico { color: #F4E7C8; }
.about-adv p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
html[lang="zh-Hans"] .about-adv p { letter-spacing: 0; }

.about-band { overflow-x: clip; }
.about-band-white { background: #fff; }
.about-band-ice { background: var(--ice); }
.about-band-mist { background: var(--canvas-alt); }
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.about-split-reverse { direction: rtl; }
.about-split-reverse > * { direction: ltr; }
.about-split-media {
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ice);
  box-shadow: var(--shadow-md);
}
.about-split-copy { min-width: 0; }
.about-split-copy h2 { max-width: 16ch; }
html[lang="zh-Hans"] .about-split-copy h2 { max-width: 12ch; }
.about-split-copy .lede { max-width: 54ch; }

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.about-why-card {
  padding: 22px 20px 24px;
  min-width: 0;
  box-shadow: var(--shadow-sm);
}
.about-why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.about-why-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.about-facts {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.about-fact {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
}
.about-fact-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 2px;
}
html[lang="zh-Hans"] .about-fact-label {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
}
.about-fact-value { font-weight: 500; color: var(--ink); min-width: 0; overflow-wrap: anywhere; }
.about-fact-value a { color: var(--brand-navy); }
.about-fact-value a:hover { color: var(--brand-blue-hover); }

.about-path-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}
.about-path-intro .section-head { margin-bottom: 0; }
.about-path-media {
  min-width: 0;
  aspect-ratio: 3 / 4;
  max-height: 360px;
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ice);
  box-shadow: var(--shadow-md);
}
.about-path-media .about-photo { object-position: center 40%; }
.about-path {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding-right: 8px;
}
@media (min-width: 1101px) {
  .about-path { padding-right: 88px; }
}
.about-stage { min-width: 0; display: flex; }
.about-stage-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 16px 12px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, transform .15s ease;
}
.about-stage-card:hover {
  border-color: var(--brand-navy);
  transform: translateY(-2px);
}
.about-stage-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-premium);
}
.about-stage-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef5fa;
}
.about-stage-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.about-stage-card h3 {
  font-size: 14px;
  letter-spacing: -0.02em;
}
html[lang="zh-Hans"] .about-stage-card h3 { letter-spacing: 0; font-size: 14.5px; }
.about-stage-card p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}
.about-stage-connector { display: none; }

.offers-section.offers-about {
  background: var(--surface-blue);
}

.about-work {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.about-work-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 22px 20px 24px;
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.about-work-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brand-navy);
}
.about-work-step h3 { font-size: 18px; margin-bottom: 6px; }
.about-work-step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.about-work-link { margin-top: 28px; }

.about-cta {
  background:
    linear-gradient(180deg, #122A4A 0%, #0B1F3A 100%);
  color: #fff;
  overflow-x: clip;
}
.about-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}
.about-cta h2 { color: #fff; max-width: 16ch; }
html[lang="zh-Hans"] .about-cta h2 { max-width: 12ch; }
.about-cta .lede { color: rgba(169, 199, 222, 0.92); }
.about-cta-media {
  min-width: 0;
  aspect-ratio: 3 / 4;
  max-height: 520px;
  border-radius: var(--radius-media);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0B1F3A;
}
.about-cta-media .about-photo { object-position: center 30%; }
.about-cta-copy { min-width: 0; }
.about-facts-on-dark .about-fact-label { color: rgba(169, 199, 222, 0.78); }
.about-facts-on-dark .about-fact-value,
.about-facts-on-dark .about-fact-value a { color: #fff; }
.about-facts-on-dark .about-fact-value a:hover { color: #F4E7C8; }
.about-wechat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 24px;
}
.about-wechat-qr {
  width: 132px;
  height: 132px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}
.about-copy-wechat {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.about-copy-wechat:hover {
  border-color: #fff;
  color: #fff;
}
.about-toast { color: #F4E7C8; }
.about-cta .pill-invert { background: #fff; color: var(--brand-navy); }
.about-cta .pill-invert:hover { background: var(--ice); }
.about-cta .pill-outline-light:hover { color: #fff; }

@media (max-width: 1100px) {
  .about-why-grid,
  .about-work { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-path {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 8px;
  }
  .about-stage {
    position: relative;
    padding-left: 28px;
    padding-bottom: 18px;
  }
  .about-stage:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 18px;
    bottom: 0;
    width: 2px;
    background: color-mix(in srgb, var(--accent-premium) 70%, var(--border));
  }
  .about-stage::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--brand-navy);
  }
  .about-stage-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 14px;
    padding: 16px 16px 16px 18px;
  }
  .about-stage-card:hover { transform: none; }
  .about-stage-icon { width: 48px; height: 48px; }
  .about-stage-card h3,
  .about-stage-card p { flex: 1 1 180px; }
  .about-hero h1 { max-width: none; }
  html[lang="zh-Hans"] .about-hero h1 { max-width: none; }
}

@media (max-width: 860px) {
  .about-hero { padding: 12px 0 32px; }
  .about-hero-grid,
  .about-split,
  .about-split-reverse,
  .about-path-intro,
  .about-cta-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .about-hero h1,
  html[lang="zh-Hans"] .about-hero h1 { font-size: 30px; max-width: none; }
  .about-hero-media { aspect-ratio: 16 / 10; }
  .about-strip { padding: 20px 0; }
  .about-strip-grid { grid-template-columns: 1fr 1fr; gap: 12px 16px; }
  .about-split-copy h2,
  html[lang="zh-Hans"] .about-split-copy h2 { max-width: none; }
  .about-path-media {
    aspect-ratio: 16 / 10;
    max-height: none;
    width: 100%;
  }
  .about-cta-media {
    aspect-ratio: 16 / 10;
    max-height: none;
    width: 100%;
  }
  .about-fact { grid-template-columns: 72px minmax(0, 1fr); }
  .about-wechat { align-items: flex-start; }
}

@media (max-width: 560px) {
  .about-why-grid,
  .about-work,
  .about-strip-grid { grid-template-columns: 1fr; }
  .about-stage-card { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .about-stage-card,
  .about-why-card { transition: none; }
  .about-stage-card:hover { transform: none; }
}
