* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #090909;
  --panel: #141414;
  --text: #f5f1e8;
  --muted: #aaa49a;
  --accent: #ff3b30;
  --accent-dark: #b91812;
  --line: rgba(255,255,255,.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 26px;
  font-size: .95rem;
  font-weight: 600;
}

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

.hero {
  min-height: 94vh;
  padding: 160px 8vw 90px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,59,48,.18), transparent 30%),
    linear-gradient(135deg, #111, #050505 65%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  line-height: .95;
}

h1 {
  font-size: clamp(5rem, 11vw, 10rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.primary:hover {
  background: #ff584f;
  transform: translateY(-2px);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}

.btn.secondary:hover {
  border-color: white;
}

.card-stack {
  position: absolute;
  right: 8vw;
  bottom: 90px;
  width: 330px;
  height: 340px;
}

.playing-card {
  position: absolute;
  width: 190px;
  height: 270px;
  background: #f7f2e7;
  color: #111;
  border-radius: 14px;
  padding: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.playing-card span {
  display: block;
  font-size: 4rem;
  line-height: 1;
}

.card-one { transform: rotate(-18deg); left: 0; top: 35px; }
.card-two { transform: rotate(2deg); left: 70px; color: var(--accent); }
.card-three { transform: rotate(18deg); left: 140px; top: 40px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  padding: 28px 6vw;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 1.1rem;
}

.stats span {
  color: var(--muted);
  font-size: .9rem;
}

.section {
  padding: 110px 8vw;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.split p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.events {
  background: var(--panel);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.section-heading > p {
  color: var(--muted);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #101010;
  display: flex;
  flex-direction: column;
}

.event-card.featured {
  background: linear-gradient(145deg, var(--accent-dark), #320a08);
}

.event-tag {
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 9px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.event-card p {
  color: #c7c0b5;
}

.event-meta {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .85rem;
  color: #d8d1c6;
}

.cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,59,48,.14), transparent 42%);
}

.cta > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px auto;
  color: var(--muted);
}

.signup-form {
  max-width: 620px;
  margin: 32px auto 0;
  display: flex;
  gap: 10px;
}

.signup-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #121212;
  color: white;
  font: inherit;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  color: #f7d18b;
}

footer {
  padding: 34px 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .card-stack {
    opacity: .25;
    right: -60px;
  }

  .event-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 30px;
  }

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

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  nav {
    display: none;
  }

  .site-header {
    padding: 18px 5vw;
  }

  .hero {
    padding: 130px 6vw 70px;
  }

  h1 {
    font-size: 4.8rem;
  }

  .section {
    padding: 78px 6vw;
  }

  .section-heading,
  footer,
  .signup-form {
    flex-direction: column;
    align-items: stretch;
  }

  footer {
    gap: 10px;
  }
}
