/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 56rem;
  overflow: hidden;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 72% 32%, rgba(212, 166, 42, 0.26) 0%, transparent 58%),
    radial-gradient(ellipse 55% 65% at 12% 88%, rgba(90, 0, 200, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 80% 75%, rgba(180, 130, 20, 0.12) 0%, transparent 50%),
    rgba(6, 7, 8, 0.6);
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #060708 0%, transparent 50%),
    linear-gradient(to bottom, #060708 0%, transparent 25%);
  z-index: 1;
}
.hero__content {
  position: absolute;
  bottom: 4rem;
  left: var(--px);
  z-index: 3;
  max-width: 70rem;
  padding-right: 13rem;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 2.8rem;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4.5rem, 8vw, 9rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.4rem;
}
.hero__title .accent { color: var(--gold); }
.hero__tagline {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 48rem;
}
.hero__badge {
  position: absolute;
  bottom: 4rem;
  right: var(--px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.hero__badge-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ── Ticker ── */
.ticker {
  background: var(--gold);
  overflow: hidden;
  height: 4.8rem;
}
.ticker__track-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}
.ticker__item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  white-space: nowrap;
  padding: 0 3.2rem;
}
.ticker__accent { color: var(--bg); font-style: italic; }
.ticker__sep {
  display: flex;
  align-items: center;
  color: var(--bg);
  opacity: 0.5;
  flex-shrink: 0;
  padding: 0 0.8rem;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Events spotlight ── */
.events-spotlight { padding-top: 6.4rem; }
.events-spotlight__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--px);
  margin-bottom: 3.2rem;
}
.events-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.event-spot-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
}
.event-spot-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}
.event-spot-card:hover .event-spot-card__bg { transform: scale(1.05); }
.event-spot-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #060708 0%, transparent 55%);
  z-index: 1;
}
.event-spot-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.4rem 2rem 2rem;
  z-index: 2;
}
.event-spot-card__tag {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.event-spot-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.event-spot-card__date {
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* ── Games we host ── */
.games-section { padding: 8rem 0; }
.games-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  padding: 0 var(--px);
}
.games-section__eyebrow {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.games-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4rem, 6vw, 8rem);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 2rem;
}
.games-section__desc {
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 3.2rem;
}
.games-section__cards { display: flex; flex-direction: column; gap: 1.2rem; }
.game-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--card);
  padding: 1.6rem 2rem;
  transition: background 0.2s;
}
.game-card:hover { background: #202024; }
.game-card__badge {
  width: 4.8rem;
  height: 4.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.8rem;
}
.game-card__badge-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.game-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--white);
}
.game-card__note {
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── Committee spotlight ── */
.committee-spotlight { padding: 0 0 8rem; }
.committee-spotlight__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--px);
  margin-bottom: 3.2rem;
}
.committee-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 var(--px);
}
.leader-card {
  background: var(--card);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}
.leader-card__ghost {
  position: absolute;
  top: -1rem; right: -0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 8rem;
  line-height: 1;
  color: var(--white);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.leader-card__role {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
}
.leader-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  position: relative;
}

/* ── Follow our journey ── */
.journey { padding: 0 0 8rem; }
.journey__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--px);
  margin-bottom: 3.2rem;
}
.journey__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 0 var(--px);
}
.journey-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  min-height: 26rem;
  display: flex;
  align-items: flex-end;
}
.journey-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.journey-card:hover .journey-card__bg { transform: scale(1.04); }
.journey-card__info {
  position: relative;
  z-index: 2;
  padding: 2.4rem;
  background: linear-gradient(to top, #060708 0%, transparent 100%);
  width: 100%;
}
.journey-card__platform {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.journey-card__handle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 2.4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .games-section__inner { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 767px) {
  .hero__content { bottom: 12rem; padding-right: 4rem; }
  .hero__badge { width: 7rem; height: 7rem; bottom: 2rem; }
  .hero__badge-logo { font-size: 2rem; }

  .events-spotlight__grid,
  .committee-spotlight__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
  }
  .event-spot-card { flex: 0 0 65vw; scroll-snap-align: start; aspect-ratio: 3 / 4; }
  .leader-card { flex: 0 0 75vw; scroll-snap-align: start; }
  .journey__grid { grid-template-columns: 1fr; }
}
