@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  font-family: "Montserrat", Arial, sans-serif;
  background: #080808;
  color: #fff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body { margin: 0; background: #080808; }

.page-shell { min-height: 100svh; overflow: hidden; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 48px 22px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 20%, rgba(183, 135, 38, .19), transparent 36%),
    linear-gradient(145deg, #121212 0%, #050505 58%, #0c0909 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image: repeating-linear-gradient(120deg, transparent 0 25px, rgba(255,255,255,.035) 26px, transparent 27px 52px);
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.09);
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(211, 164, 65, .22);
  border-radius: 50%;
}

.ambient-one { top: -190px; right: -95px; }
.ambient-two { bottom: -240px; left: -120px; width: 440px; height: 440px; }

.coin-field { position: absolute; z-index: -1; width: 160px; height: 210px; opacity: .66; }
.coin-field-left { left: clamp(-70px, 3vw, 35px); bottom: 11%; transform: rotate(-12deg); }
.coin-field-right { right: clamp(-75px, 2vw, 28px); top: 17%; transform: rotate(10deg); }

.coin {
  position: absolute;
  display: grid;
  place-items: center;
  border: 3px double #f2cf75;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffe69a 0 8%, #d5a63f 27%, #8b5b13 72%, #d1a03a 100%);
  color: #5b390a;
  font-size: 11px;
  font-weight: 900;
  box-shadow: inset 0 0 0 3px rgba(92,55,5,.36), 0 10px 20px rgba(0,0,0,.42);
  text-shadow: 0 1px rgba(255,235,151,.5);
}

.coin-lg { width: 70px; height: 70px; left: 28px; top: 12px; }
.coin-md { width: 54px; height: 54px; left: 76px; top: 88px; }
.coin-sm { width: 40px; height: 40px; left: 18px; top: 119px; font-size: 15px; }

.gold-glint { position: absolute; z-index: -1; color: #efd17d; opacity: .55; font-size: 25px; }
.glint-one { left: 13%; top: 22%; }
.glint-two { right: 16%; bottom: 18%; font-size: 17px; }

.content {
  width: min(760px, 100%);
  text-align: center;
  animation: arrive .8s ease-out both;
}

.brand-mark {
  width: clamp(190px, 31vw, 260px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.6));
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7aa4c;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 7vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .99;
  text-wrap: balance;
}

h1 span { color: #d2a441; }

.intro {
  max-width: 625px;
  margin: 25px auto 0;
  color: #c9c9c9;
  font-size: clamp(.98rem, 2vw, 1.1rem);
  line-height: 1.7;
  text-wrap: balance;
}

.download-area { margin-top: 34px; }

.download-area > p {
  margin: 0 0 14px;
  color: #eee;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.store-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.store-button {
  display: block;
  height: 60px;
  padding: 0;
  text-decoration: none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
  transition: transform .2s ease, filter .2s ease;
}

.store-button:hover { transform: translateY(-3px); filter: drop-shadow(0 12px 22px rgba(210,164,65,.26)); }
.store-button:focus-visible { outline: 3px solid #d2a441; outline-offset: 4px; }
.store-button img { display: block; width: auto; height: 60px; }
.google-play img { height: 72px; margin: -6px -15px; }

@keyframes arrive {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
  .hero { padding: 38px 25px; }
  .hero::after { inset: 10px; }
  .brand-mark { margin-bottom: 17px; }
  .intro { line-height: 1.55; }
  .download-area { margin-top: 26px; }
  .store-links { display: grid; }
  .store-button { justify-self: center; }
  .coin-field { opacity: .34; transform: scale(.72); }
  .coin-field-left { left: -66px; bottom: 3%; }
  .coin-field-right { right: -70px; top: 10%; }
}

@media (prefers-reduced-motion: reduce) {
  .content { animation: none; }
  .store-button { transition: none; }
}
