/* ===== Tokens ===== */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --text: #fafafa;
  --text-muted: #9ca3af;
  --gold: #fbbf24;
  --gold-dark: #d97706;
  --gold-soft: rgba(251, 191, 36, 0.12);
  --gold-glow: rgba(251, 191, 36, 0.2);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 24px;
  --max: 400px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100svh;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(251, 191, 36, 0.08) 0%, transparent 60%),
    var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding:
    calc(80px + var(--safe-top))
    20px
    max(24px, calc(20px + var(--safe-bottom)));
}

.shell {
  width: 100%;
  max-width: var(--max);
}

.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  text-align: center;
  border: 1px solid var(--border);
  overflow: hidden;
}

.card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 450ms ease forwards;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .meta__item--live::before {
    animation: none;
  }
}

/* Meta badges */
.meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.meta__item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
}

.meta__item--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  border-color: rgba(251, 191, 36, 0.25);
  background: var(--gold-soft);
}

.meta__item--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.meta__item--age {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Title */
.title {
  font-size: clamp(32px, 9vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}

.chip {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.lead {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Perks grid */
.perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.perk {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.perk__val {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.perk__lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.25;
}

.hint {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Buttons */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta:active {
  transform: scale(0.98);
}

.cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cta--primary {
  background: linear-gradient(180deg, #fcd34d 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.cta--primary:hover {
  box-shadow: 0 6px 28px rgba(251, 191, 36, 0.35);
}

.cta--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.cta--secondary .cta__icon {
  color: var(--gold);
}

.cta--secondary:hover {
  background: var(--gold-soft);
  border-color: rgba(251, 191, 36, 0.5);
}

.age-note {
  font-size: 11px;
  font-weight: 500;
  color: #525252;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .card {
    padding: 30px 26px 26px;
  }

  .title {
    font-size: 42px;
  }

  .perk__lbl {
    font-size: 11px;
  }
}
