:root {
  --bg: #070707;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --gold: #f6c453;
  --gold-deep: #b8872d;
  --cream: #fff5d8;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(246, 196, 83, 0.25);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 196, 83, 0.20), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.10), transparent 28rem),
    linear-gradient(135deg, #050505 0%, #11100c 42%, #030303 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 92px;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(246, 196, 83, 0.06), transparent 52%);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.luxury-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246, 196, 83, 0.32), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.glow-one { left: -140px; top: 120px; }
.glow-two { right: -120px; bottom: -60px; opacity: 0.72; }

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 800;
  color: var(--cream);
}

.crown {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #1b1204;
  background: linear-gradient(135deg, #ffe08a, #c8922d);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(246, 196, 83, 0.32);
  font-size: 20px;
}

.secure-pill {
  padding: 10px 14px;
  border: 1px solid rgba(246, 196, 83, 0.32);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.24);
  font-size: 13px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #fff2bd, #f6c453 42%, #b8872d);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 55px rgba(246, 196, 83, 0.15);
}

.subtitle {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.55;
  margin-bottom: 28px;
}

.subtitle strong { color: var(--cream); }

.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  padding: 18px;
  border: 1px solid rgba(246, 196, 83, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(246, 196, 83, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 18px 50px rgba(0, 0, 0, 0.18);
  margin-bottom: 22px;
}

.promo-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

#promoCode {
  color: var(--cream);
  font-size: 34px;
  letter-spacing: 0.14em;
}

.copy-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  color: #160f03;
  background: linear-gradient(135deg, #fff2bd, #f6c453 56%, #bd8830);
  box-shadow: 0 12px 28px rgba(246, 196, 83, 0.22);
}

.copy-btn:active { transform: translateY(1px); }

.cta-row { max-width: 520px; }

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 420px);
  min-height: 64px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  color: #110c03;
  background: linear-gradient(135deg, #fff2bd 0%, #f6c453 48%, #a87522 100%);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(246, 196, 83, 0.28), inset 0 1px rgba(255,255,255,0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(246, 196, 83, 0.34), inset 0 1px rgba(255,255,255,0.6);
}

.primary-cta span { font-size: 22px; }

.microcopy {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.phone-card {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 380px);
  min-height: 600px;
  padding: 20px;
  border: 1px solid rgba(246, 196, 83, 0.28);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 196, 83, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.phone-top {
  width: 94px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: #070707;
  margin: -20px auto 34px;
}

.balance-card, .vip-card, .steps {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.balance-card {
  padding: 24px;
  text-align: center;
  margin-bottom: 18px;
}

.balance-card span, .balance-card small {
  display: block;
  color: var(--muted);
}

.balance-card strong {
  display: block;
  margin: 8px 0;
  color: var(--gold);
  font-size: 82px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.vip-card {
  padding: 22px;
  margin-bottom: 18px;
}

.vip-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #160f03;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.vip-card h2 {
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.vip-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.steps {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

.steps span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  color: #140e03;
  background: linear-gradient(135deg, #fff2bd, #c8922d);
  font-size: 13px;
  font-weight: 900;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.benefits article {
  padding: 26px;
  border: 1px solid rgba(246, 196, 83, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(14px);
}

.benefits span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.benefits h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.benefits p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.final-cta {
  text-align: center;
  padding: 54px 22px;
  border: 1px solid rgba(246, 196, 83, 0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(246, 196, 83, 0.13), rgba(255,255,255,0.045));
}

.final-cta p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 900;
}

.final-cta h2 {
  margin: 0 auto 24px;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.86) 20%, #040404 100%);
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  color: #120d03;
  text-decoration: none;
  background: linear-gradient(135deg, #fff2bd, #f6c453 52%, #b17c26);
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(246, 196, 83, 0.28);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  z-index: 30;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 18px;
  border-radius: 999px;
  color: #120d03;
  background: var(--cream);
  font-weight: 800;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 20px, 720px);
    padding-top: 10px;
    padding-bottom: 108px;
  }

  .hero {
    min-height: auto;
    padding: 18px;
    border-radius: 28px;
  }

  .topbar {
    margin-bottom: 48px;
  }

  .brand-mark {
    letter-spacing: 0.1em;
    font-size: 12px;
  }

  .secure-pill {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 70px);
  }

  .subtitle {
    font-size: 17px;
  }

  .promo-card {
    padding: 14px;
  }

  #promoCode {
    font-size: 28px;
  }

  .primary-cta {
    min-height: 58px;
  }

  .phone-frame {
    min-height: auto;
    border-radius: 34px;
  }

  .balance-card strong {
    font-size: 66px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 42px 18px;
  }

  .mobile-sticky {
    display: block;
  }

  .sticky-safe {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-shell { width: min(100% - 14px, 420px); }
  .hero { padding: 15px; }
  .brand-mark span:last-child { max-width: 160px; }
  .promo-card { flex-direction: column; align-items: stretch; }
  .copy-btn { width: 100%; }
  .microcopy { font-size: 12px; }
}
