:root {
  --bg: #070a18;
  --bg2: #0c1333;
  --panel: rgba(255, 255, 255, 0.04);
  --panel2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.6);
  --gold: #f4c54a;
  --gold2: #caa04c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius2: 22px;
  --container: 1100px;
  --pad: clamp(16px, 3.2vw, 28px);
  --font: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", Arial, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(1000px 600px at 15% 0%, rgba(244, 197, 74, 0.12), transparent 62%),
    radial-gradient(900px 540px at 85% 12%, rgba(122, 96, 255, 0.12), transparent 60%),
    radial-gradient(900px 900px at 60% 110%, rgba(244, 197, 74, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 60%, var(--bg) 100%);
}

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

button {
  font: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text);
  z-index: 50;
  transition: top 160ms ease;
}

.skip:focus {
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7, 10, 24, 0.9), rgba(7, 10, 24, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(255, 255, 255, 0.32), transparent 60%),
    linear-gradient(135deg, rgba(244, 197, 74, 0.95), rgba(122, 96, 255, 0.85));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    background-image: url("./logo.jpg");
}

.brand-title {
  font-weight: 750;
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 1.2;
}

.brand-sub {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-cta {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 74, 0.35);
  background: rgba(244, 197, 74, 0.12);
  color: var(--text);
  cursor: pointer;
}

.nav-cta:hover {
  background: rgba(244, 197, 74, 0.18);
}

.hero {
  padding: clamp(28px, 5vw, 64px) 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(16px, 3vw, 30px);
  align-items: start;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.badge-outline {
  background: rgba(244, 197, 74, 0.10);
  border-color: rgba(244, 197, 74, 0.28);
  color: rgba(255, 255, 255, 0.86);
}

.hero-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: 1px;
}

.hero-title-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(18px, 2.6vw, 26px);
  color: rgba(244, 197, 74, 0.92);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

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

.highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), rgba(244, 197, 74, 0.92));
  box-shadow: 0 10px 18px rgba(244, 197, 74, 0.2);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.button.primary {
  background: linear-gradient(180deg, rgba(244, 197, 74, 0.22), rgba(244, 197, 74, 0.12));
  border-color: rgba(244, 197, 74, 0.35);
}

.button.primary:hover {
  background: linear-gradient(180deg, rgba(244, 197, 74, 0.28), rgba(244, 197, 74, 0.14));
  border-color: rgba(244, 197, 74, 0.52);
}

.button.ghost {
  background: transparent;
}

.button.small {
  padding: 10px 12px;
  font-size: 13px;
}

