:root {
  --steel: #0d1110;
  --steel-2: #151b1f;
  --steel-3: #1d2730;
  --gold: #ffd15a;
  --gold-muted: #8b6f24;
  --discord: #5865f2;
  --discord-dark: #4752c4;
  --text: #f4efe5;
  --muted: #c8c1b4;
  --line: rgba(255, 209, 90, 0.22);
  --panel: rgba(18, 23, 24, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 209, 90, 0.18), transparent 28rem),
    linear-gradient(145deg, #090c0c 0%, var(--steel) 42%, #151916 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(9, 12, 12, 0.86);
  border-bottom: 1px solid rgba(255, 209, 90, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  flex: 0 0 auto;
  width: 3rem;
  height: 2rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 209, 90, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.3rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.text-link {
  border-radius: 0.25rem;
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.site-nav a:focus-visible,
.text-link:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.35fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  min-height: clamp(500px, 68vh, 620px);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 12, 12, 0.9), rgba(9, 12, 12, 0.5)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.hero-content,
.hero-side,
.hero-panel,
.section {
  position: relative;
}

.eyebrow,
.panel-label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  line-height: 0.95;
  overflow-wrap: normal;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: 1.1rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 40rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.button-primary {
  background: var(--gold);
  color: #17130a;
}

.button-discord {
  gap: 0.55rem;
  background: var(--discord);
  color: #fff;
}

.button-discord:hover {
  background: var(--discord-dark);
}

.button-discord svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--muted);
}

.button:hover {
  transform: translateY(-1px);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(255, 209, 90, 0.42);
  color: var(--gold);
}

.hero-panel,
.section,
.info-card,
.stat-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-side {
  align-self: end;
  display: grid;
  gap: 1rem;
}

.hero-logo {
  display: block;
  width: min(100%, 24rem);
  margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.hero-panel {
  padding: 1.2rem;
  border-radius: 0.5rem;
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.hero-panel span:last-child {
  color: var(--muted);
}

.section {
  margin: 0 clamp(1rem, 4vw, 4rem) clamp(1rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 0.5rem;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.location-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.stat-card,
.info-card {
  padding: 1rem;
  border-radius: 0.45rem;
  box-shadow: none;
}

.stat-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-card strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 800;
}

.final-cta {
  margin-bottom: clamp(2rem, 5vw, 5rem);
}

.final-cta h2 {
  max-width: 14ch;
}

.final-cta p {
  max-width: 42rem;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-side {
    align-self: start;
  }

  .hero-logo {
    width: min(72vw, 22rem);
    margin-inline: 0;
  }
}

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

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

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3rem);
    line-height: 0.95;
  }

  .button {
    width: 100%;
  }

  .hero-logo {
    width: min(100%, 18rem);
    margin-inline: auto;
  }

  .location-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover {
    transform: none;
  }
}
