:root {
  color-scheme: dark;
  --bg: #03100e;
  --bg-2: #061915;
  --ink: #eefbf0;
  --muted: #abc9b7;
  --line: rgba(198, 255, 214, 0.16);
  --mint: #77f2b0;
  --lime: #d9ff77;
  --gold: #ffca54;
  --coral: #ff7a4d;
  --panel: rgba(8, 31, 25, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(3, 16, 14, 0.62), #03100e 42rem),
    #03100e;
  letter-spacing: 0;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(3, 16, 14, 0.72);
  border-bottom: 1px solid rgba(198, 255, 214, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(119, 242, 176, 0.25);
}

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

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1.1rem, 4vw, 4.5rem) 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 16, 14, 0.92) 0%, rgba(3, 16, 14, 0.70) 44%, rgba(3, 16, 14, 0.18) 100%),
    image-set(url("assets/glowstride-icon.png") 1x);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(3, 16, 14, 0), var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 47rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: 0;
}

.lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: #d6eadb;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.48;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(198, 255, 214, 0.22);
  border-radius: 0.5rem;
  color: var(--ink);
  background: rgba(6, 25, 21, 0.75);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #06120e;
  background: linear-gradient(135deg, var(--mint), var(--gold));
  border-color: transparent;
}

.button.disabled {
  cursor: default;
  color: rgba(238, 251, 240, 0.72);
  background: rgba(238, 251, 240, 0.08);
}

.band {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.1rem, 4vw, 4.5rem);
}

.band.alt {
  background: #061512;
  border-block: 1px solid rgba(198, 255, 214, 0.08);
}

.section-head {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-head p,
.body-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1rem;
}

.game-card {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.game-card img {
  width: 7rem;
  height: 7rem;
  border-radius: 1.6rem;
  object-fit: cover;
  box-shadow: 0 0 36px rgba(119, 242, 176, 0.22);
}

.game-card p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pill {
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(198, 255, 214, 0.18);
  border-radius: 999px;
  color: #cdf5d7;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 750;
}

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}

.principle {
  padding: 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.legal-layout {
  max-width: 54rem;
  padding-top: 8rem;
}

.legal-layout h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
}

.legal-layout h2 {
  margin-top: 2.3rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-layout p,
.legal-layout li {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  margin-top: auto;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.1rem, 4vw, 4.5rem);
  color: var(--muted);
  border-top: 1px solid rgba(198, 255, 214, 0.08);
  background: #020c0a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 78vh;
    padding-top: 5rem;
    background-position: 62% center;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
  }

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