.note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.poster-frame {
  border-radius: var(--radius2);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(500px 320px at 50% -10%, rgba(244, 197, 74, 0.16), transparent 60%),
    radial-gradient(420px 280px at 110% 40%, rgba(122, 96, 255, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.poster-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.poster-chip {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(244, 197, 74, 0.12);
  border: 1px solid rgba(244, 197, 74, 0.26);
}

.poster-chip-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
}

.qr-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.qr {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 10px 10px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 10px 10px,
    radial-gradient(26px 26px at 30% 30%, rgba(255, 255, 255, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.qr-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
}

.qr-wrap .qr {
  position: absolute;
  inset: 0;
}

.qr-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.qr-lg {
  width: 140px;
  height: 140px;
  border-radius: 18px;
}

.qr-wrap-lg {
  width: 140px;
  height: 140px;
  border-radius: 18px;
}

.qr-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.qr-sub {
  margin-top: 6px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}

.contact {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
}

.contact-k {
  font-size: 12px;
  color: rgba(244, 197, 74, 0.88);
}

.contact-v {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.linklike {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(244, 197, 74, 0.92);
  cursor: pointer;
  text-align: left;
}

.linklike:hover {
  color: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 34px 0;
}

.section-soft {
  padding: 26px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.6px;
}

.section-desc {
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.card-head {
  padding: 18px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(244, 197, 74, 0.35);
  background: rgba(244, 197, 74, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.pill-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
}

.kv {
  margin: 0;
  padding: 0 18px 6px;
  display: grid;
  gap: 10px;
}

.kv-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kv dt {
  font-size: 12px;
  color: rgba(244, 197, 74, 0.86);
}

.kv dd {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.card-foot {
  padding: 14px 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  border-radius: 18px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
}

.stat-num {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.6px;
  color: rgba(244, 197, 74, 0.92);
}

.stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
}

.promise {
  border-radius: var(--radius2);
  border: 1px solid rgba(244, 197, 74, 0.20);
  background:
    radial-gradient(480px 180px at 20% 0%, rgba(244, 197, 74, 0.16), transparent 60%),
    radial-gradient(460px 240px at 100% 70%, rgba(122, 96, 255, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.04);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promise-title {
  font-size: 16px;
  font-weight: 760;
}

.promise-sub {
  font-size: 13px;
  color: var(--muted2);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.step {
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
  min-height: 112px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.step-num {
  width: 44px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.88);
  background: rgba(244, 197, 74, 0.92);
}

.step-title {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}

.step-desc {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tile {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
}

.tile-media {
  height: 130px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.tile-cap {
  padding: 12px;
  display: grid;
  gap: 6px;
}

.tile-title {
  font-weight: 720;
  letter-spacing: 0.2px;
  font-size: 13px;
}

.tile-sub {
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.45;
}

.media-library {
  background-image:
    radial-gradient(140px 90px at 10% 10%, rgba(244, 197, 74, 0.30), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(122, 96, 255, 0.10)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08));
  background-image: url("./11.jpg");
}

.media-museum {
  background-image:
    radial-gradient(160px 120px at 85% 20%, rgba(244, 197, 74, 0.26), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(122, 96, 255, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
 background-image: url("./22.jpg");
}

.media-dorm {
  background-image:
    radial-gradient(160px 120px at 30% 20%, rgba(244, 197, 74, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(122, 96, 255, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
 background-image: url("./33.jpg");
}

.media-teaching {
  background-image:
    radial-gradient(180px 120px at 60% 15%, rgba(244, 197, 74, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(122, 96, 255, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
 background-image: url("./44.jpg");
}

.media-sports {
  background-image:
    radial-gradient(160px 120px at 20% 30%, rgba(244, 197, 74, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(122, 96, 255, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
 background-image: url("./55.jpg");
}

.media-culture {
  background-image:
    radial-gradient(180px 120px at 75% 25%, rgba(244, 197, 74, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(122, 96, 255, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
 background-image: url("./66.jpg");
}

.footer-cta {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-cta-title {
  font-weight: 760;
  font-size: 16px;
}

.footer-cta-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted2);
}

.footer-cta-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 24px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-title {
  font-weight: 850;
  letter-spacing: 0.18em;
  font-size: 14px;
  color: rgba(244, 197, 74, 0.86);
  text-transform: uppercase;
}

.footer-sub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted2);
  font-size: 12px;
}

.dot {
  opacity: 0.6;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 80;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 0;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 32px));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(520px 260px at 20% -20%, rgba(244, 197, 74, 0.18), transparent 60%),
    rgba(12, 19, 51, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal[hidden] {
  display: none;
}

.modal-head {
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.modal-title {
  font-weight: 780;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.10);
}

.modal-body {
  padding: 16px;
  display: grid;
  gap: 16px;
}

.modal-qr {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.modal-qr-title {
  font-weight: 760;
}

.modal-qr-sub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 90;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.90);
  font-size: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  max-width: min(560px, calc(100% - 24px));
  text-align: center;
}

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.mobile-bar-btn-primary {
  border-color: rgba(244, 197, 74, 0.38);
  background: rgba(244, 197, 74, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
  .nav a {
    display: none;
  }

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

  .poster-frame {
    position: relative;
  }

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

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

  .step {
    min-height: unset;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-bar {
    display: flex;
  }

  main {
    padding-bottom: 96px;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand-title {
    font-size: 13px;
  }

  .hero-title-sub {
    letter-spacing: 0.24em;
  }

  .kv-row {
    grid-template-columns: 76px 1fr;
  }

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

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

  .tile-media {
    height: 140px;
  }

  .modal-qr {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }

  html:focus-within {
    scroll-behavior: auto;
  }
}

@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}
