/* =========================================================
   AtoZWIN — VIP Mode landing page
   ========================================================= */

:root {
  /* Brand palette (PRD §17) */
  --green: #3CE63C;
  --black: #05070A;
  --white: #FFFFFF;
  --gold: #FFD24A;
  --gold-dark: #E8A317;

  /* Derived neutrals */
  --charcoal: #0B0F14;
  --charcoal-2: #10151C;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #F2F4F7;
  --muted: #A3ACB8;
  --faint: #7F8894;

  --gold-foil: linear-gradient(100deg, #FFE69A 0%, var(--gold) 28%, var(--gold-dark) 58%, #FFD24A 80%, #FFEDB0 100%);

  /* Type */
  --font-display: "Sora", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  /* Layout */
  --gutter: clamp(20px, 5vw, 56px);
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
picture { display: contents; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.gold {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --glow: 0 10px 34px -12px rgba(60, 230, 60, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn__arrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  transition: transform 0.25s var(--ease-out);
}
.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow { transform: translateX(5px); }
.btn:focus-visible { border-radius: 999px; }
.btn:active { transform: scale(0.97); transition-duration: 0.08s; }

.btn--primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 0 1px rgba(60, 230, 60, 0.6), 0 0 0 6px rgba(60, 230, 60, 0.07), var(--glow);
}
.btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(60, 230, 60, 0.9), 0 0 0 8px rgba(60, 230, 60, 0.12), 0 16px 50px -10px rgba(60, 230, 60, 0.75);
}
.btn--primary:active { transform: scale(0.97); }

.btn--xl {
  min-height: 66px;
  padding: 0 40px;
  font-size: 1.08rem;
}

.btn--block { width: 100%; }

.btn--outline {
  min-height: 50px;
  color: var(--white);
  border: 1px solid rgba(60, 230, 60, 0.45);
  background: rgba(60, 230, 60, 0.04);
  font-size: 0.85rem;
}
.btn--outline:hover {
  border-color: var(--green);
  background: rgba(60, 230, 60, 0.1);
  transform: scale(1.02);
}
.btn--outline .btn__arrow { color: var(--green); }

.btn--ghost {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.78rem;
  color: var(--white);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}
.btn--ghost:hover { border-color: rgba(60, 230, 60, 0.6); transform: scale(1.02); }
.btn--ghost .btn__arrow { color: var(--green); }

.age-badge {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}
.age-badge--lg { width: 40px; height: 40px; font-size: 0.8rem; }

/* ---------- Navbar ---------- */
.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-block: 20px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__logo { display: block; border-radius: 8px; }
.nav__logo img { width: auto; height: 38px; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 56px;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 420px at 50% 42%, rgba(60, 230, 60, 0.13), transparent 70%),
    radial-gradient(420px 320px at 85% 12%, rgba(255, 210, 74, 0.07), transparent 70%),
    linear-gradient(180deg, #070A0E 0%, var(--black) 70%);
}

/* Slow drifting particles: two tiled dot layers translating one tile height. */
.hero__particles::before,
.hero__particles::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  will-change: transform;
}
.hero__particles::before {
  bottom: -300px;
  background-image:
    radial-gradient(1.5px 1.5px at 40px 60px, rgba(60, 230, 60, 0.7), transparent 60%),
    radial-gradient(1px 1px at 190px 210px, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 260px 30px, rgba(60, 230, 60, 0.45), transparent 60%),
    radial-gradient(1px 1px at 120px 150px, rgba(255, 255, 255, 0.35), transparent 60%);
  background-size: 300px 300px;
  animation: drift 48s linear infinite;
  opacity: 0.7;
}
.hero__particles::after {
  bottom: -460px;
  background-image:
    radial-gradient(2px 2px at 90px 120px, rgba(255, 210, 74, 0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 360px 340px, rgba(255, 210, 74, 0.35), transparent 60%),
    radial-gradient(1px 1px at 300px 80px, rgba(255, 255, 255, 0.4), transparent 60%);
  background-size: 460px 460px;
  animation: drift-slow 90s linear infinite;
  opacity: 0.6;
}
@keyframes drift { to { transform: translate3d(0, -300px, 0); } }
@keyframes drift-slow { to { transform: translate3d(0, -460px, 0); } }

/* Faint perspective grid "floor" — the technology cue. */
.hero__floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  height: 42%;
  background-image:
    linear-gradient(rgba(60, 230, 60, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 230, 60, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(600px) rotateX(62deg);
  transform-origin: 50% 100%;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 85%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 85%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "copy" "visual" "offers" "cta";
  row-gap: 28px;
}
.hero__copy { grid-area: copy; }
.hero__visual { grid-area: visual; }
.offers { grid-area: offers; }
.hero__cta { grid-area: cta; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--green);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--white);
}
.hero__line {
  display: block;
  font-size: clamp(2.7rem, 11vw, 4.6rem);
}
/* VIP: the focal point — gold foil, leaning forward like the AtoZWIN wordmark. */
.hero__vip {
  position: relative;
  display: inline-block;
  margin: 0.1em 0 0;
  padding: 0.07em 0.16em 0.03em 0.1em;
  /* Gold box border, same foil gradient as the text */
  border: max(3px, 0.028em) solid var(--gold);
  border-image: var(--gold-foil) 1;
  box-shadow: 0 0 44px -14px rgba(255, 210, 74, 0.45);
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s var(--ease-out);
  font-size: var(--vip-size);
  line-height: 0.86;
  letter-spacing: -0.045em;
  transform: skewX(-9deg);
  transform-origin: 0 100%;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__vip::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  padding: inherit; /* keeps the glow aligned with the padded text */
  z-index: -1;
  color: var(--gold);
  filter: blur(22px);
  opacity: 0.28;
  animation: vip-glow 5.5s ease-in-out infinite;
}
@keyframes vip-glow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.42; }
}
@media (hover: hover) {
  .hero__vip:hover { transform: skewX(-9deg) scale(1.03); }
}

