@charset "UTF-8";
/* =========================================================
   ASWF 中国中心 — 版块样式
   Hero / Stats / Programs / Schools / Majors / News / CTA ...
   ========================================================= */

/* ---------- 1. 首页 Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 64px) 0 96px;
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* 背景光晕 */
.hero-orbs { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.orb-1 { width: 640px; height: 640px; top: -14%; right: -8%; background: radial-gradient(circle, rgba(29, 111, 216, .85), transparent 66%); animation: float1 19s var(--ease-in-out) infinite; }
.orb-2 { width: 520px; height: 520px; bottom: -18%; left: -6%; background: radial-gradient(circle, rgba(198, 154, 76, .7), transparent 66%); animation: float2 23s var(--ease-in-out) infinite; }
.orb-3 { width: 400px; height: 400px; top: 34%; left: 42%; background: radial-gradient(circle, rgba(55, 198, 232, .5), transparent 66%); animation: float3 27s var(--ease-in-out) infinite; }
@keyframes float1 { 0%,100% { transform: none; } 50% { transform: translate(-70px, 60px) scale(1.14); } }
@keyframes float2 { 0%,100% { transform: none; } 50% { transform: translate(80px, -50px) scale(1.1); } }
@keyframes float3 { 0%,100% { transform: none; } 33% { transform: translate(60px, 50px); } 66% { transform: translate(-50px, 30px); } }

/* 背景网格 + 噪点 */
.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse 90% 75% at 45% 45%, #000 15%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 45% 45%, #000 15%, transparent 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, transparent 55%, rgba(3, 11, 22, .92) 100%);
}

/* 浮动光点 */
.hero-dots { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-dots i {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-300); opacity: .5;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  15% { opacity: .7; }
  100% { transform: translateY(-88vh) scale(1.3); opacity: 0; }
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center;
  width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px;
}

.hero-title {
  font-size: clamp(36px, 5.6vw, 72px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.03em;
  margin: 26px 0 0;
}
.hero-title .gold {
  background: var(--grad-text-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead {
  margin-top: 26px;
  font-size: clamp(15.5px, 1.35vw, 18px);
  line-height: 1.95;
  color: rgba(220, 230, 242, .74);
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

/* Hero 三大标签 */
.hero-tags { display: flex; gap: 10px; margin-top: 42px; flex-wrap: wrap; }
.hero-tag {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  border-radius: 99px;
  font-size: 14px; font-weight: 500;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  transition: transform .45s var(--ease-spring), border-color .35s, background .35s;
}
.hero-tag:hover { transform: translateY(-4px); border-color: rgba(220, 184, 110, .5); background: rgba(220, 184, 110, .1); }
.hero-tag svg { width: 17px; height: 17px; color: var(--gold-400); }

/* Hero 视觉卡片组 */
.hero-visual { position: relative; height: 520px; }
.hero-card {
  position: absolute;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, .115), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(3, 11, 22, .45);
  will-change: transform;
}
.hero-card--main {
  top: 34px; left: 6%; right: 12%;
  padding: 30px;
  animation: bobA 7s var(--ease-in-out) infinite;
}
.hero-card--stat {
  bottom: 92px; right: 0; width: 232px;
  animation: bobB 8.5s var(--ease-in-out) infinite;
}
.hero-card--flag {
  bottom: 8px; left: 2%;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  animation: bobC 9.5s var(--ease-in-out) infinite;
}
@keyframes bobA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes bobB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(14px); } }
@keyframes bobC { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-11px) rotate(1deg); } }

