:root {
  --black: #050505;
  --charcoal: #11100d;
  --panel: #19160f;
  --gold-deep: #7a5614;
  --gold: #d9aa35;
  --gold-bright: #ffe07b;
  --cream: #f6eed4;
  --muted: rgba(246, 238, 212, 0.68);
  --line: rgba(255, 224, 123, 0.22);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--cream);
  font-family: Avenir Next, Avenir, Futura, Trebuchet MS, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 214, 94, 0.16), transparent 30rem),
    linear-gradient(180deg, #090806 0%, #030303 52%, #0c0904 100%);
}

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);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  border-radius: 0.55rem;
  border: 1px solid var(--line);
  box-shadow: 0 0 22px rgba(255, 210, 88, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.4vw, 2rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6rem) 4rem;
}

.hero-copy {
  max-width: 48rem;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 13vw, 9.25rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(100deg, #7b560f 0%, #ffd966 36%, #fff1a2 52%, #b47c18 78%, #5c3a06 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

h2 {
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.hero-text {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: #090806;
  background: linear-gradient(110deg, var(--gold-deep), var(--gold-bright), var(--gold));
  box-shadow: 0 16px 44px rgba(255, 201, 72, 0.18);
}

.button-secondary {
  color: var(--gold-bright);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.arcade-stage {
  justify-self: center;
  width: min(28rem, 100%);
  aspect-ratio: 0.72;
  padding: 1.1rem;
  border: 1px solid rgba(255, 224, 123, 0.25);
  border-radius: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 224, 123, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 40px 90px var(--shadow);
}

.court {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 0.8rem;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.34) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle at 50% 42%, rgba(255, 220, 93, 0.18), transparent 35%),
    #050505;
}

.paddle,
.gold-ball,
.coin {
  position: absolute;
  display: block;
  background: linear-gradient(105deg, #6b4708, #f7d86b, #fff0a3, #a66b0c);
  box-shadow: 0 0 28px rgba(255, 213, 94, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.24);
}

.paddle {
  left: 24%;
  width: 52%;
  height: 1.15rem;
  border-radius: 999px;
}

.paddle-top {
  top: 12%;
}

.paddle-bottom {
  bottom: 12%;
}

.center-line {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 2px;
  height: 90%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 0 1rem, transparent 1rem 2rem);
}

.gold-ball {
  right: 28%;
  top: 40%;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  animation: float-ball 4.5s ease-in-out infinite;
}

.coin {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  color: rgba(65, 39, 4, 0.72);
  font-weight: 900;
}

.coin-one {
  top: 28%;
  left: 25%;
}

.coin-two {
  right: 18%;
  bottom: 29%;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.signal-strip div {
  padding: 1.25rem clamp(1rem, 4vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.signal-strip span {
  margin-top: 0.3rem;
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.feature-grid article,
.support-grid article {
  min-height: 14rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 224, 123, 0.18);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(255, 224, 123, 0.08), rgba(255, 255, 255, 0.03));
}

.feature-grid p,
.support-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-number {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--gold-bright);
  font-weight: 900;
}

.history-band {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(255, 221, 96, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 4rem 4rem;
  border-block: 1px solid var(--line);
}

.history-content {
  max-width: 54rem;
}

.history-content p {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.8;
}

.disclaimer {
  font-size: 0.92rem;
  opacity: 0.75;
}

.future-section {
  padding-bottom: 8rem;
}

.support-hero {
  min-height: 62vh;
  display: grid;
  align-content: center;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6rem);
}

.support-hero h1 {
  max-width: 58rem;
  font-size: clamp(3.2rem, 10vw, 8rem);
}

.support-hero p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.support-email {
  width: fit-content;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  text-decoration: none;
}

.policy-hero {
  min-height: 54vh;
}

.policy-date {
  color: var(--gold-bright);
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 7rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 224, 123, 0.18);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(255, 224, 123, 0.08), rgba(255, 255, 255, 0.03));
}

.policy-summary h2,
.policy-content h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.policy-summary p,
.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-content {
  display: grid;
  gap: 2rem;
}

.policy-content article {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 224, 123, 0.14);
}

.policy-content article:last-child {
  border-bottom: 0;
}

.policy-content a {
  color: var(--gold-bright);
}

.policy-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.policy-content li + li {
  margin-top: 0.85rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1.25rem, 6vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

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

@keyframes float-ball {
  0%,
  100% {
    transform: translateY(-0.4rem);
  }
  50% {
    transform: translateY(1.2rem);
  }
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .feature-grid,
  .support-grid,
  .policy-layout,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .arcade-stage {
    width: min(22rem, 100%);
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.88rem;
  }

  nav {
    font-size: 0.82rem;
    gap: 0.7rem;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .support-email {
    width: 100%;
  }

  .gold-ball {
    width: 3.5rem;
    height: 3.5rem;
  }
}