/* "click me" hint with a curly arrow pointing at VIP */
.hero__vip-wrap {
  --vip-size: clamp(5.6rem, 27vw, 10.5rem);
  position: relative;
  display: inline-block;
}
.vip-hint {
  --hint-w: clamp(72px, 20vw, 96px);
  position: absolute;
  /* Clear the box's slanted right edge (skewX -9deg ≈ 0.16 × height), plus a small gap.
     The arrow tip sits 12.5% into the hint, so pull back by that much. */
  left: calc(100% + var(--vip-size) * 0.19 - var(--hint-w) * 0.125);
  bottom: calc(var(--vip-size) * 0.41);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: var(--hint-w);
  color: var(--white);
  opacity: 0.2;
  pointer-events: none;
}
.vip-hint__text {
  margin-right: -0.3rem;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-weight: 600;
  font-size: clamp(1.15rem, 4.6vw, 1.6rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: rotate(-6deg);
}
.vip-hint__arrow { width: 100%; height: auto; margin-top: 2px; }
/* Tap feedback for the VIP burst (js/vip-burst.js) */
.hero__vip.is-popped { animation: vip-pop 0.5s var(--ease-out); }
.hero__vip.is-popped::after { animation: vip-flash 0.7s ease-out; }
@keyframes vip-pop {
  0% { transform: skewX(-9deg) scale(1); }
  30% { transform: skewX(-9deg) scale(1.14); }
  60% { transform: skewX(-9deg) scale(0.97); }
  100% { transform: skewX(-9deg) scale(1); }
}
@keyframes vip-flash {
  0% { opacity: 0.95; }
  100% { opacity: 0.28; }
}

.vip-burst-canvas {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.btn--primary.is-nudged { animation: cta-nudge 1.2s var(--ease-out); }
@keyframes cta-nudge {
  0%, 100% { box-shadow: 0 0 0 1px rgba(60, 230, 60, 0.6), 0 0 0 6px rgba(60, 230, 60, 0.07), 0 10px 34px -12px rgba(60, 230, 60, 0.55); }
  40% { box-shadow: 0 0 0 1px rgba(60, 230, 60, 0.95), 0 0 0 14px rgba(60, 230, 60, 0.16), 0 18px 60px -8px rgba(60, 230, 60, 0.85); }
}

.hero__lede {
  max-width: 34ch;
  margin-top: 22px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- VIP visual (3D stage) ---------- */
.hero__visual {
  position: relative;
  height: clamp(300px, 82vw, 440px);
}

.stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-w: min(76vw, 300px);
  position: absolute;
  inset: 0;
  perspective: 1100px;
}

.stage__light {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  aspect-ratio: 1.3;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(60, 230, 60, 0.22), rgba(60, 230, 60, 0.06) 55%, transparent 75%);
  filter: blur(8px);
}

.float {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--card-w);
  margin-left: calc(var(--card-w) / -2);
  margin-top: calc(var(--card-w) / -3.172);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

/* Gold membership card */
.vip-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.586;
  border-radius: 18px;
  padding: 7% 7.5%;
  display: flex;
  flex-direction: column;
  color: #2A1A00;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 3px),
    linear-gradient(125deg, #FFEBA6 0%, #FFD24A 24%, #E8A317 52%, #FFD24A 76%, #F7C23A 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(120, 72, 0, 0.5),
    inset 0 0 0 1px rgba(255, 240, 190, 0.35);
}
.vip-card--hero {
  transform: rotateX(calc(10deg + var(--tilt-y))) rotateY(calc(-18deg + var(--tilt-x))) rotateZ(-6deg);
  transition: transform 0.7s var(--ease-out);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(120, 72, 0, 0.5),
    inset 0 0 0 1px rgba(255, 240, 190, 0.35),
    0 40px 80px -30px rgba(0, 0, 0, 0.9),
    0 0 70px -10px rgba(255, 210, 74, 0.35);
}

/* Engraved guilloche pattern — reads as a security document, not a credit card. */
.vip-card__guilloche {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    repeating-radial-gradient(circle at 115% -20%, transparent 0 9px, rgba(90, 55, 0, 0.55) 9px 10px),
    repeating-radial-gradient(circle at -25% 130%, transparent 0 11px, rgba(255, 250, 225, 0.8) 11px 12px);
  -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 55%, #000 100%);
  mask-image: linear-gradient(115deg, #000 0%, transparent 55%, #000 100%);
}

.vip-card__sheen {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 45%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: translateX(-160%) skewX(-15deg);
  animation: sheen 9s ease-in-out infinite 2s;
  mix-blend-mode: soft-light;
}
@keyframes sheen {
  0%, 70% { transform: translateX(-160%) skewX(-15deg); }
  100% { transform: translateX(330%) skewX(-15deg); }
}

.vip-card__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.vip-card__logo {
  width: 46%;
  height: auto;
  /* Engrave the white/green logo into the gold */
  filter: brightness(0) drop-shadow(0 1px 0 rgba(255, 244, 200, 0.55));
  opacity: 0.82;
}
.vip-card__crown {
  width: 11%;
  height: auto;
  color: #3A2400;
  opacity: 0.75;
  filter: drop-shadow(0 1px 0 rgba(255, 244, 200, 0.55));
}
.vip-card__title {
  position: relative;
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: calc(var(--card-w) * 0.118);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #2A1A00;
  text-shadow: 0 1px 0 rgba(255, 244, 200, 0.6);
}
.vip-card__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 5%;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: calc(var(--card-w) * 0.03);
  letter-spacing: 0.14em;
  color: rgba(42, 26, 0, 0.75);
}
.vip-card__status { display: inline-flex; align-items: center; gap: 6px; }
.vip-card__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #148F14;
  box-shadow: 0 0 0 2px rgba(20, 143, 20, 0.2);
}

