@import url("ice-theme.css");
@import url("home-launcher.css");

/* ═══════════════════════════════════════════════════════════════
   Design system + polish layer (unified MMORPG UI)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Motion — Wrath cinematic */
  --duration-fast: 0.28s;
  --duration-normal: 0.55s;
  --duration-slow: 0.85s;
  --ease-premium: cubic-bezier(0.16, 0.84, 0.32, 1);

  /* Typography scale */
  --text-hero: clamp(2.35rem, 3.2vw + 0.5rem, 3.85rem);
  --text-h2: clamp(1.85rem, 2.2vw + 0.5rem, 2.65rem);
  --text-h3: clamp(1.15rem, 1vw + 0.5rem, 1.45rem);
  --text-body-lg: clamp(1.1rem, 0.6vw + 0.85rem, 1.3rem);
  --text-eyebrow: 0.75rem;

  /* Unified glows */
  --glow-ice: 0 0 32px rgba(76, 201, 240, 0.2);
  --glow-gold: 0 0 28px rgba(200, 169, 107, 0.18);
  --panel-bg: linear-gradient(155deg, rgba(22, 31, 51, 0.92), rgba(12, 16, 28, 0.88));
}

/* ─── Event banner ─── */
.event-banner {
  position: relative;
  z-index: 1001;
  background: linear-gradient(90deg, rgba(200, 169, 107, 0.12), rgba(76, 201, 240, 0.08));
  border-bottom: 1px solid var(--border-gold);
  padding: var(--space-2) 0;
}

.event-banner[hidden] { display: none !important; }

.event-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.event-banner__label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  animation: bannerPulse 2.5s ease-in-out infinite;
}

@keyframes bannerPulse {
  0%, 100% { box-shadow: var(--glow-gold); }
  50% { box-shadow: 0 0 20px rgba(200, 169, 107, 0.35); }
}

.event-banner__link {
  color: var(--text);
  font-weight: 600;
}

.event-banner__link:hover { color: var(--ice-glow); }

/* ─── Scene system ─── */
.scene {
  position: relative;
  isolation: isolate;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.scene--hero::before {
  background: radial-gradient(ellipse 50% 40% at 20% 30%, rgba(76, 201, 240, 0.06), transparent);
}

.scene > .container,
.scene > .hero__inner {
  position: relative;
  z-index: 2;
}

.section:not(.hero) { padding-block: var(--space-9); }

.scene + .scene {
  border-top: 1px solid rgba(76, 201, 240, 0.06);
}

.section__header h2 {
  font-size: var(--text-h2) !important;
}

.section__eyebrow {
  font-size: var(--text-eyebrow) !important;
}

/* ─── MMO panel framing ─── */
.mmo-panel {
  position: relative;
}

.mmo-panel__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(76, 201, 240, 0.45);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.mmo-panel__corner--tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.mmo-panel__corner--br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

/* ─── Hero — cinematic scale ─── */
.hero.scene--hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0;
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-3);
  padding: calc(var(--nav-height) + var(--space-3)) 0 var(--space-2);
  min-height: calc(100dvh - 72px);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.85fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(var(--space-3), 1.5vw, var(--space-4));
  align-items: stretch;
  width: 100%;
  flex: 1;
  min-height: 0;
  padding-top: 0;
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(var(--space-3), 2vh, var(--space-5)) 0;
  max-width: none;
}

.hero__main-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(var(--space-5), 3.5vh, var(--space-7));
  width: 100%;
  max-width: 44rem;
  flex: 0 1 auto;
}

.hero__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(var(--space-3), 2.2vh, var(--space-5));
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
}

.hero__highlights {
  list-style: none;
  margin: 0;
  padding: clamp(var(--space-3), 1.8vh, var(--space-5)) clamp(var(--space-4), 2vw, var(--space-5));
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-3), 1.5vh, var(--space-4));
  max-width: 100%;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(5, 12, 24, 0.5);
  box-shadow: inset 0 1px 0 rgba(186, 230, 253, 0.06);
}

.hero__highlights li {
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp(0.94rem, 0.42vw + 0.86rem, 1.08rem);
  line-height: 1.65;
  color: #a8b6ca;
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice-glow);
  box-shadow: 0 0 8px rgba(76, 201, 240, 0.45);
}

.hero__aside {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--space-3);
  min-height: 100%;
}

.hero__aside .hero-spotlight {
  flex: 0 0 auto;
  order: -1;
}

.hero__aside .realm-panel {
  flex: 1 1 auto;
}

.hero__live-bar--dock {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  margin-top: 0;
  border: 1px solid rgba(76, 201, 240, 0.14);
  background: linear-gradient(155deg, rgba(8, 14, 26, 0.92), rgba(4, 8, 14, 0.98));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero__deck {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  margin-top: 0;
  border: 1px solid rgba(76, 201, 240, 0.16);
  background: linear-gradient(155deg, rgba(10, 18, 32, 0.92), rgba(4, 8, 14, 0.96));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero__deck::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 230, 253, 0.45), transparent);
  pointer-events: none;
}

