:root {
  --font-gold-rush: "Montserrat";
  --font-rush: "Permanent Marker";
  --ink: #fff8df;
  --muted: #b9aa8c;
  --gold: #e8ad2f;
  --gold-light: #ffe58a;
}

* {
  box-sizing: border-box;
}

html,
body {
  background: #070604;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-gold-rush), Montserrat, Arial, sans-serif;
}

button,
input {
  font: inherit;
}

.shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  overflow: hidden;
  background: #070604;
}

.shell::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: -20px;
  background:
    linear-gradient(rgba(5, 4, 2, 0.76), rgba(5, 4, 2, 0.9)),
    url("/gold-rush-pips-logo.jpeg") center / cover no-repeat;
  filter: blur(3px) saturate(1.1);
  transform: scale(1.05);
}

.shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% 16%, rgba(255, 194, 58, 0.2), transparent 32%);
  pointer-events: none;
}

.card {
  width: min(100%, 500px);
  padding: clamp(28px, 6vw, 44px);
  border: 1px solid rgba(247, 191, 62, 0.48);
  border-radius: 24px;
  background: rgba(9, 8, 5, 0.94);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.72),
    0 0 46px rgba(221, 144, 17, 0.12),
    inset 0 1px 0 rgba(255, 232, 164, 0.1);
  text-align: center;
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: min(100%, 210px);
  height: auto;
  display: block;
  aspect-ratio: 1;
  margin: 0 auto 25px;
  border: 1px solid rgba(255, 222, 123, 0.5);
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 30px rgba(231, 164, 37, 0.13);
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--font-rush), "Arial Black", sans-serif;
  font-size: clamp(2.3rem, 8vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.description {
  max-width: 360px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 26px 0 0;
  padding: 22px 0;
  border-block: 1px solid rgba(232, 173, 47, 0.28);
}

.currency {
  align-self: flex-start;
  margin-top: 7px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

.price {
  color: #fff0ad;
  font-size: clamp(4rem, 13vw, 5.2rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.period {
  color: #a79a81;
  font-size: 0.8rem;
}

.subscription-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 9px;
  margin: 18px 0;
  color: #b6aa94;
  font-size: 0.68rem;
  line-height: 1.45;
}

.subscription-note span {
  color: var(--gold);
}

.pay-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  border: 1px solid #ffe79b;
  border-radius: 12px;
  color: #170e02;
  background: linear-gradient(135deg, #fff0a2, #e2a32a 55%, #a15c08);
  box-shadow: 0 7px 0 #593204, 0 17px 30px rgba(0, 0, 0, 0.4);
  font-weight: 900;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.pay-button span {
  font-size: 1.2rem;
}

.pay-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 9px 0 #593204, 0 20px 34px rgba(0, 0, 0, 0.45);
}

.pay-button:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #593204, 0 9px 18px rgba(0, 0, 0, 0.38);
}

.pay-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.fine-print {
  margin: 19px 2px 0;
  color: #776f60;
  font-size: 0.63rem;
  line-height: 1.55;
}

@media (max-width: 430px) {
  .shell {
    padding: 0;
  }

  .card {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-inline: 0;
    border-radius: 0;
  }

  .brand-logo {
    width: min(100%, 190px);
  }
}

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