/* ============================================================
   GALVOS — Future Industrial / Cyber-Fitness Design System
   Colors: #C6FF00 neon green · #00E5FF electric blue · #FF4D00 orange
   Bg: #0D0D0D / #1A1A1A · Cards: #2E2E2E / #4A4A4A
   ============================================================ */

:root {
  --neon: #C6FF00;
  --neon-dim: #A3E635;
  --blue: #00E5FF;
  --orange: #FF4D00;
  --bg-0: #0D0D0D;
  --bg-1: #1A1A1A;
  --card-1: #2E2E2E;
  --card-2: #4A4A4A;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-dim: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.10);
  --line-neon: rgba(198, 255, 0, 0.35);

  --font-en: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-zh: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', 'Source Han Sans SC', sans-serif;
  --font-body: var(--font-zh);

  --nav-h: 72px;
  --container: 1200px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-glow: 0 0 40px rgba(198, 255, 0, 0.18);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body { font-family: var(--font-en); }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--neon); color: #0D0D0D; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--card-2); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-en); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3, html[lang="zh"] h4 { font-family: var(--font-zh); font-weight: 800; }

.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.display .accent { color: var(--neon); }

h2.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
html[lang="zh"] h2.section-title { text-transform: none; }

.section-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 640px;
}

.big-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--neon); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 110px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .section-sub { margin: 14px auto 0; }

/* ---------- Background grid texture ---------- */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}