.hero-deck__eyebrow {
  display: block;
  margin-bottom: var(--space-1);
}

.hero-deck__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.hero-deck__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-deck__code-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.hero-deck__code {
  flex: 1;
  min-width: 12rem;
  padding: 0.65rem 0.9rem;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  color: var(--ice-glow);
  background: rgba(4, 8, 16, 0.85);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: var(--radius);
  word-break: break-all;
}

.hero-deck__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.hero-deck__stat {
  padding: var(--space-3);
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(76, 201, 240, 0.1);
  background: rgba(6, 12, 22, 0.55);
}

.hero-deck__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ice-glow);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.hero-deck__stat-label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-deck__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  align-content: start;
}

.hero-path-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  border: 1px solid rgba(76, 201, 240, 0.12);
  background: rgba(6, 12, 22, 0.5);
  transition:
    border-color 0.45s ease,
    background 0.45s ease,
    transform var(--duration-frost, 0.55s) var(--ease-lich, ease);
}

.hero-path-card:hover {
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(76, 201, 240, 0.08);
  transform: translateY(-2px);
}

.hero-path-card__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(76, 201, 240, 0.18);
  background: rgba(76, 201, 240, 0.06);
}

.hero-path-card__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.hero-path-card__copy strong {
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
}

.hero-path-card__copy span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero__title--stacked {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  margin: 0 !important;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 4.2vw + 0.2rem, 4.1rem) !important;
  line-height: 1.06 !important;
  letter-spacing: 0.045em;
  max-width: 100%;
}

.hero__title-line {
  display: block;
  color: #f2f6fc;
}

.hero__title-line--accent {
  color: var(--ice-glow);
  text-shadow: 0 0 32px rgba(76, 201, 240, 0.4);
}

.hero__ornament {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin: var(--space-1) 0 var(--space-2);
  max-width: 30rem;
}

.hero__ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.55), transparent);
}

.hero__ornament-crest {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid rgba(200, 169, 107, 0.7);
  background: rgba(76, 201, 240, 0.1);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(76, 201, 240, 0.2);
}

.hero__lead-accent {
  color: var(--ice-glow);
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero__title--stacked {
    font-size: clamp(2.6rem, 3.5vw, 4rem) !important;
  }

  .hero__lead {
    font-size: clamp(1.02rem, 0.45vw + 0.92rem, 1.18rem) !important;
    line-height: 1.75 !important;
    max-width: 40rem;
  }
}

.hero__badge {
  font-size: 0.8125rem !important;
  padding: 0.55rem 1.2rem !important;
  margin-bottom: var(--space-5) !important;
}

.hero__main-stack .hero__lead {
  font-size: var(--text-body-lg) !important;
  max-width: 100% !important;
  line-height: 1.8 !important;
  margin: 0 !important;
  color: #b4bfd4 !important;
  font-family: var(--font-body);
  font-weight: 400;
}

/* Actividad reciente — panel hero (mockup) */
.hero-activity {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 7.5rem;
  padding: var(--space-4) var(--space-5);
  border: 1px solid rgba(76, 201, 240, 0.16);
  background: rgba(5, 10, 20, 0.62);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
}

.hero-activity__title {
  margin: 0 0 var(--space-3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
}

.hero-activity__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.hero-activity__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
}

.hero-activity__icon {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  border-radius: 6px;
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.2);
}

.hero-activity__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.hero-activity__text {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero-activity__text strong {
  color: var(--ice-glow);
  font-weight: 600;
}

.hero-activity__time {
  font-size: 0.7rem;
  color: var(--text-dim);
}


.btn--discord-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn__discord-icon {
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-3), 2vh, var(--space-4));
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  margin-top: 0;
}

.hero__cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  width: 100%;
}

.btn--hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.25rem;
  padding: 1.25rem 2rem !important;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem) !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.hero__cta-row .btn--lg {
  width: 100%;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1rem !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.05em;
}

.hero__actions {
  gap: var(--space-4) !important;
  flex-shrink: 0;
  width: 100%;
}

.btn--lg {
  padding: 1rem 1.85rem !important;
  font-size: 0.875rem !important;
  min-height: 52px;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Hero background depth */
.hero__bg-layer--aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 15% 25%, rgba(76, 201, 240, 0.18), transparent),
    radial-gradient(ellipse 35% 30% at 85% 15%, rgba(200, 169, 107, 0.08), transparent);
  animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero__rune {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(76, 201, 240, 0.08);
  border-radius: 50%;
  opacity: 0.35;
  animation: runeSpin 40s linear infinite;
}

