:root {
  --blue: #3A50F0;
  --blue-strong: #2D42DB;
  --cyan: #06B6D4;
  --bg: #0D0F1C;
  --bg-soft: #121523;
  --surface: #15192B;
  --surface-2: #1B2036;
  --surface-3: #212745;
  --border: #293051;
  --text: #EEF0FF;
  --sub: #95A0C6;
  --muted: #5B658D;
  --success: #22C55E;
  --warn: #F59E0B;
  --danger: #EF4444;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #0A0C15;
}
body {
  min-height: 100vh;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(58,80,240,.18), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(6,182,212,.10), transparent 20%),
    linear-gradient(180deg, #0A0C15 0%, #0D0F1C 100%);
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}

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

.container {
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(10,12,21,.78);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header.is-condensed {
  background: rgba(8,11,19,.88);
  border-bottom-color: rgba(58,80,240,.09);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.site-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.4px;
}
.logo-it { color: var(--blue); font-style: italic; }
.logo-dot { color: var(--blue); }
.logo-rest { color: var(--text); }
.logo-sub {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  margin-left: 8px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  color: var(--sub);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  border: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.04);
  transform: translateY(-1px);
}
.site-nav .cta-link {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.site-nav .cta-link:hover {
  background: var(--blue-strong);
  border-color: var(--blue-strong);
}
.site-nav .account-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.06);
}
.site-nav .account-link:hover {
  background: rgba(58,80,240,.14);
  border-color: rgba(58,80,240,.18);
}
.account-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(58,80,240,.98), rgba(45,66,219,.98));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.account-name {
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(58,80,240,.24);
  background: var(--surface-2);
}

.page-shell {
  padding: 34px 0 84px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(135deg, rgba(58,80,240,.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    #101424;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .75;
  pointer-events: none;
  animation: floatBlob 13s ease-in-out infinite;
}
.hero::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(58,80,240,.42), rgba(58,80,240,0));
}
.hero::after {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(6,182,212,.22), rgba(6,182,212,0));
  animation-duration: 16s;
  animation-delay: -5s;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  padding: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(58,80,240,.12);
  border: 1px solid rgba(58,80,240,.18);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: .96;
  letter-spacing: -1.8px;
  margin-bottom: 16px;
}
.hero p,
.page-hero p {
  color: var(--sub);
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-strong);
  border-color: var(--blue-strong);
}
.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-color: rgba(255,255,255,.06);
}
.btn-ghost:hover {
  border-color: rgba(58,80,240,.22);
  color: var(--blue);
}

