/* =====================================================================
   THE ULTIMATE CASINO VIP PACKAGE — Prelander
   Aesthetic: art-deco "high-roller" luxury — matte black, antique &
   champagne gold, emerald felt glow. Cinzel display + Jost body.
   ===================================================================== */

/* ----------------------------- TOKENS ------------------------------- */
:root {
  /* surfaces */
  --bg:           #08080a;
  --bg-deep:      #050506;
  --panel:        #101013;
  --panel-soft:   #16161b;

  /* gold spectrum */
  --gold:         #e9c66b;
  --gold-bright:  #f7e3a3;
  --gold-deep:    #b3863c;
  --gold-dark:    #6e4f1f;
  --gold-grad:    linear-gradient(135deg, #f7e3a3 0%, #e9c66b 38%, #b3863c 70%, #815f29 100%);

  /* accents */
  --felt:         #0d3b2c;   /* casino felt green */
  --crimson:      #c0303a;
  --ink:          #ece6d6;   /* warm off-white text */
  --ink-mute:     #948d79;
  --ink-faint:    #5d574a;

  --line:         rgba(233, 198, 107, 0.22);
  --line-soft:    rgba(233, 198, 107, 0.10);

  --shadow-deep:  0 40px 90px -30px rgba(0, 0, 0, 0.9);
  --radius:       16px;

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-deco:    "Cinzel Decorative", "Cinzel", serif;
  --font-body:    "Jost", "Segoe UI", sans-serif;

  /* swap these for real artwork later */
  --showcase-art: none;
  --card-art:     none;
}

/* ----------------------------- RESET -------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

/* atmospheric base layer: radial gold haze + subtle deco fan + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(233, 198, 107, 0.16), transparent 62%),
    radial-gradient(900px 700px at 50% 116%, rgba(13, 59, 44, 0.42), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: #1a1206; }

.no-break {
  white-space: nowrap;
}

/* ========================== STATUS TICKER ========================== */
.statusbar {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #0c0c0e, #060607);
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(233, 198, 107, 0.06);
  overflow: hidden;
  height: 38px;
}
.statusbar__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.statusbar__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 38px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
}
.statusbar__live {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(90deg, transparent, #060607 26%);
  font-weight: 600;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.dot--red {
  background: var(--crimson);
  box-shadow: 0 0 0 0 rgba(192, 48, 58, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(192, 48, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 48, 58, 0); }
}

/* ============================== HERO =============================== */
.hero {
  position: relative;
  padding: 30px 22px 18px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--showcase-art) center / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 35%, transparent);
          mask-image: linear-gradient(180deg, #000 35%, transparent);
  opacity: 0.4;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow__rule {
  width: clamp(28px, 9vw, 70px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}
.eyebrow__rule:last-child { transform: scaleX(-1); }

.hero__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.2vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.hero__title em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 14px rgba(233, 198, 107, 0.3));
}

.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px auto 0;
  max-width: 340px;
}
.deco-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}
.deco-divider__gem {
  width: 12px; height: 12px;
  background: var(--gold-grad);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(233, 198, 107, 0.55);
}

.hero__lede {
  margin: 16px auto 0;
  max-width: 600px;
  font-size: clamp(1rem, 2.1vw, 1.14rem);
  color: var(--ink-mute);
  font-weight: 300;
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 12px 25px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 16, 19, 0.7);
  backdrop-filter: blur(6px);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.45rem;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__stat-label {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__cta-note {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ----------------------- CENTRAL IMAGE ASSET ----------------------- */
.showcase {
  position: relative;
  width: min(560px, 100%);
  margin: 24px auto 0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}
.showcase__glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 198, 107, 0.32), transparent 62%);
  filter: blur(14px);
  animation: glowpulse 5.5s ease-in-out infinite;
}
@keyframes glowpulse {
  50% { opacity: 0.55; transform: scale(1.08); }
}