.hc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hc-label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.hc-seal {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--grad-gold); color: var(--navy-900);
}
.hc-seal svg { width: 20px; height: 20px; }
.hc-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0;
  font-size: 14.5px; color: rgba(255, 255, 255, .82);
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
}
.hc-list li:last-child { border-bottom: 0; }
.hc-list svg { width: 17px; height: 17px; color: var(--cyan-300); flex-shrink: 0; margin-top: 4px; }
.hc-num {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 700; line-height: 1;
  background: var(--grad-text-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hc-num-cap { font-size: 13.5px; color: rgba(255, 255, 255, .58); margin-top: 8px; }
.hc-flag {
  width: 46px; height: 32px; border-radius: 5px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
  display: grid; place-items: center; overflow: hidden;
}
.hc-flag svg { width: 100%; height: 100%; }
.hc-flag-txt { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, .78); }
.hc-flag-txt b { display: block; color: #fff; font-size: 14.5px; }
.hc-arrow { color: var(--gold-400); }

/* 滚动提示 */
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  z-index: 2;
}
.scroll-cue i { width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,.05), var(--gold-400)); position: relative; overflow: hidden; }
.scroll-cue i::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: var(--gold-300);
  animation: cue 2.2s var(--ease-in-out) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* ---------- 2. 内页 Hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 82px) 0 82px;
  background: var(--grad-navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 100% at 85% 0%, rgba(29, 111, 216, .5), transparent 60%),
    radial-gradient(ellipse 50% 90% at 5% 100%, rgba(198, 154, 76, .34), transparent 62%);
}
.page-hero-inner { position: relative; }
.page-hero h1 {
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 800; letter-spacing: -.025em;
  margin: 18px 0 0;
}
.page-hero h1 .gold {
  background: var(--grad-text-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p { margin-top: 20px; max-width: 62ch; font-size: clamp(15px, 1.3vw, 17px); color: rgba(220, 230, 242, .72); line-height: 1.9; }
.crumb { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255, 255, 255, .5); }
.crumb a:hover { color: var(--gold-300); }
.crumb span.sep { opacity: .45; }
.crumb .now { color: var(--gold-300); }

/* ---------- 3. 数据统计 ---------- */
.stats-band {
  position: relative;
  margin-top: -62px; z-index: 5;
}
.stats-card {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.stat {
  padding: 38px 26px;
  text-align: center;
  position: relative;
  transition: background .4s;
}
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; height: 52%; width: 1px; background: var(--line); }
.stat:hover { background: var(--ink-50); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 50px); font-weight: 700; line-height: 1;
  color: var(--navy-800);
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-num .suf { font-size: .48em; color: var(--gold-600); font-weight: 600; }
.stat-cap { margin-top: 12px; font-size: 14.5px; color: var(--text-soft); }

/* ---------- 4. 关于 / 图文块 ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.split--visual-first .split-visual { order: -1; }

.figure-stack { position: relative; }
.figure-main {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grad-navy);
  box-shadow: var(--sh-lg);
}
.figure-main::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(220, 184, 110, .35), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(55, 198, 232, .28), transparent 55%);
}
.figure-main svg { position: relative; z-index: 1; width: 100%; height: 100%; }
.figure-tag {
  position: absolute; bottom: -26px; right: -18px;
  padding: 20px 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
  text-align: center;
  animation: bobB 7s var(--ease-in-out) infinite;
}
.figure-tag b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px; line-height: 1; color: var(--gold-600);
}
.figure-tag small { font-size: 12.5px; color: var(--text-soft); letter-spacing: .05em; }
.figure-ring {
  position: absolute; top: -34px; left: -34px;
  width: 130px; height: 130px; border-radius: 50%;
  border: 1px dashed rgba(198, 154, 76, .5);
  animation: spin 26s linear infinite;
  z-index: -1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.prose p { margin-bottom: 18px; line-height: 2; color: var(--ink-700); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy-800); font-weight: 700; }

.check-list { margin-top: 30px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--ink-700); }
.check-list .ic {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0; margin-top: 3px;
  display: grid; place-items: center;
  background: rgba(198, 154, 76, .14); color: var(--gold-600);
}
.check-list .ic svg { width: 14px; height: 14px; }

/* ---------- 5. 项目卡片 ---------- */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prog-card {
  position: relative;
  padding: 38px 32px 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .5s;
  display: flex; flex-direction: column;
}
.prog-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--grad-navy);
  opacity: 0; transition: opacity .6s var(--ease-out);
}
.prog-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .7s var(--ease-out);
}
.prog-card > * { position: relative; z-index: 1; }
.prog-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); border-color: transparent; }
.prog-card:hover::before { opacity: 1; }
.prog-card:hover::after { transform: scaleX(1); }