.vip-card__shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -24%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.75), transparent);
  filter: blur(6px);
  animation: shadow-breathe 8s ease-in-out infinite;
}
@keyframes shadow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(0.9); opacity: 0.6; }
}

/* Four aces fanned behind the VIP card (pivot sits below the cards) */
.card-fan { position: absolute; inset: 0; }
.playing-card {
  --rot: 0deg;
  --suit: var(--green);
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--card-w) * 0.46);
  aspect-ratio: 0.7;
  margin-left: calc(var(--card-w) * -0.23);
  margin-top: calc(var(--card-w) * -0.52);
  padding: calc(var(--card-w) * 0.022) calc(var(--card-w) * 0.026);
  border-radius: calc(var(--card-w) * 0.03);
  background: linear-gradient(160deg, #19202A, #0A0E13 70%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 50px -25px rgba(0, 0, 0, 0.9);
  transform-origin: 50% 150%;
  transform: rotate(var(--rot));
}
.playing-card__index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: calc(var(--card-w) * 0.062);
  line-height: 1;
  color: var(--white);
}
.playing-card__index svg { width: calc(var(--card-w) * 0.045); height: auto; color: var(--suit); }
.playing-card--spade { --rot: -21deg; }
.playing-card--heart { --rot: -7deg; --suit: var(--gold); }
.playing-card--club { --rot: 7deg; }
.playing-card--diamond { --rot: 21deg; --suit: var(--gold); }