.auth-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5,8,15,.68);
  backdrop-filter: blur(14px);
}
.auth-modal-wrap.open {
  display: flex;
}
.auth-modal {
  width: min(520px, 100%);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(58,80,240,.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    #111528;
  box-shadow: var(--shadow);
}
.auth-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.auth-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.auth-modal h3 {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.6px;
  margin-bottom: 10px;
}
.auth-modal p,
.auth-status,
.auth-field span {
  color: var(--sub);
}
.auth-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth-field span {
  font-size: 12px;
  font-weight: 700;
}
.auth-field input {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 0 16px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.auth-field input:focus {
  border-color: rgba(58,80,240,.42);
  box-shadow: 0 0 0 4px rgba(58,80,240,.12);
  background: rgba(255,255,255,.05);
}
.auth-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.auth-status {
  min-height: 20px;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  background: rgba(10,12,21,.54);
  padding: 18px;
  animation: panelDrift 8s ease-in-out infinite;
}
.dashboard-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.dashboard-card,
.card,
.info-card,
.news-card,
.rule-card,
.faq-item,
.contact-card,
.timeline-item,
.stat-card,
.spot-card,
.news-feature,
.map-card,
.schedule-item,
.highlight-card,
.quote-card,
.metric {
  background: linear-gradient(180deg, rgba(27,32,54,.96), rgba(18,22,36,.96));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.dashboard-card:hover,
.card:hover,
.info-card:hover,
.news-card:hover,
.rule-card:hover,
.faq-item:hover,
.contact-card:hover,
.timeline-item:hover,
.stat-card:hover,
.spot-card:hover,
.news-feature:hover,
.map-card:hover,
.schedule-item:hover,
.highlight-card:hover,
.quote-card:hover,
.metric:hover {
  transform: translateY(-4px);
  border-color: rgba(58,80,240,.16);
  box-shadow: 0 26px 60px rgba(0,0,0,.34);
}
.dashboard-card {
  padding: 16px;
}
.dashboard-card .label,
.metric .label {
  color: var(--sub);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.dashboard-card .value,
.metric .value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 6px;
}
.dashboard-card .meta,
.metric .meta {
  color: var(--sub);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  margin-top: 28px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}
.section-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--sub);
  font-size: 14px;
  line-height: 1.7;
  max-width: 760px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.metric {
  padding: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card,
.info-card,
.news-card,
.rule-card,
.contact-card,
.map-card,
.highlight-card,
.quote-card,
.news-feature,
.spot-card {
  padding: 22px;
}
.card-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.2px;
  margin-bottom: 8px;
}
.card p,
.info-card p,
.news-card p,
.rule-card p,
.contact-card p,
.map-card p,
.highlight-card p,
.quote-card p,
.spot-card p {
  color: var(--sub);
  line-height: 1.7;
  font-size: 14px;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.spot-card h3 {
  font-size: 16px;
  margin: 12px 0 8px;
}
.spot-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(58,80,240,.14);
  color: var(--blue);
  border: 1px solid rgba(58,80,240,.18);
  font-weight: 800;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.spot-card:hover .spot-icon,
.highlight-card:hover .spot-icon,
.rule-card:hover .spot-icon {
  transform: translateY(-2px) scale(1.06);
  background: rgba(58,80,240,.2);
  border-color: rgba(58,80,240,.26);
}

.schedule-list,
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.schedule-item,
.timeline-item {
  padding: 18px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 14px;
  align-items: center;
}
.time-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(58,80,240,.12);
  color: var(--blue);
  border: 1px solid rgba(58,80,240,.18);
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.schedule-item:hover .time-pill,
.timeline-item:hover .time-pill {
  transform: translateY(-1px);
  background: rgba(58,80,240,.16);
  border-color: rgba(58,80,240,.24);
}
.item-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.item-sub {
  color: var(--sub);
  font-size: 13px;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
}
.b-blue {
  color: var(--blue);
  background: rgba(58,80,240,.12);
  border-color: rgba(58,80,240,.18);
}
.b-green {
  color: var(--success);
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.18);
}
.b-warn {
  color: var(--warn);
  background: rgba(245,158,11,.10);
  border-color: rgba(245,158,11,.18);
}
.b-cyan {
  color: var(--cyan);
  background: rgba(6,182,212,.10);
  border-color: rgba(6,182,212,.18);
}
.b-red {
  color: var(--danger);
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.18);
}
.b-gray {
  color: var(--sub);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.06);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(135deg, rgba(58,80,240,.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    #101423;
  box-shadow: var(--shadow);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.highlight-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: stretch;
}
.news-cover {
  min-height: 280px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(135deg, rgba(58,80,240,.42), rgba(6,182,212,.16)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 18px);
}
.news-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.news-feature h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  margin-bottom: 12px;
  letter-spacing: -.8px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-card-actions {
  margin-top: auto;
  padding-top: 8px;
}
.event-card-actions .btn {
  width: 100%;
}
.news-thumb {
  min-height: 170px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(135deg, rgba(58,80,240,.22), rgba(6,182,212,.06)),
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 36%),
    #111629;
  transition: transform .45s ease, filter .45s ease;
}
.news-card:hover .news-thumb,
.news-feature:hover .news-cover {
  transform: scale(1.02);
  filter: saturate(1.08);
}
.news-card h3 {
  font-size: 20px;
  letter-spacing: -.3px;
}
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all .15s;
}
.filter-chip:hover,
.filter-chip.active {
  background: rgba(58,80,240,.12);
  color: var(--blue);
  border-color: rgba(58,80,240,.18);
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.rule-card h3 {
  font-size: 18px;
  margin: 12px 0 10px;
}
.rule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.rule-list div {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  color: var(--sub);
  font-size: 13px;
  line-height: 1.55;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}
.faq-item:hover .faq-question {
  background: rgba(255,255,255,.015);
}
.faq-question span:first-child {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.2px;
}
.faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(58,80,240,.12);
  color: var(--blue);
  border: 1px solid rgba(58,80,240,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}
.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 320px;
}
.faq-item.open .faq-toggle {
  background: rgba(6,182,212,.10);
  border-color: rgba(6,182,212,.18);
  color: var(--cyan);
  transform: rotate(45deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card h3,
.map-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-line {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}
.contact-line strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
.contact-line span {
  color: var(--sub);
  font-size: 14px;
  line-height: 1.6;
}
.map-card {
  overflow: hidden;
}
.map-visual {
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(58,80,240,.18), rgba(6,182,212,.06)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 34px),
    #111629;
  border: 1px solid rgba(255,255,255,.05);
}
.road {
  position: absolute;
  background: rgba(255,255,255,.11);
  border-radius: 999px;
}
.road.one { top: 58px; left: 18px; right: 26px; height: 14px; }
.road.two { top: 150px; left: 70px; right: 18px; height: 12px; }
.road.three { left: 190px; top: 28px; bottom: 18px; width: 14px; }
.road.four { left: 320px; top: 84px; bottom: 40px; width: 10px; }
.map-pin {
  position: absolute;
  left: 56%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--blue), var(--blue-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 18px 40px rgba(58,80,240,.35);
  animation: pinPulse 3.8s ease-in-out infinite;
}
.map-pin::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background: var(--blue-strong);
  border-radius: 6px;
}
.map-float {
  position: absolute;
  width: 170px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(10,12,21,.88);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease;
}
.map-card:hover .map-float {
  transform: translateY(-2px);
  border-color: rgba(58,80,240,.14);
}
.map-float.top { left: 20px; top: 24px; }
.map-float.bottom { right: 18px; bottom: 18px; }
.map-float strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
.map-float span {
  color: var(--sub);
  font-size: 12px;
  line-height: 1.55;
}