.glow-orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.14;
  pointer-events: none;
}
.glow-orb.green { background: var(--neon); }
.glow-orb.blue { background: var(--blue); }
.glow-orb.orange { background: var(--orange); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-en); font-weight: 900; font-size: 1.35rem; letter-spacing: 0.14em; }
.logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 2px solid var(--neon);
  border-radius: 9px;
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(198, 255, 0, 0.35);
}
.logo-mark svg { transform: rotate(-45deg); width: 20px; height: 20px; }
.logo small { display: block; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.42em; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.06em; color: var(--muted); transition: color 0.25s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--neon); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.lang-switch button {
  padding: 6px 14px;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: all 0.25s;
}
.lang-switch button.active { background: var(--neon); color: #0D0D0D; }

.nav-cta {
  padding: 10px 22px;
  background: var(--neon);
  color: #0D0D0D;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(198,255,0,0.4); background: var(--white); }

/* Mobile menu */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    opacity: 0;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { display: block; width: 100%; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-cta { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
html[lang="zh"] .btn { font-family: var(--font-zh); letter-spacing: 0.08em; }

.btn-primary { background: var(--neon); color: #0D0D0D; clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%); }
.btn-primary:hover { box-shadow: 0 0 34px rgba(198,255,0,0.5); transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,0.02);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 26px rgba(0,229,255,0.25); transform: translateY(-2px); }

.btn-line { border: 1px solid var(--line-neon); color: var(--neon); padding: 12px 26px; }
.btn-line:hover { background: rgba(198,255,0,0.08); box-shadow: var(--shadow-glow); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
  background: var(--bg-0);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background: var(--bg-1);
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.42;
  filter: grayscale(1) contrast(1.15);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.35) 45%, rgba(13,13,13,0.92) 100%),
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(0,229,255,0.10), transparent 65%);
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-title {
  font-size: clamp(2.8rem, 8.5vw, 6.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(0,229,255,0.25);
}
.hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon);
}
.hero-sub {
  margin-top: 18px;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
html[lang="zh"] .hero-sub { letter-spacing: 0.12em; }
.hero-slogan {
  margin-top: 10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 0 30px rgba(198,255,0,0.45);
}
.hero-desc { margin-top: 22px; max-width: 560px; color: var(--muted); font-size: 1.02rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 40px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  max-width: 720px;
}
.hero-meta .m-item { padding-right: 44px; margin-right: 44px; border-right: 1px solid var(--line); }
.hero-meta .m-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-meta .m-num { font-family: var(--font-en); font-weight: 900; font-size: 1.9rem; color: var(--white); }
.hero-meta .m-num em { font-style: normal; color: var(--neon); }
.hero-meta .m-label { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
@media (max-width: 768px) {
  .hero-meta .m-item { padding-right: 22px; margin-right: 22px; }
}

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.scroll-hint .line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--neon), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ---------- Marquee ticker ---------- */
.ticker {
  background: var(--neon);
  color: #0D0D0D;
  overflow: hidden;
  padding: 13px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -14px 0;
  z-index: 5;
  position: relative;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 0; animation: tickerMove 28s linear infinite; will-change: transform; }
.ticker span {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0 22px;
  display: inline-flex; align-items: center; gap: 22px;
}
.ticker span::after { content: "✦"; font-size: 0.7rem; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(160deg, var(--card-1), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-neon); box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-glow); }
.card:hover::before { opacity: 1; }

/* ---------- Highlights ---------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) { .highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .highlight-grid { grid-template-columns: 1fr; } }

.hl-card { padding: 38px 30px; }
.hl-card .big-num { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.hl-card .hl-unit { font-size: 1rem; color: var(--muted); font-weight: 700; margin-left: 4px; letter-spacing: 0.1em; }
.hl-card h3 { margin-top: 16px; font-size: 1.08rem; letter-spacing: 0.02em; }
html[lang="zh"] .hl-card h3 { font-family: var(--font-zh); }
.hl-card p { margin-top: 8px; color: var(--muted); font-size: 0.92rem; }
.hl-card .hl-tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-en);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--neon);
  border: 1px solid var(--line-neon);
  border-radius: 999px;
  padding: 4px 10px;
}
.hl-card:nth-child(2) h3 { color: var(--blue); }
.hl-card:nth-child(3) h3 { color: var(--orange); }

/* ---------- Philosophy / statement ---------- */
.statement {
  background: var(--bg-1);
  overflow: hidden;
}
.statement .bg-grid { mask-image: none; -webkit-mask-image: none; opacity: 0.7; }
.statement-inner { position: relative; z-index: 2; text-align: center; }
.statement-quote {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
html[lang="zh"] .statement-quote { font-family: var(--font-zh); }
.statement-quote .accent { color: var(--neon); }
.statement-quote .accent-blue { color: var(--blue); }
.statement p { margin: 26px auto 0; max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.statement .s-line {
  width: 120px; height: 3px; margin: 34px auto 0;
  background: linear-gradient(90deg, transparent, var(--neon), var(--blue), transparent);
}

/* ---------- Station preview / cards ---------- */
.station-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .station-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .station-grid { grid-template-columns: 1fr; } }

.station-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.station-card:hover { transform: translateY(-6px); border-color: var(--line-neon); box-shadow: var(--shadow-glow); }
.station-card .st-no {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--card-2);
  position: absolute; top: 18px; right: 18px;
  transition: 0.35s;
}
.station-card:hover .st-no { -webkit-text-stroke-color: var(--neon); }
.station-card .st-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--neon);
  background: rgba(198,255,0,0.04);
}
.station-card .st-icon svg { width: 28px; height: 28px; }
.station-card h3 { font-size: 1.02rem; margin-top: 4px; }
.station-card .st-en { font-family: var(--font-en); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.station-card p { font-size: 0.88rem; color: var(--muted); }

/* ---------- Event preview ---------- */
.event-preview {
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,77,0,0.10), transparent 70%),
    var(--bg-1);
  overflow: hidden;
}
.event-preview::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.6), transparent 60%);
  pointer-events: none;
}
.event-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 900px) { .event-grid { grid-template-columns: 1fr; gap: 40px; } }

.event-city {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.event-city .pin { color: var(--orange); }
.event-status {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 14px 0 30px;
  padding: 8px 18px;
  border: 1px solid rgba(255,77,0,0.45);
  color: #FF7A3D;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 999px;
  background: rgba(255,77,0,0.07);
}
.event-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.event-stats { display: flex; flex-wrap: wrap; gap: 0; margin: 34px 0 36px; }
.event-stats .e-item { padding-right: 36px; margin-right: 36px; border-right: 1px solid var(--line); }
.event-stats .e-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.event-stats .e-num { font-family: var(--font-en); font-weight: 900; font-size: 1.7rem; color: var(--white); }
.event-stats .e-num em { font-style: normal; color: var(--neon); }
.event-stats .e-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.event-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  overflow: hidden;
  clip-path: polygon(24px 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}
.event-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.1); }
.event-visual .frame-label {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--font-en);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(13,13,13,0.7);
  padding: 8px 14px;
  border: 1px solid var(--line-neon);
  backdrop-filter: blur(6px);
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.g-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), filter 0.6s; filter: grayscale(0.5) contrast(1.08); }
.g-item:hover img { transform: scale(1.06); filter: grayscale(0); }
.g-item.wide { aspect-ratio: 4 / 3.2; }
.g-item .g-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0D0D0D;
  background: var(--neon);
  padding: 6px 12px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.gallery-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