/* Casino chips */
.chip {
  --size: 62px;
  --edge: var(--green);
  position: absolute;
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--core, #0B0F14) 0 43%, transparent 44%),
    radial-gradient(circle, transparent 0 50%, var(--ring, rgba(255, 255, 255, 0.85)) 51% 53%, transparent 54%),
    repeating-conic-gradient(from 8deg, var(--stripe, #F4F6F8) 0 14deg, var(--edge) 14deg 45deg);
  box-shadow:
    inset 0 0 0 3px rgba(0, 0, 0, 0.25),
    inset 0 -6px 10px rgba(0, 0, 0, 0.35),
    0 18px 30px -14px rgba(0, 0, 0, 0.9);
}
.chip::after {
  content: "♠";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: calc(var(--size) * 0.3);
  color: var(--edge);
  line-height: 1;
}
.chip--black { --edge: #161B22; --stripe: var(--gold); --ring: rgba(255, 210, 74, 0.7); --core: #0B0F14; }
.chip--black::after { color: var(--gold); }
.chip--a { --size: 78px; left: 4%; bottom: 8%; transform: rotate(-20deg) scaleY(0.92); filter: blur(0.6px); }
.chip--b { --size: 52px; right: 6%; top: 8%; transform: rotate(24deg); }
.chip--c { --size: 44px; right: 16%; bottom: 12%; transform: rotate(8deg) scaleY(0.9); opacity: 0.9; }

/* Gold coins — occasional slow turn */
.coin {
  --size: 54px;
  position: absolute;
  width: var(--size);
  aspect-ratio: 1;
  perspective: 400px;
}
.coin__face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #FFF3C4 0 7%, var(--gold) 32%, var(--gold-dark) 66%, #9A6408 100%);
  box-shadow:
    inset 0 0 0 calc(var(--size) * 0.07) rgba(255, 236, 160, 0.5),
    inset 0 0 0 calc(var(--size) * 0.11) #C98A10,
    0 14px 26px -10px rgba(0, 0, 0, 0.85),
    0 0 26px rgba(255, 210, 74, 0.22);
  animation: coin-turn 11s ease-in-out infinite;
}
.coin__face::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: rgba(110, 66, 0, 0.7);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 7.5l4.6 3.8L12 4l4.4 7.3L21 7.5 19.4 17H4.6L3 7.5zM4.8 18.6h14.4V21H4.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 7.5l4.6 3.8L12 4l4.4 7.3L21 7.5 19.4 17H4.6L3 7.5zM4.8 18.6h14.4V21H4.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.coin__face { position: relative; }
@keyframes coin-turn {
  0%, 82% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.coin--a { --size: 58px; left: 12%; top: 10%; }
.coin--a .coin__face { animation-delay: 1s; }
.coin--b { --size: 44px; right: 3%; top: 46%; }
.coin--b .coin__face { animation-delay: 4.5s; }
.coin--c { --size: 34px; left: 34%; bottom: 12%; }
.coin--c .coin__face { animation-delay: 8s; }

/* ---------- Offer cards ---------- */
.offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 16px 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background-color 0.3s;
}
/* Gold hairline on top edge */
.offer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 74, 0.8), transparent);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.offer:hover {
  transform: translateY(-3px);
  border-color: rgba(60, 230, 60, 0.35);
}
.offer:hover::before { opacity: 1; }
.offer:focus-visible { border-radius: var(--radius-md); }