.prog-idx {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .2em; color: var(--ink-400);
  transition: color .5s;
}
.prog-ic {
  width: 62px; height: 62px; margin: 18px 0 22px;
  border-radius: 17px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(11, 35, 64, .07), rgba(29, 111, 216, .1));
  color: var(--navy-700);
  transition: background .5s, color .5s, transform .6s var(--ease-spring);
}
.prog-ic svg { width: 29px; height: 29px; }
.prog-card:hover .prog-ic { background: var(--grad-gold); color: var(--navy-900); transform: rotate(-6deg) scale(1.06); }
.prog-card h3 { font-size: 22px; margin-bottom: 8px; transition: color .5s; }
.prog-ko { font-size: 13px; letter-spacing: .06em; color: var(--ink-400); margin-bottom: 16px; transition: color .5s; }
.prog-card p { font-size: 14.8px; line-height: 1.9; color: var(--text-soft); transition: color .5s; }
.prog-meta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.prog-meta span {
  padding: 6px 13px; border-radius: 99px;
  font-size: 12.5px; font-weight: 500;
  background: var(--ink-50); color: var(--ink-700);
  border: 1px solid var(--line);
  transition: background .5s, color .5s, border-color .5s;
}
.prog-foot { margin-top: auto; padding-top: 26px; }
.prog-card:hover h3 { color: #fff; }
.prog-card:hover p { color: rgba(220, 230, 242, .74); }
.prog-card:hover .prog-idx, .prog-card:hover .prog-ko { color: rgba(220, 230, 242, .55); }
.prog-card:hover .prog-meta span { background: rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .82); border-color: rgba(255, 255, 255, .14); }
.prog-card:hover .link-arrow { color: var(--gold-300); }

/* ---------- 6. 优势 / 特色格 ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .1); border-radius: var(--radius-lg); overflow: hidden; }
/* 6 项内容用 3 列才排满，避免末行留空格 */
.feat-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feat {
  padding: 40px 30px;
  background: var(--navy-900);
  transition: background .5s var(--ease-out);
  position: relative; overflow: hidden;
}
.feat::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(198, 154, 76, .2), transparent 70%);
  opacity: 0; transition: opacity .55s;
}
.feat:hover { background: var(--navy-800); }
.feat:hover::before { opacity: 1; }
.feat > * { position: relative; }
/* 必须是块级：inline 元素上的宽高无效，会让内部 svg 撑满整张卡片 */
.feat-ic { display: block; width: 46px; height: 46px; color: var(--gold-400); margin-bottom: 24px; transition: transform .6s var(--ease-spring); }
.feat-ic svg { width: 100%; height: 100%; }
.feat:hover .feat-ic { transform: translateY(-4px) scale(1.08); }
.feat h4 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.feat p { font-size: 14.3px; line-height: 1.9; color: rgba(220, 230, 242, .62); }

/* ---------- 7. 合作院校 ---------- */
.school-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 70px); align-items: start; }

.school-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--sh-sm);
}
.school-table thead th {
  padding: 17px 20px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-align: left;
  color: rgba(255, 255, 255, .9);
  background: var(--grad-navy);
}
.school-table thead th:first-child { width: 74px; text-align: center; }
.school-table tbody tr {
  border-top: 1px solid var(--line);
  transition: background .35s;
}
.school-table tbody tr:nth-child(even) { background: rgba(244, 247, 251, .6); }
.school-table tbody tr:hover { background: rgba(198, 154, 76, .09); }
.school-table td { padding: 16px 20px; font-size: 15px; vertical-align: middle; }
.school-table td:first-child {
  text-align: center;
  font-family: var(--font-display);
  font-size: 17px; color: var(--gold-600); font-weight: 700;
}
.school-table .s-name { font-weight: 600; color: var(--navy-800); }
.school-table .s-name small { display: block; font-weight: 400; font-size: 12.5px; color: var(--ink-400); margin-top: 2px; }
.school-table .s-loc { color: var(--text-soft); font-size: 14px; white-space: nowrap; }