/* the VIP card */
.vip-card {
  position: relative;
  width: 320px;
  height: 202px;
  border-radius: 18px;
  background:
    var(--card-art) center / cover,
    linear-gradient(150deg, #1c1c20 0%, #0c0c0e 52%, #161318 100%);
  border: 1px solid rgba(233, 198, 107, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 5px rgba(0, 0, 0, 0.55),
    inset 0 0 0 6px rgba(233, 198, 107, 0.18),
    0 30px 60px -18px rgba(0, 0, 0, 0.9);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotateX(8deg) rotateY(-12deg);
  animation: cardfloat 7s ease-in-out infinite;
  overflow: hidden;
  z-index: 2;
}
@keyframes cardfloat {
  50% { transform: rotateX(6deg) rotateY(-7deg) translateY(-12px); }
}
.vip-card__shine {
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  animation: shine 5.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 62%  { left: -60%; }
  78%, 100% { left: 130%; }
}
.vip-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vip-card__brand {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.3em;
  font-size: 14px;
  color: var(--gold-bright);
}
.vip-card__tag {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 4px;
}
.vip-card__chip {
  width: 46px; height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f7e3a3, #b3863c 60%, #6e4f1f);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 5px 7px;
}
.vip-card__chip span {
  height: 2px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}
.vip-card__chip span:nth-child(2) { width: 70%; }
.vip-card__name {
  font-family: var(--font-deco);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.vip-card__row--bottom {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.vip-card__suit { color: var(--gold-deep); letter-spacing: 0.14em; }

/* floating vouchers */
.voucher {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 200px;
  color: var(--ink);
  background: rgba(20, 20, 24, 0.82);
  border: 1px solid var(--line);
  border-radius: 11px;
  backdrop-filter: blur(9px);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.9);
  z-index: 3; /* sits on top of the card */
}
.voucher__icon { font-size: 17px; }
/* card sits centred in the 560x300 showcase -> x[120..440], y[49..251].
   each voucher mostly outside the card, just kissing one edge (iteration 1 look). */
.voucher--travel { top: 0;       left: -28px; animation: bob 6s ease-in-out infinite; }
.voucher--spins  { top: 126px;   left: 412px; animation: bob 6s ease-in-out infinite 1.4s; }
.voucher--bank   { bottom: 0;    left: 24px;  animation: bob 6s ease-in-out infinite 2.7s; }
@keyframes bob { 50% { transform: translateY(-13px); } }

/* ===================== BOTTOM SHEET (3-step flow) ================== */
.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(4, 4, 6, 0.74);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sheet-overlay[hidden] { display: none; }
.sheet-overlay.is-open { opacity: 1; }

.sheet {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: auto;          /* drawer grows to fit its content */
  max-height: 88vh;      /* ...but never taller than the viewport */
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -34px 80px -20px rgba(0, 0, 0, 0.9);
  transform: translateY(101%);
  transition: transform 0.44s cubic-bezier(.22, .85, .26, 1);
  overflow: hidden;
}
.sheet-overlay.is-open .sheet { transform: translateY(0); }

/* art-deco corner brackets — frame the top of the drawer */
.corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--gold-deep);
  pointer-events: none;
  z-index: 3;
}
.corner--tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; }
.corner--tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; }

/* fixed header row: 3-step indicator, centred below the corners */
.sheet__top {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 46px 16px 18px;
}

.sheet__body {
  position: relative;
  flex: 0 1 auto;   /* size to content; shrink + scroll only if capped */
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px clamp(20px, 5vw, 46px) 46px;
}

/* -------------------------- STEPPER -------------------------------- */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
}
.stepper__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.stepper__node span {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-faint);
  background: var(--bg-deep);
  transition: all 0.45s ease;
}
.stepper__node em {
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  transition: color 0.45s ease;
}
.stepper__bar {
  width: clamp(28px, 11vw, 74px);
  height: 1px;
  background: var(--line);
  margin-bottom: 22px;
  transition: background 0.45s ease;
}
.stepper__node.is-active span,
.stepper__node.is-done span {
  border-color: var(--gold);
  color: #1a1206;
  background: var(--gold-grad);
  box-shadow: 0 0 18px rgba(233, 198, 107, 0.35);
}
.stepper__node.is-active em,
.stepper__node.is-done em { color: var(--gold-bright); }
.stepper__bar.is-done { background: var(--gold-deep); }

/* ----------------------------- STEPS ------------------------------- */
.step { display: none; animation: stepin 0.55s cubic-bezier(.2,.7,.2,1); }
.step.is-active { display: block; }
@keyframes stepin {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step__kicker {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 8px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 4.4vw, 2.05rem);
  line-height: 1.2;
  text-align: center;
  color: var(--ink);
}
.step__sub {
  text-align: center;
  color: var(--ink-mute);
  margin: 12px auto 0;
  max-width: 460px;
  font-weight: 300;
  font-size: 0.97rem;
}
.step__sub strong { color: var(--gold-bright); font-weight: 600; }
.step__finenote {
  margin-top: 16px;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-faint);
  font-weight: 300;
}