.offer__icon { width: 20px; height: 20px; color: var(--gold); margin-bottom: 12px; }
.offer__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 6.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.offer__title {
  margin-top: 8px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  color: var(--green);
}
.offer__desc {
  margin-top: 4px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
}

/* ---------- Hero CTA ---------- */
.hero__cta { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.hero__cta .btn { width: 100%; }
.trust {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}
.trust span { color: var(--green); margin-inline: 6px; }
.microcopy {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--faint);
  text-align: center;
}
.microcopy .sep {
  display: inline-block;
  width: 1px;
  height: 0.8em;
  margin: 0 8px;
  vertical-align: -0.05em;
  background: currentColor;
  opacity: 0.6;
}
.microcopy a { text-decoration: none; }
.microcopy a:hover { color: var(--muted); text-decoration: underline; }

/* ---------- Sections ---------- */
.section { position: relative; padding-block: clamp(80px, 12vw, 150px); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 6.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
}
.section__lede { margin-top: 18px; font-size: 1.05rem; color: var(--muted); max-width: 36ch; }

/* ---------- Benefits ---------- */
.benefits { border-top: 1px solid var(--line); }

.benefit-list { display: grid; gap: 18px; margin-top: clamp(40px, 6vw, 72px); }

.benefit {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  border: 1px solid var(--line);
}

.benefit__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 240px;
  padding: 36px 24px;
  background: radial-gradient(60% 70% at 50% 50%, var(--visual-glow, rgba(60, 230, 60, 0.14)), transparent 75%);
  border-bottom: 1px solid var(--line);
}
.benefit--gold, .benefit--card { --visual-glow: rgba(255, 210, 74, 0.12); }

.benefit__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.benefit__big--green {
  color: var(--green);
  text-shadow: 0 0 40px rgba(60, 230, 60, 0.45), 0 0 90px rgba(60, 230, 60, 0.2);
}
.benefit__big--gold {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.benefit__caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

/* 25 tick marks around the "25" — one per spin */
.spin-dial {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(190px, 50vw, 250px);
  aspect-ratio: 1;
}
.spin-dial::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(rgba(255, 210, 74, 0.75) 0 3.2deg, transparent 3.2deg 14.4deg);
  -webkit-mask: radial-gradient(circle, transparent 0 calc(50% - 12px), #000 calc(50% - 11px) 50%, transparent calc(50% + 1px));
  mask: radial-gradient(circle, transparent 0 calc(50% - 12px), #000 calc(50% - 11px) 50%, transparent calc(50% + 1px));
}
.spin-dial::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 210, 74, 0.18);
}
.spin-dial .benefit__big { font-size: clamp(4.5rem, 18vw, 6.5rem); }