.school-note {
  padding: 26px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(198, 154, 76, .1), rgba(29, 111, 216, .06));
  border: 1px solid rgba(198, 154, 76, .24);
  font-size: 14.5px; line-height: 1.95; color: var(--ink-700);
  margin-top: 28px;
}
.school-note b { color: var(--gold-600); }

/* 跑马灯 */
.marquee { position: relative; overflow: hidden; margin-top: 34px; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-soft), transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: scrollX 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee--rev .marquee-track { animation-direction: reverse; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.mq-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 99px;
  background: #fff; border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 500; color: var(--navy-800);
  white-space: nowrap;
  box-shadow: var(--sh-xs);
}
.mq-chip .k { font-size: 12.5px; color: var(--ink-400); }
.mq-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); }

/* ---------- 8. 专业推荐 ---------- */
.major-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.major {
  position: relative;
  padding: 28px 20px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  overflow: hidden;
  transition: transform .55s var(--ease-out), border-color .45s, background .45s;
}
.major::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(198, 154, 76, .22), transparent 62%);
  opacity: 0; transition: opacity .5s;
}
.major > * { position: relative; }
.major:hover { transform: translateY(-8px); border-color: rgba(220, 184, 110, .48); background: rgba(255, 255, 255, .075); }
.major:hover::before { opacity: 1; }
.major-ic {
  width: 46px; height: 46px; margin: 0 auto 16px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  color: var(--gold-300);
  transition: transform .6s var(--ease-spring), background .45s, color .45s;
}
.major-ic svg { width: 23px; height: 23px; }
.major:hover .major-ic { transform: rotate(-8deg) scale(1.1); background: var(--grad-gold); color: var(--navy-900); }
.major b { display: block; font-size: 15.5px; color: #fff; font-weight: 600; }
.major span { display: block; font-size: 12.5px; color: rgba(220, 230, 242, .48); margin-top: 5px; }

/* ---------- 9. 流程时间轴 ---------- */
.flow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.flow::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400) 12%, var(--gold-400) 88%, transparent);
  opacity: .35;
}
.flow-step { position: relative; text-align: center; }
.flow-dot {
  width: 56px; height: 56px; margin: 0 auto 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 2px solid rgba(198, 154, 76, .4);
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--gold-600);
  position: relative; z-index: 1;
  transition: transform .55s var(--ease-spring), background .45s, color .45s, border-color .45s, box-shadow .45s;
}
.flow-step:hover .flow-dot { transform: translateY(-6px) scale(1.08); background: var(--grad-gold); color: var(--navy-900); border-color: transparent; box-shadow: var(--sh-gold); }
.flow-step h4 { font-size: 17px; margin-bottom: 8px; color: var(--navy-800); }
.flow-step p { font-size: 14px; line-height: 1.85; color: var(--text-soft); }
.section--dark .flow-dot { background: var(--navy-850); }
.section--dark .flow-step h4 { color: #fff; }
.section--dark .flow-step p { color: rgba(220, 230, 242, .6); }

/* 垂直时间轴 */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--gold-400), rgba(198, 154, 76, .15));
}
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold-500);
  box-shadow: 0 0 0 5px rgba(198, 154, 76, .12);
  transition: transform .5s var(--ease-spring), box-shadow .5s;
}
.tl-item:hover::before { transform: scale(1.22); box-shadow: 0 0 0 9px rgba(198, 154, 76, .18); }
.tl-date { font-family: var(--font-display); font-size: 14px; letter-spacing: .16em; color: var(--gold-600); font-weight: 600; }
.tl-item h4 { font-size: 19px; margin: 8px 0 8px; color: var(--navy-800); }
.tl-item p { font-size: 14.8px; line-height: 1.9; color: var(--text-soft); }

/* ---------- 10. 新闻 ---------- */
.news-layout { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(30px, 4vw, 56px); }