/* ----------------------------- TIERS ------------------------------- */
.tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 0;
}
/* each tier is a button — clicking it advances straight to verification */
.tier {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  font-family: inherit;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-deep);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.15s, box-shadow 0.25s;
}
.tier:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: linear-gradient(160deg, rgba(233, 198, 107, 0.1), rgba(13, 59, 44, 0.16));
  box-shadow: 0 0 0 1px rgba(233, 198, 107, 0.22), 0 16px 32px -20px rgba(233, 198, 107, 0.55);
}
.tier:active { transform: translateY(0); }
.tier:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.tier__icon {
  font-size: 26px;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(160deg, #1b1b20, #0c0c0e);
  border: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.tier__text { display: flex; flex-direction: column; gap: 3px; }
.tier__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.tier__desc { font-size: 0.86rem; color: var(--ink-mute); font-weight: 300; }
.tier__arrow {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--gold-deep);
  transition: transform 0.22s, color 0.22s;
}
.tier:hover .tier__arrow {
  color: var(--gold-bright);
  transform: translateX(5px);
}

/* ------------------------------ CTA -------------------------------- */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 18px 22px;
  transition: transform 0.14s, box-shadow 0.25s, filter 0.2s, opacity 0.2s;
  position: relative;
  overflow: hidden;
}
.cta:disabled { opacity: 0.4; cursor: not-allowed; }
.cta:not(:disabled):hover { transform: translateY(-2px); }
.cta:not(:disabled):active { transform: translateY(0); }

.cta--ghost {
  background: var(--bg-deep);
  border: 1px solid var(--gold-deep);
  color: var(--gold-bright);
}
.cta--ghost:not(:disabled):hover {
  background: rgba(233, 198, 107, 0.08);
  box-shadow: 0 12px 28px -16px rgba(233, 198, 107, 0.6);
}
.cta__arrow { transition: transform 0.2s; }
.cta--ghost:not(:disabled):hover .cta__arrow { transform: translateX(4px); }

.cta--primary {
  background: var(--gold-grad);
  color: #1a1206;
  box-shadow:
    0 0 28px rgba(233, 198, 107, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: ctaglow 2.6s ease-in-out infinite;
}
@keyframes ctaglow {
  50% { box-shadow: 0 0 46px rgba(233, 198, 107, 0.7), inset 0 1px 0 rgba(255,255,255,0.5); }
}
.cta--primary::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: ctasweep 3.4s ease-in-out infinite;
}
@keyframes ctasweep {
  0%, 55% { left: -80%; }
  90%, 100% { left: 150%; }
}
/* hero opener — shrinks to content and centers in the hero */
.cta--open {
  display: inline-flex;
  width: auto;
  margin-top: 26px;
  padding: 18px 46px;
  font-size: 1.08rem;
}
/* loading state */
.cta.is-loading .cta__label { opacity: 0; }
.cta.is-loading { pointer-events: none; }
.cta__spin {
  display: none;
  position: absolute;
  width: 22px; height: 22px;
  border: 2.5px solid rgba(26, 18, 6, 0.3);
  border-top-color: #1a1206;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.cta.is-loading .cta__spin { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------- VERIFY -------------------------------- */
.verify {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 0 8px;
}
.verify__ring {
  width: 94px; height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 26px;
}
.verify__ring::before,
.verify__ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.verify__ring::before {
  border-top-color: var(--gold);
  border-right-color: var(--gold-deep);
  animation: spin 1.1s linear infinite;
}
.verify__ring::after {
  inset: 10px;
  border-bottom-color: var(--gold-deep);
  border-left-color: rgba(233, 198, 107, 0.3);
  animation: spin 1.6s linear infinite reverse;
}
.verify__ring-core {
  font-size: 30px;
  animation: bob 2.2s ease-in-out infinite;
}
.verify__msg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--gold-bright);
  text-align: center;
  min-height: 1.5em;
  transition: opacity 0.25s;
}
.verify__bar {
  width: min(320px, 80%);
  height: 5px;
  border-radius: 4px;
  background: var(--bg-deep);
  border: 1px solid var(--line-soft);
  margin: 18px 0 14px;
  overflow: hidden;
}
.verify__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(233, 198, 107, 0.6);
  transition: width 0.5s cubic-bezier(.3,.8,.3,1);
}
.verify__hint {
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align: center;
  font-weight: 300;
  max-width: 360px;
}
.verify__msg.is-secured { color: #6fe0a6; }

/* verify failure */
.verify-fail {
  text-align: center;
  padding: 24px 0 6px;
  animation: stepin 0.5s ease;
}
.verify-fail__mark {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--crimson);
  color: var(--crimson);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
}
.verify-fail h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
}
.verify-fail p {
  color: var(--ink-mute);
  margin: 8px auto 22px;
  max-width: 380px;
  font-weight: 300;
  font-size: 0.93rem;
}