.vip-card--mini {
  --card-w: min(64vw, 280px);
  width: var(--card-w);
  border-radius: 14px;
  transform: rotate(-5deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 240, 190, 0.35),
    0 30px 60px -28px rgba(0, 0, 0, 0.9),
    0 0 60px -14px rgba(255, 210, 74, 0.35);
}

.benefit__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 32px;
}
.benefit__kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.benefit__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 18ch;
}
.benefit__text {
  margin-top: 14px;
  margin-bottom: 26px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 42ch;
}

/* ---------- VIP status ---------- */
.status-section {
  border-top: 1px solid var(--line);
  background: radial-gradient(50% 60% at 80% 50%, rgba(60, 230, 60, 0.06), transparent 70%);
}
.status-section__grid { display: grid; gap: 40px; align-items: center; }

.status {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.status::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.status__head { display: flex; align-items: center; justify-content: space-between; }
.status__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--white);
}
.status__crown { width: 22px; height: 22px; color: var(--gold); }
.status__level-label {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--faint);
}
.status__level {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--white);
}
.status__pulse {
  position: relative;
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.status__pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: ping 2.8s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.status__bar {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
  margin-top: 22px;
}
.status__bar i {
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.35s, box-shadow 0.35s;
}
.status__bar i.on {
  background: var(--green);
  box-shadow: 0 0 12px rgba(60, 230, 60, 0.4);
}
/* On hover/focus, the remaining segments light up in sequence — a preview of activation. */
.status:hover .status__bar i:not(.on),
.status:focus-within .status__bar i:not(.on) {
  background: rgba(255, 210, 74, 0.55);
  box-shadow: 0 0 10px rgba(255, 210, 74, 0.25);
}
.status__bar i:nth-child(5) { transition-delay: 0.05s; }
.status__bar i:nth-child(6) { transition-delay: 0.1s; }
.status__bar i:nth-child(7) { transition-delay: 0.15s; }
.status__bar i:nth-child(8) { transition-delay: 0.2s; }
.status__bar i:nth-child(9) { transition-delay: 0.25s; }
.status__bar i:nth-child(10) { transition-delay: 0.3s; }

.status__text { margin-top: 18px; margin-bottom: 22px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.final { overflow: hidden; border-top: 1px solid var(--line); padding-bottom: 60px; }
.final__glow {
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(900px, 140vw);
  aspect-ratio: 1.6;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(60, 230, 60, 0.14), transparent 70%),
    radial-gradient(closest-side at 50% 70%, rgba(255, 210, 74, 0.06), transparent 70%);
  pointer-events: none;
}
.final__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.final__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
}
.final__text { margin-top: 22px; margin-bottom: 36px; font-size: 1.05rem; color: var(--muted); max-width: 40ch; }
.final__inner .btn { width: 100%; max-width: 420px; }
.final__inner .microcopy { margin-top: 16px; }

.terms {
  position: relative;
  max-width: 820px;
  margin: clamp(64px, 9vw, 110px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}
.terms__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.terms p { margin-top: 10px; font-size: 0.8rem; line-height: 1.65; color: var(--faint); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: #030406;
  padding-block: 44px calc(44px + 88px); /* room for the mobile sticky CTA */
}
.footer__inner { display: grid; gap: 28px; }
.footer__logo { width: auto; height: 32px; opacity: 0.9; }
.footer__rg {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  max-width: 52ch;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--faint);
  scroll-margin-top: 24px;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer__links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: 4px;
}
.footer__links a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer__legal { font-size: 0.76rem; color: var(--faint); }

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 18px 16px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(5, 7, 10, 0.96) 55%, rgba(5, 7, 10, 0));
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), visibility 0s linear 0.4s;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.4s var(--ease-out), visibility 0s;
}
.sticky-cta .btn { min-height: 58px; font-size: 1rem; }

/* =========================================================
   Breakpoints (mobile-first)
   ========================================================= */