.news-feature {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-navy);
  color: #fff;
  min-height: 100%;
  box-shadow: var(--sh-md);
}
.nf-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.nf-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 25%, rgba(29, 111, 216, .55), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(198, 154, 76, .45), transparent 62%);
}
.nf-media svg { width: 100%; height: 100%; transition: transform 1.2s var(--ease-out); }
.news-feature:hover .nf-media svg { transform: scale(1.07); }
.nf-body { padding: 30px 32px 34px; }
.nf-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: rgba(255, 255, 255, .55); }
.nf-cat { padding: 5px 12px; border-radius: 99px; background: rgba(220, 184, 110, .18); color: var(--gold-300); font-weight: 600; }
.nf-body h3 { font-size: clamp(19px, 1.9vw, 25px); margin: 16px 0 12px; line-height: 1.45; transition: color .4s; }
.news-feature:hover .nf-body h3 { color: var(--gold-300); }
.nf-body p { font-size: 14.8px; line-height: 1.9; color: rgba(220, 230, 242, .68); }

.news-list li + li { border-top: 1px solid var(--line); }
.news-item {
  display: flex; align-items: center; gap: 22px;
  padding: 21px 6px;
  transition: padding .45s var(--ease-out), background .4s;
}
.news-item:hover { background: rgba(198, 154, 76, .06); padding-inline: 18px 6px; }
.ni-date {
  flex-shrink: 0; width: 62px; text-align: center;
  padding-right: 20px; border-right: 1px solid var(--line);
}
.ni-date b { display: block; font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--navy-800); transition: color .4s; }
.ni-date small { font-size: 12px; color: var(--ink-400); letter-spacing: .06em; }
.news-item:hover .ni-date b { color: var(--gold-600); }
.ni-main { min-width: 0; }
.ni-main h4 {
  font-size: 16.5px; font-weight: 600; line-height: 1.6; color: var(--navy-800);
  transition: color .4s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-item:hover .ni-main h4 { color: var(--gold-600); }
.ni-main span { font-size: 13px; color: var(--ink-400); }
.ni-go {
  flex-shrink: 0; margin-left: auto;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--ink-400);
  transition: transform .5s var(--ease-out), background .4s, color .4s, border-color .4s;
}
.ni-go svg { width: 14px; height: 14px; }
.news-item:hover .ni-go { background: var(--grad-gold); color: var(--navy-900); border-color: transparent; transform: translateX(4px); }

/* 新闻页卡片网格 */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.nc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--grad-navy); }
.nc-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(29, 111, 216, .5), transparent 62%),
              radial-gradient(circle at 78% 80%, rgba(198, 154, 76, .42), transparent 62%);
}
.nc-media svg { width: 100%; height: 100%; transition: transform 1.1s var(--ease-out); }
.news-card:hover .nc-media svg { transform: scale(1.08); }
.nc-cat {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  padding: 6px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 600;
  background: rgba(3, 11, 22, .55); color: var(--gold-300);
  backdrop-filter: blur(6px);
}
.nc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.nc-body time { font-size: 13px; color: var(--ink-400); letter-spacing: .06em; }
.nc-body h3 {
  font-size: 18px; line-height: 1.6; margin: 10px 0 12px; color: var(--navy-800);
  transition: color .4s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card:hover .nc-body h3 { color: var(--gold-600); }
.nc-body p {
  font-size: 14.3px; line-height: 1.85; color: var(--text-soft);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nc-foot { margin-top: auto; padding-top: 20px; }

/* 筛选按钮 */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 22px; border-radius: 99px;
  font-size: 14.5px; font-weight: 600;
  border: 1px solid var(--line); color: var(--ink-700);
  background: #fff;
  transition: background .4s, color .4s, border-color .4s, transform .45s var(--ease-out);
}
.filter-btn:hover { transform: translateY(-2px); border-color: var(--gold-500); color: var(--gold-600); }
.filter-btn.on { background: var(--grad-navy); color: #fff; border-color: transparent; box-shadow: var(--sh-sm); }

/* ---------- 11. CTA 横幅 ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 120% at 15% 50%, rgba(29, 111, 216, .5), transparent 62%),
    radial-gradient(ellipse 60% 120% at 88% 40%, rgba(198, 154, 76, .42), transparent 62%);
  animation: ctaShift 16s var(--ease-in-out) infinite alternate;
}
@keyframes ctaShift { to { transform: scale(1.14) translateX(-3%); } }
.cta-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; padding: clamp(64px, 8vw, 108px) 0; }
.cta h2 { font-size: clamp(28px, 4vw, 48px); color: #fff; margin: 20px 0 0; letter-spacing: -.02em; }
.cta h2 .gold { background: var(--grad-text-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta p { margin-top: 20px; max-width: 58ch; color: rgba(220, 230, 242, .72); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.9; }
.cta-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }

/* ---------- 12. 联系页 ---------- */
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 68px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.ct-card {
  display: flex; gap: 18px;
  padding: 26px 26px;
  border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s;
}
.ct-card:hover { transform: translateX(6px); box-shadow: var(--sh-md); border-color: rgba(198, 154, 76, .4); }
.ct-ic {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(11, 35, 64, .07), rgba(29, 111, 216, .1));
  color: var(--navy-700);
  transition: background .45s, color .45s;
}
.ct-ic svg { width: 22px; height: 22px; }
.ct-card:hover .ct-ic { background: var(--grad-gold); color: var(--navy-900); }
.ct-card h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; }
.ct-card p { font-size: 16.5px; font-weight: 600; color: var(--navy-800); margin-top: 6px; word-break: break-all; }
.ct-card small { display: block; font-size: 13.5px; color: var(--text-soft); margin-top: 4px; font-weight: 400; }

