@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap");

:root {
  --bg: #0b0b1a;
  --bg-strong: #12162b;
  --text: #f4f5ff;
  --muted: #b6bdd8;
  --card: #161c34;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff7a1a;
  --lemon: #ffb15a;
  --green: #4cd7ff;
  --shadow: 0 28px 70px rgba(6, 8, 20, 0.55);
  --radius: 28px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.28), transparent 36rem),
    radial-gradient(circle at top right, rgba(76, 215, 255, 0.22), transparent 34rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--text);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 26, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav,
.section,
.footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: -0.15rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 122, 26, 0.18);
}

.section {
  padding-block: 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 76px);
}

.eyebrow,
.tag,
.label {
  margin: 0 0 0.75rem;
  color: #ffb15a;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  max-width: 11ch;
}

.policy-hero h1 {
  max-width: none;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted);
  max-width: 60ch;
}

.hero-copy .lead {
  margin-block: 1.25rem 2rem;
}

.button-row,
.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.8rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--orange);
  color: #0b0b1a;
  box-shadow: 0 14px 40px rgba(255, 122, 26, 0.35);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

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

.vault-card,
.game-card,
.contact-card,
.policy-card,
.support-card {
  background: rgba(22, 28, 52, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vault-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
}

.vault-logo {
  width: min(240px, 70%);
  display: block;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.35));
}

.vault-card h2 {
  margin-top: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.vault-card p,
.game-card p,
.contact-card p,
.policy-card p,
.support-card p,
.policy-card li,
.support-card li {
  color: var(--muted);
}


.platform,
.coin,
.climber {
  position: absolute;
  display: block;
}

.platform {
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #b8e063);
  box-shadow: 0 12px 20px rgba(108, 191, 89, 0.28);
}

.platform-one {
  width: 42%;
  left: 8%;
  bottom: 18%;
  transform: rotate(-8deg);
}

.platform-two {
  width: 32%;
  right: 8%;
  bottom: 42%;
  transform: rotate(8deg);
}

.platform-three {
  width: 46%;
  left: 18%;
  top: 18%;
  transform: rotate(-5deg);
}

.coin {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff5ac, var(--lemon) 55%, #e99b00);
  box-shadow: 0 0 0 6px rgba(255, 216, 77, 0.18);
}

.coin-one {
  left: 18%;
  top: 31%;
}

.coin-two {
  right: 18%;
  top: 55%;
}

.climber {
  width: 56px;
  height: 56px;
  border-radius: 18px 18px 28px 28px;
  left: 52%;
  top: 42%;
  transform: rotate(10deg);
  background: linear-gradient(135deg, #26201a, #4a3824);
  box-shadow: 0 18px 28px rgba(32, 23, 15, 0.24);
}

.climber::before,
.climber::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lemon);
}

.climber::before {
  left: 15px;
}

.climber::after {
  right: 15px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.game-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.game-card p {
  max-width: 70ch;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.5rem;
  align-items: center;
}

.contact-card {
  padding: 1.5rem;
}

.contact-card a,
.big-link a,
.link-list a,
.policy-card a {
  font-weight: 800;
  color: #ff9a3c;
}

.muted {
  color: var(--muted);
}

.footer {
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

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

.footer a:hover {
  color: var(--text);
}

.policy-page .section {
  padding-block: 3rem;
}

.policy-hero {
  padding-top: 5rem !important;
}

.policy-card {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 860px;
}

.policy-card h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-top: 2rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.support-card {
  padding: 1.5rem;
}

.support-card.wide {
  grid-column: 1 / -1;
}

.check-list {
  padding-left: 1.2rem;
}

.link-list {
  display: grid;
  gap: 0.85rem;
}

@media (max-width: 800px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .game-card,
  .split-section,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 100%;
  }

  .game-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer div {
    justify-content: flex-start;
  }
}