.hero__rune--1 { top: 10%; right: 8%; }
.hero__rune--2 {
  bottom: 15%;
  left: 5%;
  width: 180px;
  height: 180px;
  animation-direction: reverse;
  animation-duration: 55s;
}

.hero__rune::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(76, 201, 240, 0.2);
}

@keyframes runeSpin {
  to { transform: rotate(360deg); }
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-self: stretch;
}

/* Realm panel — larger */
.realm-panel {
  padding: var(--space-5) !important;
  animation: none !important;
}

.realm-panel__online {
  text-align: center;
  padding: var(--space-4) 0;
  margin-bottom: var(--space-4);
  border-block: 1px solid var(--border-ice);
}

.realm-panel__online-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.realm-panel__online-value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4vw, 3.5rem) !important;
  color: var(--ice-glow) !important;
  text-shadow: var(--glow-ice);
  line-height: 1;
}

.realm-panel__pop-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: var(--space-3) 0 var(--space-4);
  text-align: center;
}

.population-bar {
  height: 6px;
  background: rgba(8, 11, 20, 0.8);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border-ice);
}

.population-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ice-dim), var(--ice), var(--gold));
  border-radius: inherit;
  transition: width 1.2s var(--ease-premium);
  box-shadow: var(--glow-ice);
}

/* News spotlight in hero */
.hero-spotlight {
  padding: 0;
  overflow: hidden;
}

.hero-spotlight__body .hero-spotlight__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.hero-spotlight__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: #fff;
  line-height: 1.35;
  margin-bottom: var(--space-2);
}

.hero-spotlight__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  line-height: 1.55;
}

.hero-spotlight__body .hero-spotlight__meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: var(--space-3);
}

/* Live activity bar */
.hero__live-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  min-height: 3.25rem;
}

.hero__live-strip.hero__live-bar {
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
}

.hero__live-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice);
  white-space: nowrap;
}

.hero__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulseDot 2s ease-in-out infinite;
}

.live-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.live-ticker__track {
  display: flex;
  gap: var(--space-8);
  animation: tickerScroll 45s linear infinite;
  width: max-content;
}

.live-ticker__track:hover { animation-play-state: paused; }

.live-ticker__track[data-ticker-static="true"] {
  animation: none;
  flex-wrap: wrap;
  width: 100%;
  gap: var(--space-3) var(--space-5);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.live-ticker__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.live-ticker__item strong { color: var(--ice-glow); font-weight: 600; }

.live-ticker__time {
  font-size: 0.72rem;
  color: var(--text-dim);
  padding-left: var(--space-2);
  border-left: 1px solid var(--border-ice);
}

/* ─── Unified card interactions ─── */
.glass-card,
.interactive-card {
  transition:
    transform var(--duration-normal) var(--ease-premium),
    box-shadow var(--duration-normal) var(--ease-premium),
    border-color var(--duration-normal) var(--ease-premium);
}

.glass-card:hover {
  border-color: rgba(76, 201, 240, 0.35);
}

.interactive-card:hover,
.news-card:hover,
.quick-card:hover,
.stat-card:hover,
.realm-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--glow-ice);
}

/* Section separator ornament */
.section__header::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: var(--space-4);
  background: linear-gradient(90deg, var(--ice), var(--gold));
  border-radius: 2px;
  opacity: 0.6;
}

.section__header--split::after,
.section__header[style*="center"]::after {
  margin-inline: auto;
}

/* Stats from config */
.stat-card__value {
  font-size: clamp(2rem, 2.5vw, 2.75rem) !important;
}

/* Ultrawide */
@media (min-width: 1600px) {
  .hero__layout {
    grid-template-columns: 1.65fr 0.75fr;
    gap: var(--space-9);
  }

  .hero__title--stacked {
    font-size: clamp(2.75rem, 3.2vw, 4.15rem) !important;
  }

  .news-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1920px) {
  :root { --container: 1520px; }

  .hero__inner { padding-inline: 2vw; }
}

/* Tablet hero */
@media (max-width: 1100px) {
  .hero__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 0;
  }

  .hero__content {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    min-height: auto;
    justify-content: flex-start;
    padding: var(--space-4) 0;
  }

  .hero__main-stack {
    gap: var(--space-5);
  }

  .hero__intro {
    flex: none;
  }

  .hero__aside {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .hero__live-bar--dock {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .hero__cta-row {
    grid-template-columns: 1fr;
  }

  .btn--hero-primary {
    min-height: 3.75rem;
  }

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

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

  .hero__inner {
    min-height: auto;
    padding-bottom: var(--space-8);
  }
}

@media (max-width: 768px) {
  .hero__aside { grid-template-columns: 1fr; }

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

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

  .hero__live-bar {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .hero__title { font-size: clamp(2.35rem, 9vw, 3rem) !important; }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  body.has-event-banner .site-header { top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .live-ticker__track { animation: none; }
  .hero__rune { animation: none; }
  .hero__bg-layer--aurora { animation: none; }
}