html[lang="zh"] .gallery-note { font-family: var(--font-zh); text-transform: none; letter-spacing: 0.02em; }
.gallery-note .accent { color: var(--neon); }

/* ---------- Partners ---------- */
.partners-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px;
  margin-top: 36px;
}
.partner-slot {
  min-width: 180px;
  padding: 26px 34px;
  border: 1px dashed var(--line);
  color: var(--muted-dim);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  transition: 0.3s;
}
.partner-slot:hover { border-color: var(--line-neon); color: var(--neon); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-0);
  padding: 70px 0 34px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), var(--blue), transparent);
  opacity: 0.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 54px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
html[lang="zh"] .footer h4 { letter-spacing: 0.12em; }
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 5px 0; transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--neon); padding-left: 6px; }

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 300px; }
.footer-slogan { font-family: var(--font-en); font-weight: 900; color: var(--neon); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.9rem; margin-top: 18px; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  transition: all 0.3s;
}
.socials a:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  color: var(--muted-dim);
  font-size: 0.8rem;
}
.footer-bottom .en { font-family: var(--font-en); letter-spacing: 0.08em; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 0 70px;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .bg-grid { opacity: 0.8; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
html[lang="zh"] .page-hero h1 { text-transform: none; }
.page-hero .page-sub { margin-top: 16px; color: var(--muted); max-width: 640px; position: relative; z-index: 2; font-size: 1.02rem; }
.page-hero .ph-num {
  position: absolute; right: 4%; bottom: -30px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.breadcrumb { display: flex; gap: 10px; align-items: center; font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; position: relative; z-index: 2; }
.breadcrumb a:hover { color: var(--neon); }
.breadcrumb .sep { color: var(--muted-dim); }

/* ---------- Comparison table ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-1);
}
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.cmp thead th {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.cmp th:first-child { color: var(--muted); font-weight: 600; width: 150px; }
.cmp td:last-child { color: var(--white); font-weight: 600; }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp tbody tr:hover td { background: rgba(198,255,0,0.03); }
.cmp .col-galvos { color: var(--neon); font-weight: 800; }
.cmp .col-hyrox { color: var(--muted); }
.cmp td .win-mark { color: var(--neon); margin-left: 8px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--neon), var(--blue), transparent);
}
.tl-item { position: relative; padding: 0 0 46px 76px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 12px; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--neon);
  display: grid; place-items: center;
  box-shadow: 0 0 16px rgba(198,255,0,0.4);
}
.tl-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--neon); }
.tl-item.future .tl-dot { border-color: var(--card-2); box-shadow: none; }
.tl-item.future .tl-dot::after { background: var(--card-2); }
.tl-city {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tl-status { display: inline-block; margin-top: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; color: var(--neon); border: 1px solid var(--line-neon); padding: 4px 12px; border-radius: 999px; }
.tl-item.future .tl-status { color: var(--muted); border-color: var(--line); }
.tl-desc { margin-top: 10px; color: var(--muted); font-size: 0.92rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
@media (max-width: 640px) { .form-card { padding: 28px 22px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; }
html[lang="zh"] .field label { text-transform: none; letter-spacing: 0.06em; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(198,255,0,0.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C6FF00' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { background: var(--bg-1); color: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.field .req { color: var(--orange); }

.form-note { margin-top: 16px; font-size: 0.82rem; color: var(--muted); }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line-neon);
  background: rgba(198,255,0,0.06);
  color: var(--neon);
  font-weight: 700;
  border-radius: 8px;
}

/* ---------- Contact info cards ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 44px; }
.c-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.3s;
}
.c-item:hover { border-color: var(--line-neon); }
.c-item .c-icon {
  flex: 0 0 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--neon);
}
.c-item .c-icon svg { width: 20px; height: 20px; }
.c-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.c-item p { color: var(--muted); font-size: 0.9rem; word-break: break-all; }
.c-item p a { color: var(--white); }
.c-item p a:hover { color: var(--neon); }

.coop-types { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .coop-types { grid-template-columns: 1fr; } }
.coop-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-1);
  transition: 0.3s;
}
.coop-card:hover { border-color: var(--blue); box-shadow: 0 0 26px rgba(0,229,255,0.12); transform: translateY(-3px); }
.coop-card .coop-no { font-family: var(--font-en); font-weight: 900; font-size: 0.7rem; letter-spacing: 0.26em; color: var(--blue); }
.coop-card h4 { margin: 8px 0 6px; font-size: 1rem; }
.coop-card p { font-size: 0.86rem; color: var(--muted); }

/* ---------- Race detail cards ---------- */
.race-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px;
}
@media (max-width: 640px) { .race-card { grid-template-columns: 1fr; gap: 14px; padding: 26px 22px; } }
.race-card .rc-no {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon);
}
.race-card .rc-body h3 { font-size: 1.3rem; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.race-card .rc-en { font-family: var(--font-en); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.race-card .rc-exercise { margin-top: 12px; font-size: 1.02rem; font-weight: 600; color: var(--white); }
.race-card .rc-exercise .ex-num { color: var(--blue); font-family: var(--font-en); font-weight: 800; }
.race-card .rc-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.rc-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.rc-tag.goal { border-color: var(--line-neon); color: var(--neon); }
.rc-tag.photo { border-color: rgba(0,229,255,0.4); color: var(--blue); }
.rc-tag b { color: var(--white); }

/* ---------- Race overview stats ---------- */
.ov-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .ov-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ov-stats { grid-template-columns: 1fr 1fr; gap: 14px; } }
.ov-stat {
  text-align: center;
  padding: 34px 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.3s;
}
.ov-stat:hover { border-color: var(--line-neon); box-shadow: var(--shadow-glow); }
.ov-stat .big-num { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.ov-stat .ov-label { margin-top: 10px; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.08em; }
.ov-stat:nth-child(2) .big-num { color: var(--blue); }
.ov-stat:nth-child(3) .big-num { color: var(--blue); }

/* ---------- Running design ---------- */
.run-flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; }
.run-node {
  flex: 1;
  min-width: 150px;
  padding: 26px 20px;
  text-align: center;
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
}
.run-node .rn-k { font-family: var(--font-en); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.run-node .rn-v { margin-top: 8px; font-family: var(--font-en); font-weight: 900; font-size: 1.5rem; color: var(--white); }
.run-node .rn-v em { font-style: normal; color: var(--neon); }
.run-node .rn-d { margin-top: 6px; font-size: 0.8rem; color: var(--muted); }
.run-node:not(:last-child)::after {
  content: "▶";
  position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  color: var(--neon);
  font-size: 0.8rem;
  z-index: 3;
  text-shadow: 0 0 10px rgba(198,255,0,0.6);
}
.run-node.finish { border-color: rgba(255,77,0,0.5); }
.run-node.finish .rn-v { color: var(--orange); }
.run-node.finish .rn-v em { color: var(--orange); }

/* ---------- Persona / suited list ---------- */
.suit-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .suit-list { grid-template-columns: 1fr; } }
.suit-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.suit-item .s-icon {
  flex: 0 0 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(198,255,0,0.07);
  border: 1px solid var(--line-neon);
  color: var(--neon);
}
.suit-item .s-icon svg { width: 20px; height: 20px; }
.suit-item p { font-size: 0.92rem; color: var(--muted); }

/* ---------- About specific ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-visual { position: relative; }
.about-visual .av-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 4.6;
  clip-path: polygon(26px 0, 100% 0, calc(100% - 26px) 100%, 0 100%);
}
.about-visual .av-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.1); }
.about-visual .av-caption {
  position: absolute; left: 0; bottom: -14px;
  background: var(--neon);
  color: #0D0D0D;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.mission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
@media (max-width: 768px) { .mission-cards { grid-template-columns: 1fr; } }
.mission-card { padding: 36px 32px; }
.mission-card .m-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; background: rgba(198,255,0,0.06); border: 1px solid var(--line-neon); color: var(--neon); margin-bottom: 20px; }
.mission-card .m-icon svg { width: 24px; height: 24px; }
.mission-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.mission-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Animation system ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-media video, .hero-media img { animation: none; }
  .scroll-hint .line { animation: none; }
}

/* ---------- Own-IP highlight ---------- */
.own-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--line-neon);
  background: rgba(198,255,0,0.06);
  color: var(--neon);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(198,255,0,0.12);
}
html[lang="zh"] .own-badge { font-family: var(--font-zh); letter-spacing: 0.08em; }
.own-badge svg { width: 15px; height: 15px; flex: 0 0 auto; }

