/* WestCo Games landing page */

:root {
  --bg: #071526;
  --bg-2: #0d2238;
  --card: #102944;
  --text: #f8fbff;
  --muted: #b9c8d8;
  --line: rgba(255, 255, 255, .16);
  --gold: #f6b21a;
  --red: #d82027;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 178, 26, .18), transparent 28rem),
    radial-gradient(circle at 85% 5%, rgba(216, 32, 39, .16), transparent 24rem),
    linear-gradient(180deg, var(--bg), #06101d 60%, #030810);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 21, 38, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  max-width: 380px;
}

.logo-placeholder {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(246,178,26,.18), rgba(216,32,39,.18));
  font-weight: 800;
  letter-spacing: .04em;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
}

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

.hero {
  padding: 84px 0 64px;
}

.hero-grid,
.section-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  max-width: 760px;
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -.04em;
}

.lead,
.large {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
}

.button-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--red);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 14px 34px rgba(216,32,39,.28);
}

.button.secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.status-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.status-card h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.status-card p {
  color: var(--muted);
}

.status-card strong {
  color: var(--white);
}

.section {
  padding: 74px 0;
}

.event-section {
  background: rgba(255,255,255,.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.poster-card {
  padding: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.poster-card img {
  border-radius: 20px;
}

.details {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.details div {
  padding: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.details dt {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .12em;
}

.details dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 800;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.future-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.email-link {
  font-size: clamp(1.15rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .nav-wrap,
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

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

  .status-card {
    order: -1;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  nav {
    gap: 12px;
  }

  .section {
    padding: 52px 0;
  }

  .poster-card {
    padding: 8px;
    border-radius: 22px;
  }

  .poster-card img {
    border-radius: 16px;
  }
}

.hero-logo {
  width: min(280px, 90%);
  height: auto;
  display: block;
  margin: 0 0 24px;
}

.site-logo-small {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
}