* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --surface: #101010;
  --surface-2: #171717;
  --text: #ffffff;
  --muted: #b8b8b8;
  --red: #e00712;
  --red-dark: #a80008;
  --gold: #ffbd16;
  --blue: #092c63;
  --border: rgba(255,255,255,.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(9,44,99,.38), transparent 32rem),
    radial-gradient(circle at 15% 35%, rgba(224,7,18,.16), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .8rem clamp(1rem, 4vw, 4rem);
  background: rgba(5,5,5,.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.brand img {
  display: block;
  width: 90px;
  height: 56px;
  object-fit: contain;
  object-position: center;
}

nav {
  display: flex;
  gap: clamp(.8rem, 2vw, 2rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.2rem, 6vw, 6rem);
  max-width: 1500px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  margin-bottom: .75rem;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1, h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  max-width: 900px;
  margin-bottom: 1.3rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

.hero-copy p,
.section-heading p,
.split-section > div > p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 30px rgba(224,7,18,.28);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.35);
}

.btn-disabled {
  margin-top: 1rem;
  background: #292929;
  color: #d0d0d0;
  cursor: not-allowed;
}

.coming-badge {
  display: inline-block;
  padding: .45rem .8rem;
  border-left: 4px solid var(--gold);
  background: rgba(255,189,22,.08);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(circle, rgba(224,7,18,.24), rgba(9,44,99,.16), transparent 68%);
  filter: blur(18px);
}

.hero-logo {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0,0,0,.65));
}

.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 4rem);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card,
.feature-panel,
.event-card {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid var(--border);
  border-radius: 22px;
}

.info-card {
  padding: 2rem;
}

.info-card p,
.feature-panel p,
.event-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 2rem;
  align-items: stretch;
}

.feature-panel {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.popup-section {
  text-align: center;
}

.popup-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.event-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.3rem;
  display: flex;
  gap: 1.3rem;
  align-items: center;
  text-align: left;
}

.event-date {
  min-width: 110px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.event-date strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
}

.event-date span {
  font-size: .8rem;
  letter-spacing: .12em;
}

.muted {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--border);
}

.contact-links {
  display: grid;
  gap: .8rem;
  justify-items: start;
}

.contact-links a,
.contact-links span {
  font-weight: 700;
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--gold);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

footer img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    order: -1;
  }

  .hero-logo {
    max-width: 470px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .brand img {
    width: 75px;
    height: 48px;
  }

  .hero {
    padding-top: 2rem;
  }

  .event-card {
    align-items: flex-start;
  }

  .event-date {
    min-width: 82px;
  }
}