/* ----------------------------- STEP 3 ------------------------------ */
.badge-won {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(233, 198, 107, 0.12), rgba(13, 59, 44, 0.2));
  animation: badgepop 0.6s cubic-bezier(.2,1.4,.4,1) both;
}
@keyframes badgepop {
  from { opacity: 0; transform: scale(0.7); }
}

#claimForm { margin-top: 26px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
  font-weight: 500;
  text-align: center;
}
.field input[type="tel"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input[type="tel"]::placeholder { color: var(--ink-faint); }
.field input[type="tel"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(233, 198, 107, 0.16);
}
.field.has-error input[type="tel"] {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(192, 48, 58, 0.16);
}
.field__error {
  display: none;
  margin-top: 8px;
  font-size: 12.5px;
  color: #e8848c;
  text-align: center;
}
.field.has-error .field__error { display: block; }

/* intl-tel-input dark overrides */
.iti { width: 100%; }
.iti__dropdown-content {
  background: var(--panel) !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  z-index: 1000 !important;   /* float above the drawer overlay */
}
.iti__country-list, .iti__search-input {
  background: var(--panel) !important;
  color: var(--ink) !important;
}
.iti__country.iti__highlight { background: rgba(233, 198, 107, 0.14) !important; }
.iti__dial-code { color: var(--ink-mute) !important; }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--ink) !important; }
.iti__selected-country-primary:hover,
.iti__selected-country:hover { background: rgba(233, 198, 107, 0.08) !important; }

/* ----------------------------- DONE -------------------------------- */
.done { text-align: center; padding: 22px 0; }
.done__mark {
  width: 78px; height: 78px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #1a1206;
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 0 40px rgba(233, 198, 107, 0.5);
  animation: badgepop 0.6s cubic-bezier(.2,1.4,.4,1) both;
}
.done__forward {
  margin: 14px auto 0;
  max-width: 430px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold-bright);
}
.done__redirect {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}
.done__redirect span {
  display: inline-block;
  min-width: 1.1em;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-bright);
  text-align: center;
}

/* ============================= FOOTER ============================== */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 30px 24px 44px;
  text-align: center;
}
.footer__trust {
  max-width: 620px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 300;
  line-height: 1.8;
}
.footer__legal {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* =========================== REVEAL ANIM =========================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.85s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ========================== RESPONSIVE ============================= */
@media (max-width: 560px) {
  /* ------------------------------ HERO ----------------------------- */
  .hero { padding: 26px 18px 26px; }
  .statusbar__live { display: none; }

  .eyebrow { gap: 9px; font-size: 9px; letter-spacing: 0.16em; }
  .eyebrow__rule { width: clamp(16px, 7vw, 40px); }

  .hero__title { font-size: clamp(1.6rem, 7.2vw, 2.5rem); }
  .hero__lede { margin-top: 14px; font-size: 0.98rem; }

  .hero__stat { gap: 12px; margin-top: 18px; padding: 11px 18px; }
  .hero__stat-num { font-size: 2rem; }
  .hero__stat-label { font-size: 9.5px; }

  /* showcase: scaled-down card, vouchers re-tucked into its corners */
  .showcase { width: 100%; height: 216px; margin-top: 4px; }
  .showcase__glow { width: 300px; height: 300px; }
  .vip-card {
    animation: none;
    transform: rotateX(5deg) rotateY(-6deg) scale(0.8);
  }
  .voucher {
    font-size: 10.5px;
    max-width: 168px;
    padding: 8px 11px;
    gap: 6px;
  }
  .voucher__icon { font-size: 14px; }
  .voucher--travel { top: 6px;     left: 2%; }
  .voucher--spins  { top: 92px;    left: auto; right: 2%; }
  .voucher--bank   { bottom: 6px;  left: 7%; }

  .cta--open { margin-top: 14px; padding: 17px 36px; font-size: 1rem; }
  .hero__cta-note { font-size: 9.5px; letter-spacing: 0.12em; }

  /* ----------------------------- DRAWER ---------------------------- */
  .sheet { max-height: 92vh; }
  .sheet__top { padding: 42px 14px 14px; }
  .sheet__body { padding: 14px 18px 38px; }
  .stepper__bar { width: clamp(20px, 8vw, 44px); }

  .step__title { font-size: clamp(1.4rem, 6vw, 1.7rem); }
  .step__sub { font-size: 0.92rem; }

  .tiers { margin-top: 22px; }
  .tier { padding: 14px; gap: 12px; }
  .tier__icon { width: 46px; height: 46px; font-size: 22px; }
  .tier__name { font-size: 1rem; }
  .tier__desc { font-size: 0.8rem; }

  /* ----------------------------- FOOTER ---------------------------- */
  .footer { padding: 26px 20px 36px; }
}

/* =========================== A11Y / MOTION ========================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
