/* ============================================================
   SKILLGARAGE — pages.css
   Shared design system for Events + Register pages.
   Inherits the GrowthX-inspired homepage language:
   - bg #060606 / panels #000 / hairlines #1F1F1F
   - blue #0064FF / #3096FF, Gilroy type family, DM Mono labels
   - fluid type scale, pill buttons, reveal motion, marquee
   ============================================================ */

:root {
  --bg: #060606;
  --panel: #000000;
  --panel-2: #0a0a0b;
  --line: #1f1f1f;
  --line-strong: rgba(255, 255, 255, 0.37);
  --text: #ffffff;
  --text-dim: #a9a9a9;
  --blue: #0064ff;
  --blue-2: #3096ff;
  --gold: #e9c25a;
  --danger: #ff5d5d;
  --radius: 14px;
  --appbar-h: 62px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1100px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Gilroy, Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

::selection { background: rgba(0, 100, 255, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
  border-radius: 6px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #26262a; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #333; }

/* ------------------------------------------------------------ type */
.mono {
  font-family: 'DM Mono', 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.eyebrow { margin-bottom: 8px; }
.eyebrow .mono { color: var(--blue-2); }

.h1 {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.14;
  color: #fff;
  font-size: clamp(38px, 4.9vw, 68px);
  text-align: center;
}

.h2 {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 58px);
  text-align: center;
}

.h2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(92deg, #3096ff 0%, #7fb6ff 60%, #3096ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.h3 {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
  font-size: clamp(20px, 2vw, 26px);
}

.lead {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.5;
  color: #fff;
  font-size: clamp(15px, 1.6vw, 23px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.body-copy {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}

/* ------------------------------------------------------------ layout */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(20px, 5.5vw, 40px);
}

.section { padding-block: clamp(28px, 5vw, 44px); position: relative; }
.section.tight { padding-block: clamp(14px, 2.5vw, 22px); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(14px, 3vw, 24px);
}

.section-head .h2, .section-head p { text-align: center; margin-inline: auto; }
.section-head .lead { margin-top: 18px; }
.section-head .body-copy { margin-top: 18px; }

/* ------------------------------------------------------------ appbar */
.appbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--appbar-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: clamp(20px, 4vw, 44px);
  background: rgba(6, 6, 6, 0.82);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-101%);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}
body.appbar-in .appbar { opacity: 1; transform: translateY(0); }

.app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.25s ease;
}
.app-brand:hover { opacity: 0.85; }
.app-word {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.02em;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.app-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.22s ease, background 0.22s ease;
}
.app-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.app-nav a.on { color: #fff; }

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding-inline: 28px;
  border-radius: 999px;
  border: 0;
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.28s var(--ease),
              box-shadow 0.3s ease, opacity 0.25s ease;
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: #1a6eff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 100, 255, 0.35);
}
.btn-blue:active { box-shadow: 0 6px 18px rgba(0, 100, 255, 0.3); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  border-color: rgba(48, 150, 255, 0.75);
  color: var(--blue-2);
  transform: translateY(-2px);
}

.btn-sm { height: 40px; padding-inline: 22px; font-size: 12.5px; }
.btn-lg { height: 52px; padding-inline: 34px; font-size: 14px; }

.btn[disabled], .btn.loading { opacity: 0.55; pointer-events: none; }

.btn .ico { transition: transform 0.3s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

/* ------------------------------------------------------------ cards */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.4vw, 30px);
  transition: border-color 0.3s ease, transform 0.3s var(--ease),
              box-shadow 0.3s ease, background 0.3s ease;
}
.card:hover {
  border-color: rgba(48, 150, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(48, 150, 255, 0.12);
}

/* ------------------------------------------------------------ hero */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 69.7vw, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: calc(var(--appbar-h) + clamp(56px, 8vw, 96px)) clamp(56px, 9vw, 96px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-veil-top {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% 12%, rgba(0, 40, 110, 0.32) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.55) 100%);
}
.hero-veil-bot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, #000 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }

/* ------------------------------------------------------------ stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-inline: auto;
  margin-top: clamp(40px, 6vw, 64px);
}
.stat {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.stat b.gold { color: var(--gold); }
.stat span {
  display: block;
  margin-top: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* ------------------------------------------------------------ editorial rows (categories) */
.cat-list { border-top: 1px solid var(--line); }
.cat-item {
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
}
.cat-item:hover { background: rgba(255, 255, 255, 0.025); }

.cat-head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: clamp(20px, 3.4vw, 30px) 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
}
.cat-head .num { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text-dim); }
.cat-head .t {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 30px);
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.25s ease;
}
.cat-head:hover .t { color: var(--blue-2); }
.cat-head .tag { font-size: 11px; }

.cat-chev {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: transform 0.35s var(--ease), color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.cat-item.open .cat-chev {
  transform: rotate(45deg);
  color: #fff;
  border-color: rgba(48, 150, 255, 0.6);
  background: rgba(0, 100, 255, 0.12);
}

.cat-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.cat-item.open .cat-body { grid-template-rows: 1fr; }
.cat-body > div { overflow: hidden; }
.cat-content {
  padding: 0 4px clamp(28px, 4vw, 40px);
  max-width: 640px;
}
.cat-content .copy { color: var(--text-dim); font-size: 16px; line-height: 1.65; margin-bottom: 22px; }

/* chip / tag pills */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #e8e8e8;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}
.chip:hover { border-color: rgba(48, 150, 255, 0.55); color: var(--blue-2); transform: translateY(-2px); }
.chip .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--blue-2); }
.chip.gold .dot { background: var(--gold); }
.chip.mono { font-family: 'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; }

/* sport cards (selector) */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.sport-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s var(--ease), box-shadow 0.28s ease;
}
.sport-card .ic { color: var(--text-dim); transition: color 0.28s ease; }
.sport-card:hover { border-color: rgba(48, 150, 255, 0.5); transform: translateY(-2px); }
.sport-card:hover .ic { color: var(--blue-2); }
.sport-card.active {
  border-color: var(--blue-2);
  background: rgba(0, 100, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(48, 150, 255, 0.4), 0 10px 26px rgba(0, 100, 255, 0.18);
}
.sport-card .muted { font-size: 11.5px; color: var(--text-dim); font-weight: 500; }

/* round flow */
.round-flow { display: flex; flex-direction: column; gap: 0; max-width: 560px; }
.round-step {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 2px 16px 30px;
  position: relative;
}
.round-step::before {
  content: '';
  position: absolute; left: 9px; top: 0; bottom: 0; width: 1px;
  background: var(--line);
}
.round-step:first-child::before { top: 50%; }
.round-step:last-child::before { bottom: 50%; }
.round-dot {
  position: absolute; left: 0;
  width: 19px; height: 19px;
  border-radius: 999px;
  border: 1px solid rgba(48, 150, 255, 0.55);
  background: #0a141f;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--blue-2);
}
.round-step b {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.round-step p { font-family: Gilroy, Inter, sans-serif; font-weight: 600; font-size: 16px; color: #fff; }

/* timeline (3-day) */
.day-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.day-tab {
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.day-tab:hover { color: #fff; border-color: rgba(48, 150, 255, 0.5); }
.day-tab.active {
  color: #fff;
  border-color: rgba(48, 150, 255, 0.6);
  background: rgba(0, 100, 255, 0.12);
}
.day-panel { display: none; }
.day-panel.active { display: block; animation: fadeUp 0.55s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}
.day-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: #e8e8e8;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}
.day-cell:hover { border-color: rgba(48, 150, 255, 0.4); transform: translateY(-2px); }
.day-cell .ic { color: var(--blue-2); flex-shrink: 0; }

/* ------------------------------------------------------------ marquee */
.marquee {
  overflow: hidden;
  position: relative;
  border-block: 1px solid var(--line);
  padding-block: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marq-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marq 42s linear infinite;
}
@keyframes marq { to { transform: translateX(-50%); } }
.marquee:hover .marq-track { animation-play-state: paused; }
.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marq-item .ldot { width: 7px; height: 7px; border-radius: 999px; background: var(--blue-2); flex-shrink: 0; }
.marq-item.gold .ldot { background: var(--gold); }

/* ------------------------------------------------------------ immersive panel */
.immerse {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: clamp(44px, 8vw, 88px) clamp(20px, 5vw, 60px);
  text-align: center;
}
.immerse .ibg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.immerse .iveil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.85) 100%);
}
.immerse > * { position: relative; z-index: 2; }

.cta-band {
  position: relative;
  border-block: 1px solid var(--line);
  padding-block: clamp(72px, 12vw, 120px);
  text-align: center;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ------------------------------------------------------------ footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 6vw, 64px) 34px;
  color: var(--text-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-family: Gilroy, Inter, sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.22s ease;
}
.footer-col a:hover { color: #fff; }
.footer-copy {
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ------------------------------------------------------------ reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ register page */
.reg-hero {
  position: relative;
  padding-top: calc(var(--appbar-h) + clamp(64px, 10vw, 108px));
  padding-bottom: clamp(12px, 3vw, 20px);
  text-align: center;
}
.reg-hero .h1 { margin-top: 16px; }
.reg-hero .lead { margin-top: 18px; max-width: 560px; margin-inline: auto; }

.wizard { padding-bottom: clamp(72px, 12vw, 120px); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}
.step-dot { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; }
.step-dot::before {
  content: '';
  position: absolute;
  top: 13px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 1px;
  background: var(--line);
}
.step-dot:last-child::before { display: none; }
.step-dot .sd {
  width: 27px; height: 27px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.step-dot.done .sd { background: rgba(0, 100, 255, 0.14); border-color: rgba(48, 150, 255, 0.6); color: var(--blue-2); }
.step-dot.active .sd { background: var(--blue); border-color: var(--blue-2); color: #fff; box-shadow: 0 0 0 4px rgba(0, 100, 255, 0.18); }
.step-dot span {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  text-align: center;
}
.step-dot.active span { color: #fff; }
.step-dot.done span { color: var(--blue-2); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }
.step-panel h3 {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.step-sub { text-align: center; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--text-dim); text-transform: uppercase; margin-bottom: clamp(32px, 5vw, 48px); }

/* experience cards */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; max-width: 920px; margin-inline: auto; }
.exp-card {
  position: relative;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px 24px;
  cursor: pointer;
  color: #fff;
  font-family: Gilroy, Inter, sans-serif;
  transition: border-color 0.28s ease, background 0.28s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
}
.exp-card:hover { border-color: rgba(48, 150, 255, 0.5); transform: translateY(-3px); }
.exp-card.active {
  border-color: var(--blue-2);
  background: rgba(0, 100, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(48, 150, 255, 0.45), 0 16px 40px rgba(0, 100, 255, 0.16);
}
.exp-card .en { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text-dim); }
.exp-card.active .en { color: var(--blue-2); }
.exp-card .et { font-weight: 800; font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -0.02em; }
.exp-card .ed { font-size: 13.5px; line-height: 1.55; color: var(--text-dim); }
.exp-card .chk {
  position: absolute; top: 18px; right: 18px;
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: all 0.25s ease;
}
.exp-card.active .chk { background: var(--blue); border-color: var(--blue-2); color: #fff; }

/* forms */
.form-card {
  max-width: 680px;
  margin-inline: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 5vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field label .req { color: var(--blue-2); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid #26262a;
  border-radius: 10px;
  padding: 13px 14px;
  color: #fff;
  font-family: Gilroy, Inter, sans-serif;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #4a4d52; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #33363b; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(0, 100, 255, 0.22);
  background: #0d0d0f;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a9a9a9' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.field select option { background: #0a0a0b; color: #fff; }
.field.err input, .field.err select, .field.err textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255, 93, 93, 0.15); }
.field .fmsg {
  font-family: Gilroy, Inter, sans-serif;
  font-size: 12px;
  color: var(--danger);
  display: none;
}
.field.err .fmsg { display: block; }

.member-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-top: 16px;
  background: var(--panel-2);
}
.member-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.member-head b {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
}
.member-head button {
  background: none;
  border: 1px solid var(--line);
  color: var(--text-dim);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: Gilroy, Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease;
}
.member-head button:hover { color: var(--danger); border-color: rgba(255, 93, 93, 0.55); }

.add-member {
  margin-top: 18px;
  border: 1px dashed #2c2c31;
  border-radius: var(--radius);
  width: 100%;
  padding: 15px;
  background: none;
  color: var(--text-dim);
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.add-member:hover { border-color: rgba(48, 150, 255, 0.6); color: var(--blue-2); }

.wizard-nav {
  position: sticky;
  bottom: 0;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: 680px;
  margin: 28px auto 0;
  padding: 14px;
  background: rgba(6, 6, 6, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.wizard-nav .btn { flex: 1; }
.wizard-nav .btn[data-role="back"] { flex: 0 0 auto; min-width: 120px; }

/* review */
.review-group { margin-bottom: 26px; }
.review-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.review-title b { font-family: 'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; }
.review-edit {
  background: none;
  border: 1px solid var(--line);
  color: var(--text-dim);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: Gilroy, Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease;
}
.review-edit:hover { color: var(--blue-2); border-color: rgba(48, 150, 255, 0.5); }
.review-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.review-rows .row label { display: block; font-family: 'DM Mono', monospace; font-size: 9.5px; letter-spacing: 0.14em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 3px; }
.review-rows .row p { font-family: Gilroy, Inter, sans-serif; font-size: 14px; color: #fff; overflow-wrap: anywhere; }

/* success */
.success-wrap {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(40px, 8vw, 80px);
}
.success-mark {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 0 0 8px rgba(0, 100, 255, 0.14), 0 24px 60px rgba(0, 100, 255, 0.35);
  animation: pop 0.6s var(--ease);
}
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.reg-id { display: inline-block; margin-top: 22px; padding: 12px 22px; border: 1px dashed rgba(48, 150, 255, 0.55); border-radius: 12px; font-family: 'DM Mono', monospace; font-size: 14px; letter-spacing: 0.12em; color: var(--blue-2); }
.summary-line { margin-top: 20px; color: #c9ccd1; font-family: Gilroy, Inter, sans-serif; font-size: 14.5px; line-height: 1.8; }
.summary-line b { color: #fff; font-weight: 700; }
.notice {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px 20px;
  font-family: Gilroy, Inter, sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  text-align: left;
  line-height: 1.6;
}
.notice b { color: var(--gold); }

.banner-err {
  border: 1px solid rgba(255, 93, 93, 0.5);
  background: rgba(255, 93, 93, 0.08);
  color: #ffb4b4;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: Gilroy, Inter, sans-serif;
  font-size: 13.5px;
  margin: 18px 0 0;
  display: none;
}
.banner-err.show { display: block; }

/* ------------------------------------------------------------ mobile menu */
.app-menu {
  display: none;
}
@media (max-width: 899px) {
  .app-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 8px 0 12px;
    background: #0a0a0a;
    border-bottom: 1px solid #1f1f1f;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  }
  .app-nav.open {
    display: flex;
  }
  .app-nav a {
    display: block;
    padding: 13px 22px;
    border-radius: 0;
  }
  .app-nav .btn {
    margin: 14px 22px 4px;
  }
  .app-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex: none;
  }
  .app-menu:hover { background: rgba(255, 255, 255, 0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .review-rows { grid-template-columns: 1fr; }
  .cat-head { grid-template-columns: 40px 1fr auto; gap: 12px; }
  .hero-inner .h1 { font-size: clamp(34px, 9.4vw, 44px); }
  .wizard-nav { flex-direction: column-reverse; }
  .wizard-nav .btn { width: 100%; }
  .wizard-nav .btn[data-role="back"] { width: 100%; flex: 1; }
  .exp-grid { grid-template-columns: 1fr; }
  .sport-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------ reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marq-track { animation: none; }
  .appbar { transition: none; }
}
/* ------------------------------------------------------------ category detail page */
.container.narrow { max-width: 780px; }

.cat-trail {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.14em;
  padding-top: 10px;
  padding-bottom: 4px;
  margin-bottom: 6px;
  border-top: 1px solid var(--line);
}

.cat-intro p { margin-bottom: 18px; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
}

.exp-item .exp-txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.exp-item .exp-txt b {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.4;
}

.exp-item .exp-txt small {
  font-family: Gilroy, Inter, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-dim);
}

.exp-tick {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(0, 100, 255, 0.14);
  color: var(--blue-2);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.day-block {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 26px 26px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.day-row .dr-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.day-row .dr-txt b {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.4;
}

.day-row .dr-txt small {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--blue-2);
}

.day-block-head {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--blue-2);
  margin-bottom: 14px;
}

.day-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(31, 31, 31, 0.6);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}

.day-dot {
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.cat-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: clamp(8px, 2vw, 20px);
}

.cat-nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.cat-nav-link:hover { color: var(--blue-2); border-color: var(--blue-2); }

a.chip {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

a.chip:hover {
  color: var(--blue-2);
  border-color: var(--blue-2);
  background: rgba(0, 100, 255, 0.07);
}

/* ------------------------------------------------------------ category: quick facts */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.fact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fact-k {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.fact-v {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  line-height: 1.3;
}

/* ------------------------------------------------------------ category: how to participate */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  counter-reset: howto;
}

.howto-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.howto-num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(0, 100, 255, 0.14);
  color: var(--blue-2);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.howto-text {
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
  padding-top: 4px;
}

/* ------------------------------------------------------------ category: prizes */
.prize-list {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.prize-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.7);
}

.prize-row:last-child { border-bottom: 0; }

.prize-tier {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.prize-amt {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--blue-2);
  text-align: right;
}

/* ------------------------------------------------------------ category: key dates */
.keydate-list {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.keydate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.7);
}

.keydate-row:last-child { border-bottom: 0; }

.keydate-k {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--blue-2);
}

.keydate-v {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  text-align: right;
}

/* ------------------------------------------------------------ category: quote */
.quote-block {
  border-left: 3px solid var(--blue);
  padding: clamp(24px, 4vw, 40px) clamp(22px, 5vw, 48px);
  background: rgba(0, 100, 255, 0.05);
  border-radius: 0 16px 16px 0;
}

.quote-text {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 14px;
}

.quote-who {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

/* ------------------------------------------------------------ category: FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.faq-q::after {
  content: '+';
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  color: var(--blue-2);
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 4px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 64ch;
}

.faq-item.open .faq-a { display: block; animation: fadeUp 0.4s var(--ease); }

/* ------------------------------------------------------------ events: day cells with times */
.day-cell {
  gap: 12px;
}

.day-cell .dc-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.day-cell .dc-txt b {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.35;
}

.day-cell .dc-txt small {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--blue-2);
}

@media (max-width: 640px) {
  .day-cell { flex-wrap: wrap; }
  .day-cell .dc-txt { flex: 1 1 100%; }
}

/* ------------------------------------------------------------ category: practical info */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.practical-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.practical-card b {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--blue-2);
}

.practical-card span {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ------------------------------------------------------------ register: pass includes */
.pass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.pass-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  font-size: 14.5px;
  color: #fff;
}

.pass-ic {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(0, 100, 255, 0.14);
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------------------------ category page: compact headings */
.cat-page .section-head .h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
}

/* ------------------------------------------------------------ category: how-to description text */
.howto-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 1px;
}

.howto-txt b {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.4;
}

.howto-txt small {
  font-family: Gilroy, Inter, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* ------------------------------------------------------------ blue content boxes (category + register) */
.exp-item, .howto-step, .day-block, .fact-card, .practical-card,
.prize-list, .keydate-list, .pass-item {
  border-color: rgba(48, 150, 255, 0.32);
  background: rgba(0, 100, 255, 0.07);
}

.exp-item .exp-txt b, .howto-txt b, .day-row .dr-txt b,
.fact-v, .pass-item {
  color: var(--blue-2);
}

.exp-item .exp-txt small, .howto-txt small,
.day-row .dr-txt small, .practical-card span,
.keydate-v, .prize-tier, .fact-k {
  color: #8fc2ff;
}

.day-row { border-top-color: rgba(48, 150, 255, 0.16); }
.prize-row, .keydate-row { border-bottom-color: rgba(48, 150, 255, 0.16); }

.practical-card b, .keydate-k {
  color: var(--blue-2);
}

.faq-q { color: #fff; }
.faq-a { color: #a9c9ff; }

.quote-text { color: #fff; }
.quote-who { color: #8fc2ff; }

/* ------------------------------------------------------------ learn: campus bootcamp */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.learn-card {
  border: 1px solid rgba(48, 150, 255, 0.32);
  border-radius: 14px;
  padding: 22px 24px;
  background: rgba(0, 100, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.learn-card b {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--blue-2);
}

.learn-card span { font-size: 14px; line-height: 1.65; color: #8fc2ff; }

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.stream-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(48, 150, 255, 0.32);
  border-radius: 18px;
  background: rgba(0, 100, 255, 0.07);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.stream-card:hover {
  border-color: var(--blue-2);
  background: rgba(0, 100, 255, 0.12);
  transform: translateY(-3px);
}

.stream-name {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.02em;
  color: #fff;
}

.stream-name em { font-style: normal; color: var(--blue-2); }

.stream-line { font-size: 14px; font-weight: 700; color: var(--blue-2); }

.stream-d { font-size: 13.5px; line-height: 1.6; color: var(--text-dim); }

.logi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.logi-card {
  border: 1px solid rgba(48, 150, 255, 0.32);
  border-radius: 14px;
  padding: 20px 22px;
  background: rgba(0, 100, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logi-card b {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.logi-card span {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}

.walk-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ------------------------------------------------------------ privileges */
.perk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}

.perk-card {
  border: 1px solid rgba(48, 150, 255, 0.32);
  border-radius: 14px;
  padding: 22px 24px;
  background: rgba(0, 100, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perk-num {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.perk-card b {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

.perk-card span:last-child { font-size: 14px; line-height: 1.65; color: #8fc2ff; }

.perk-card.hot {
  border-color: var(--gold);
  background: rgba(233, 194, 90, 0.08);
}

.perk-card.hot b { color: var(--gold); }

/* ------------------------------------------------------------ pricing */
.price-card {
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 48px);
  background: rgba(233, 194, 90, 0.08);
  text-align: center;
}

.price-num {
  font-family: Gilroy, Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 9vw, 84px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold);
  margin-top: 10px;
}

/* ------------------------------------------------------------ qualify callout */
.qualify-card {
  margin-top: 20px;
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 22px 26px;
  background: rgba(233, 194, 90, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qualify-card b {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.qualify-card span {
  font-size: 14.5px;
  line-height: 1.6;
  color: #8fc2ff;
}

/* ------------------------------------------------------------ sub-text polish
   schedule times + eyebrow labels: no blue, slightly bigger */
.day-cell .dc-txt small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.eyebrow {
  color: rgba(255, 255, 255, 0.74) !important;
}
.eyebrow[style*="gold"] {
  color: var(--gold) !important;
}