.form-card {
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: span 2; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-700); }
.field label .req { color: var(--korea-red); }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border-radius: 11px;
  border: 1px solid var(--ink-200);
  background: var(--ink-50);
  font-size: 15px;
  transition: border-color .35s, background .35s, box-shadow .35s;
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(198, 154, 76, .14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.form-note { margin-top: 22px; font-size: 13.5px; color: var(--text-soft); line-height: 1.8; }
.form-msg {
  margin-top: 18px; padding: 14px 18px; border-radius: 11px;
  font-size: 14.5px; font-weight: 600;
  background: rgba(55, 198, 232, .12); color: var(--navy-700);
  border: 1px solid rgba(55, 198, 232, .35);
  display: none;
}
.form-msg.show { display: block; animation: langIn .5s var(--ease-out); }

/* ---------- 12b. 项目参数表 ---------- */
.spec {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--sh-sm);
}
.spec-row {
  display: grid; grid-template-columns: 168px 1fr;
  border-top: 1px solid var(--line);
  transition: background .35s;
}
.spec-row:first-child { border-top: 0; }
.spec-row:hover { background: rgba(198, 154, 76, .07); }
.spec-k {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 22px;
  font-size: 14.5px; font-weight: 700; color: var(--navy-800);
  background: var(--ink-50);
  border-right: 1px solid var(--line);
}
.spec-k svg { width: 17px; height: 17px; color: var(--gold-600); flex-shrink: 0; }
.spec-v { padding: 18px 22px; font-size: 15px; line-height: 1.8; color: var(--ink-700); }