.own-highlight {
  margin-top: 26px;
  padding: 26px 28px;
  background: linear-gradient(160deg, rgba(198,255,0,0.05), var(--bg-1));
  border: 1px solid var(--line-neon);
  border-radius: var(--radius);
}
.own-highlight .own-line {
  margin-top: 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}
.own-highlight .own-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- News cards ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.news-card .nc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.news-card .nc-date { font-family: var(--font-en); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; color: var(--muted); }
.news-card .nc-tag { font-family: var(--font-en); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; color: var(--blue); border: 1px solid rgba(0,229,255,0.35); padding: 4px 10px; border-radius: 999px; }
.news-card .nc-tag.race { color: var(--orange); border-color: rgba(255,77,0,0.4); }
.news-card h3 { font-size: 1.15rem; line-height: 1.4; }
.news-card p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.news-card .nc-cta { font-family: var(--font-en); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon); display: inline-flex; align-items: center; gap: 8px; }
.news-card .nc-cta:hover { gap: 12px; }
.news-card .nc-cta svg { width: 14px; height: 14px; }
html[lang="zh"] .news-card .nc-cta { font-family: var(--font-zh); letter-spacing: 0.06em; text-transform: none; }

/* ---------- Coming soon / results ---------- */
.coming-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--line-neon);
  color: var(--neon);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(198,255,0,0.05);
}
html[lang="zh"] .coming-badge { font-family: var(--font-zh); letter-spacing: 0.1em; }
.results-hero {
  text-align: center;
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 70% at 50% 0%, rgba(198,255,0,0.07), transparent 70%),
    var(--bg-1);
}
.results-hero .rh-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--card-2);
  user-select: none;
}
.results-hero h1 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin-top: 10px; }