.quote-card {
  position: relative;
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(58,80,240,.18);
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
}
.quote-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: -.2px;
  margin-bottom: 18px;
}
.quote-card cite {
  color: var(--sub);
  font-style: normal;
  font-size: 13px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(58,80,240,.18);
  background:
    linear-gradient(135deg, rgba(58,80,240,.22), rgba(6,182,212,.08)),
    #12172A;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.04;
  letter-spacing: -.9px;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(238,240,255,.78);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 28px 0 36px;
}
.event-detail-hero-grid {
  align-items: stretch;
}
.event-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}
.event-detail-card {
  min-height: 100%;
}
.event-detail-prose {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-line;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition:
    opacity .7s cubic-bezier(.22,1,.36,1),
    transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body:not(.is-ready) .site-header,
body:not(.is-ready) .hero,
body:not(.is-ready) .page-hero {
  opacity: 0;
  transform: translateY(10px);
}
body.is-ready .site-header,
body.is-ready .hero,
body.is-ready .page-hero {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .55s cubic-bezier(.22,1,.36,1),
    transform .55s cubic-bezier(.22,1,.36,1);
}
body.is-ready .hero,
body.is-ready .page-hero {
  transition-delay: 70ms;
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 16px, 0) scale(1.05); }
}

@keyframes panelDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes pinPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 18px 40px rgba(58,80,240,.35); }
  50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 24px 54px rgba(58,80,240,.44); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal,
  .reveal.is-visible,
  body:not(.is-ready) .site-header,
  body:not(.is-ready) .hero,
  body:not(.is-ready) .page-hero {
    opacity: 1 !important;
    transform: none !important;
  }
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.footer-copy {
  color: var(--sub);
  line-height: 1.7;
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.footer-links a {
  color: var(--sub);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  font-size: 12px;
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero-inner,
  .page-hero-grid,
  .news-feature,
  .contact-grid,
  .site-footer-inner,
  .event-detail-layout {
    grid-template-columns: 1fr;
  }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3,
  .spot-grid,
  .news-grid,
  .rule-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 840px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(14,17,29,.96);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a { text-align: center; }
  .site-nav .account-link {
    justify-content: center;
  }
  .hero-inner,
  .page-hero,
  .cta-band {
    padding: 26px;
  }
}

@media (max-width: 720px) {
  .container { width: min(var(--maxw), calc(100% - 24px)); }
  .page-shell { padding: 18px 0 60px; }
  .stats-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .spot-grid,
  .highlight-grid,
  .news-grid,
  .rule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .schedule-item,
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .site-header-inner {
    min-height: 72px;
  }
  .logo {
    font-size: 20px;
  }
  .logo-sub {
    display: none;
  }
  .auth-modal {
    padding: 20px;
    border-radius: 22px;
  }
  .auth-modal h3 {
    font-size: 24px;
  }
}