.section--dark .spec { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.section--dark .spec-row { border-color: rgba(255, 255, 255, .1); }
.section--dark .spec-row:hover { background: rgba(255, 255, 255, .06); }
.section--dark .spec-k { background: rgba(255, 255, 255, .05); color: #fff; border-color: rgba(255, 255, 255, .1); }
.section--dark .spec-k svg { color: var(--gold-400); }
.section--dark .spec-v { color: rgba(220, 230, 242, .78); }

@media (max-width: 560px) {
  .spec-row { grid-template-columns: 1fr; }
  .spec-k { border-right: 0; border-bottom: 1px solid var(--line); padding: 13px 18px; }
  .spec-v { padding: 14px 18px; }
}

/* 要求清单 */
.req-list { display: grid; gap: 14px; margin-top: 26px; }
.req-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  font-size: 15px; line-height: 1.8; color: var(--ink-700);
  transition: transform .5s var(--ease-out), border-color .4s;
}
.req-list li:hover { transform: translateX(6px); border-color: rgba(198, 154, 76, .45); }
.req-list .n {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  background: rgba(198, 154, 76, .14); color: var(--gold-600);
}

/* ---------- 13. FAQ 折叠 ---------- */
.faq { display: grid; gap: 14px; }
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: border-color .4s, box-shadow .4s;
}
.faq-item.open { border-color: rgba(198, 154, 76, .45); box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-size: 16.5px; font-weight: 600; color: var(--navy-800);
  transition: color .35s;
}
.faq-q:hover { color: var(--gold-600); }
.faq-q .pm { position: relative; width: 15px; height: 15px; flex-shrink: 0; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 15px; height: 2px; margin-top: -1px; border-radius: 2px;
  background: var(--gold-500); transition: transform .45s var(--ease-out);
}
.faq-q .pm::after { transform: rotate(90deg); }
.faq-item.open .pm::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease-out); }
.faq-a-in { padding: 0 26px 24px; font-size: 15px; line-height: 2; color: var(--text-soft); }

/* ---------- 14. 授权 / 合作卡 ---------- */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.info-card {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .55s var(--ease-out), box-shadow .55s;
}
.info-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--grad-gold);
  transform: scaleY(0); transform-origin: 50% 0;
  transition: transform .6s var(--ease-out);
}
.info-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.info-card:hover::before { transform: scaleY(1); }
.info-card .num {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: .18em; color: var(--gold-600); font-weight: 700;
}
.info-card h3 { font-size: 20px; margin: 14px 0 12px; color: var(--navy-800); }
.info-card p { font-size: 14.8px; line-height: 1.95; color: var(--text-soft); }
.info-card .ic-top { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(198,154,76,.14), rgba(29,111,216,.1)); color: var(--gold-600); margin-bottom: 20px; }
.info-card .ic-top svg { width: 25px; height: 25px; }

/* 引用块 */
.quote {
  position: relative;
  padding: 40px clamp(28px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11, 35, 64, .04), rgba(198, 154, 76, .07));
  border: 1px solid var(--line);
}
.quote::before {
  content: "“";
  position: absolute; top: 4px; left: 20px;
  font-family: var(--font-display); font-size: 96px; line-height: 1;
  color: rgba(198, 154, 76, .3);
}
.quote p { position: relative; font-size: clamp(16px, 1.6vw, 19px); line-height: 2; color: var(--ink-700); font-style: italic; }
.quote footer { margin-top: 20px; font-size: 14.5px; color: var(--gold-600); font-weight: 600; }

/* ---------- 15. 响应式 ---------- */
@media (max-width: 1180px) {
  .major-grid { grid-template-columns: repeat(4, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 48px); }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { height: 440px; max-width: 520px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(2n+1)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .split, .school-layout, .news-layout, .contact-layout { grid-template-columns: 1fr; }
  .split--visual-first .split-visual { order: 0; }
  .prog-grid, .card-grid-3, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .flow::before { display: none; }
  .scroll-cue { display: none; }
}

@media (max-width: 760px) {
  .hero-visual { height: 400px; }
  .hero-card--main { left: 0; right: 4%; padding: 24px; }
  .hero-card--stat { width: 190px; bottom: 76px; }
  .hero-card--flag { padding: 14px 18px; }
  .major-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .prog-grid, .card-grid-2, .card-grid-3, .news-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .school-table td, .school-table thead th { padding: 13px 12px; font-size: 14px; }
  .school-table .s-loc { font-size: 13px; white-space: normal; }
  .marquee::before, .marquee::after { width: 40px; }
  .news-item { gap: 16px; }
  .ni-date { width: 52px; padding-right: 14px; }
  .ni-date b { font-size: 22px; }
  .stats-band { margin-top: -40px; }
  .figure-tag { right: 0; padding: 15px 20px; }
  .figure-tag b { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-visual { height: 360px; }
  .hero-card--stat { display: none; }
  .stats-card { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat + .stat { border-top: 1px solid var(--line); }
  .flow { grid-template-columns: 1fr; }
}