/* Focus visibility (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 2000;
  background: var(--neon); color: #0D0D0D;
  padding: 10px 18px; font-weight: 700;
  transition: top 0.3s;
}
.skip-link:focus { top: 12px; }

/* ---------- Language-specific visibility ---------- */
.zh-only { display: none; }
html[lang^="zh"] .zh-only { display: inline; }
html[lang="en"] .en-only { display: inline; }
.en-only { display: none; }


/* ============ EXPERT PANEL (赛事专家库) ============ */
.expert-card { padding: 40px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(0,229,255,.05), transparent 45%); }
.expert-card .kicker { margin-bottom: 10px; }
.expert-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.expert-card .ex-desc { color: var(--muted); max-width: 640px; }
.ex-person { display: flex; align-items: center; gap: 24px; margin: 28px 0; padding: 20px 24px; border: 1px solid var(--line); border-left: 3px solid var(--neon); background: rgba(255,255,255,.02); flex-wrap: wrap; }
.ex-avatar { width: 78px; height: 78px; border-radius: 50%; border: 2px solid var(--neon); display: grid; place-items: center; color: var(--neon); box-shadow: 0 0 24px rgba(198,255,0,.28); flex-shrink: 0; }
.ex-person h4 { font-size: 1.25rem; margin: 0; }
.ex-role { color: var(--neon); font-weight: 700; letter-spacing: .08em; margin: 4px 0 2px; font-size: .95rem; }
.ex-edu { color: var(--muted); font-size: .88rem; margin: 0; }
.ex-funcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ex-func { border: 1px solid var(--line); border-top: 2px solid var(--blue); padding: 16px 18px; background: rgba(255,255,255,.02); }
.ex-func b { display: block; margin-bottom: 6px; color: var(--white); font-size: .98rem; }
.ex-func p { color: var(--muted); font-size: .86rem; margin: 0; line-height: 1.6; }
@media (max-width: 720px) { .ex-funcs { grid-template-columns: 1fr; } .ex-person { flex-direction: column; align-items: flex-start; } }

/* ============ RACE GROUPS ============ */
.group-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px) { .group-wrap { grid-template-columns: 1fr; } }
.group-cat { border: 1px solid var(--line); border-top: 3px solid var(--neon); border-radius: 14px; padding: 24px; background: rgba(255,255,255,.02); }
.gc-title { font-size: 1.15rem; margin-bottom: 16px; letter-spacing: .06em; }
.gc-items { display: flex; flex-wrap: wrap; gap: 10px; }
.gc-item { display: inline-block; padding: 8px 16px; border: 1px solid var(--line); border-radius: 8px; font-size: .88rem; color: var(--muted); }
.gc-item:hover { border-color: var(--neon); color: var(--neon); }