/* Phones: pull the chips and coins to the edges so the card stays readable */
@media (max-width: 767px) {
  .stage { --card-w: min(72vw, 280px); }
  .chip--a { --size: 60px; left: -1%; bottom: 0; }
  .chip--b { --size: 40px; right: 1%; top: 0; }
  .chip--c { --size: 34px; right: 8%; bottom: 2%; }
  .coin--a { --size: 42px; left: 3%; top: 3%; }
  .coin--b { --size: 34px; right: -1%; top: 60%; }
  .coin--c { display: none; }
}

@media (min-width: 560px) {
  .offer { padding: 18px 18px 18px; }
  .offer__title { font-size: 0.68rem; }
  .hero__cta { align-items: flex-start; }
  .hero__cta .btn { width: auto; }
  .trust, .microcopy { text-align: left; }
  .final__inner .microcopy { text-align: center; }
  .nav__cta { display: inline-flex; }
}

@media (min-width: 768px) {
  .nav { padding-block: 28px; }
  .nav__logo img { height: 44px; }
  .hero { padding-top: 120px; }
  .hero__visual { height: 460px; }
  .stage { --card-w: 340px; }
  .chip--a { --size: 92px; }
  .coin--a { --size: 64px; }

  .benefit { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .benefit__visual { min-height: 360px; border-bottom: 0; border-left: 1px solid var(--line); order: 2; }
  .benefit:nth-child(even) .benefit__visual { order: 0; border-left: 0; border-right: 1px solid var(--line); }
  .benefit__body { justify-content: center; padding: 48px; }

  .status { padding: 34px 32px 30px; }

  .footer { padding-bottom: 44px; }
  .footer__inner { grid-template-columns: 1fr auto; align-items: end; }
  .footer__legal { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); }
  .sticky-cta { display: none; }
}

@media (min-width: 1024px) {
  .hero {
    min-height: min(100svh, 980px);
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 64px;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    grid-template-rows: 1fr auto auto auto 1fr;
    grid-template-areas:
      ".      visual"
      "copy   visual"
      "offers visual"
      "cta    visual"
      ".      visual";
    column-gap: clamp(32px, 4vw, 72px);
    row-gap: 30px;
  }
  .hero__line { font-size: clamp(3rem, min(5.4vw, 8.4vh), 5rem); }
  .hero__vip-wrap { --vip-size: clamp(6rem, min(12.5vw, 19vh), 11.5rem); }
  .hero__visual { height: auto; min-height: 560px; }
  .stage { --card-w: clamp(340px, 30vw, 430px); }
  .chip--a { --size: 104px; left: 2%; bottom: 14%; }
  .chip--b { --size: 60px; }
  .coin--a { --size: 70px; left: 8%; top: 14%; }
  .coin--b { --size: 50px; }
  .offers { max-width: 600px; gap: 12px; }
  .hero__glow {
    background:
      radial-gradient(640px 520px at 76% 50%, rgba(60, 230, 60, 0.13), transparent 70%),
      radial-gradient(520px 380px at 96% 8%, rgba(255, 210, 74, 0.07), transparent 70%),
      linear-gradient(180deg, #070A0E 0%, var(--black) 75%);
  }

  .status-section__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 80px; }
  .benefit__body { padding: 64px; }
}

/* Short laptop screens: keep the primary CTA above the fold */
@media (min-width: 1024px) and (max-height: 820px) {
  .hero { padding-top: 96px; padding-bottom: 40px; }
  .hero__grid { row-gap: 20px; }
  .hero__vip-wrap { --vip-size: clamp(5.5rem, min(11vw, 16vh), 10rem); }
  .eyebrow { margin-bottom: 12px; }
  .hero__lede { margin-top: 14px; }
  .offer { padding: 14px 16px; }
  .offer__icon { margin-bottom: 8px; }
  .btn--xl { min-height: 60px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .vip-card__sheen { display: none; }
  .btn:hover, .offer:hover { transform: none; }
}
