:root {
  color-scheme: dark;
  --font-title:    'Bebas Neue', Impact, sans-serif;
  --font-subtitle: 'Oswald', Arial, sans-serif;
  --font-number:   'Rajdhani', Arial, sans-serif;
  --font-body:     'Inter', Arial, sans-serif;

  --ink:       #f8f9ff;
  --muted:     #8892a4;
  --page:      #030305;
  --panel:     rgba(8, 8, 16, 0.94);
  --champagne: #f7e7b4;

  --gold:       #d4af37;
  --gold-light: #FFD700;
  --gold-dark:  #8a6a12;

  --orange:       #FF6B00;
  --orange-light: #FF8C00;
  --amber:        #FFA500;

  --electric: #00D4FF;
  --green:    #00E676;
  --red:      #FF1744;

  --glow-gold:    rgba(212, 175,  55, 0.50);
  --glow-orange:  rgba(255, 107,   0, 0.45);
  --glow-electric:rgba(  0, 212, 255, 0.35);

  --line:        rgba(212, 175, 55, 0.20);
  --line-orange: rgba(255, 107,  0, 0.28);

  --shadow: 0 32px 80px rgba(0, 0, 0, 0.75);
}

/* ── Animations ─────────────────────────────────────── */

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 24px var(--glow-orange), 0 4px 14px rgba(0,0,0,0.55); }
  50%       { box-shadow: 0 0 52px var(--glow-orange), 0 0 90px rgba(255,107,0,0.22), 0 4px 14px rgba(0,0,0,0.55); }
}

@keyframes scan-line-move {
  0%   { top: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.3; transform: scale(0.65); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes shimmer-bar {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow-border {
  0%, 100% { box-shadow: var(--shadow), 0 0 24px rgba(255,107,0,0.12); border-color: rgba(212,175,55,0.28); }
  50%       { box-shadow: var(--shadow), 0 0 48px rgba(255,107,0,0.28); border-color: rgba(255,107,0,0.45); }
}

@keyframes float-img {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

@keyframes ticket-in {
  from { opacity: 0; transform: translateY(8px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

@keyframes step-bounce {
  0%, 100% { transform: translateY(0); }
  38%       { transform: translateY(-10px); }
  68%       { transform: translateY(-4px); }
}

/* ── Reset ──────────────────────────────────────────── */

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 65% 42% at 88% 12%, rgba(255,107,  0,0.20), transparent),
    radial-gradient(ellipse 55% 40% at 12% 78%, rgba(212,175, 55,0.15), transparent),
    radial-gradient(ellipse 38% 30% at 50% 52%, rgba(  0,212,255,0.05), transparent),
    linear-gradient(168deg, #030305 0%, #090910 42%, #030305 100%);
  background-attachment: fixed;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Announcement bar ───────────────────────────────── */

.announcement-bar {
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #FF6B00, #d4af37, #FF8C00, #FFD700, #FF6B00);
  background-size: 300% 100%;
  animation: shimmer-bar 5s ease infinite;
}

.announcement-inner {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  color: #030305;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Topbar ─────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 max(16px, calc((100% - 1180px) / 2));
  min-height: 64px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(3, 3, 5, 0.88);
  border-bottom: 1px solid rgba(255, 107, 0, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.brand:hover { color: var(--ink); }

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.55));
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-family: var(--font-subtitle);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

nav a:hover { color: var(--ink); }

.nav-login {
  padding: 7px 16px;
  border-radius: 7px;
  border: 1px solid rgba(212,175,55,0.40);
  color: var(--gold) !important;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-login:hover {
  background: rgba(212,175,55,0.10);
  border-color: var(--gold);
  color: var(--gold-light) !important;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 7px;
  color: #030305 !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--orange-light));
  font-weight: 800;
  animation: btn-pulse 2.8s ease-in-out infinite;
  white-space: nowrap;
}

/* ── Layout ─────────────────────────────────────────── */

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.87;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--font-subtitle);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-light);
  font-family: var(--font-subtitle);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gold-text {
  background: linear-gradient(135deg, #8a6a12 0%, #d4af37 28%, #FFD700 50%, #d4af37 72%, #8a6a12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orange-text {
  background: linear-gradient(135deg, #C43B00 0%, #FF6B00 40%, #FFA500 65%, #FF6B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ───────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 490px);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 12px 0 56px;
}

.hero-copy { max-width: 680px; }

.lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #dce4f2;
  font-size: 19px;
  line-height: 1.62;
}

.lead strong { color: var(--gold-light); font-weight: 700; }

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Buttons */
.primary-action,
button.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  min-width: 210px;
  padding: 0 40px;
  border: 0;
  border-radius: 10px;
  color: #030305;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--orange-light), var(--gold));
  font: inherit;
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  animation: btn-pulse 2.8s ease-in-out infinite;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.primary-action:hover,
button.submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.primary-action:disabled,
button.submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  animation: none;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 210px;
  padding: 0 40px;
  border: 1px solid var(--line-orange);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 107, 0, 0.09);
  font: inherit;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.secondary-action:hover {
  background: rgba(255, 107, 0, 0.18);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* Ticker badges */
.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.ticker span {
  padding: 7px 14px;
  border: 1px solid rgba(255, 107, 0, 0.38);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(255, 107, 0, 0.10);
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at top, rgba(255,107,0,0.13), transparent 48%),
    linear-gradient(148deg, #0c0c14, #05050a);
  animation: glow-border 3.2s ease-in-out infinite;
  overflow: hidden;
}

.hero-visual > img {
  width: 100%;
  animation: float-img 5.5s ease-in-out infinite;
}

/* Scan effect */
.scan-overlay {
  position: absolute;
  inset: 20px;
  border-radius: 8px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.scan-status {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.14);
  border: 1px solid rgba(0, 212, 255, 0.45);
  color: var(--electric);
  font-family: var(--font-number);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.scan-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--electric);
  flex-shrink: 0;
  animation: pulse-dot 1s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--electric) 50%, transparent 100%);
  box-shadow: 0 0 14px var(--electric), 0 0 28px rgba(0,212,255,0.35);
  animation: scan-line-move 3.2s ease-in-out infinite;
}

/* ── Ticket grid panel ──────────────────────────────── */

.ticket-grid-panel {
  display: grid;
  gap: 9px;
  padding: 48px 4px 72px;
}

.ticket-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.ticket-item {
  position: relative;
  padding: 14px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.22);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  font-family: var(--font-number);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: rgba(200, 210, 230, 0.55);
  transition: all 0.28s ease;
  user-select: none;
}

.ticket-item::before {
  content: '#';
  position: absolute;
  top: 4px;
  left: 6px;
  font-size: 9px;
  opacity: 0.38;
  font-weight: 600;
  letter-spacing: 0;
}

.ticket-item.scanning {
  border-color: var(--electric);
  color: var(--electric);
  background: rgba(0, 212, 255, 0.10);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.30), inset 0 1px 0 rgba(0, 212, 255, 0.18);
}

.ticket-item.rejected {
  opacity: 0.16;
  border-color: rgba(255, 255, 255, 0.05);
  background: transparent;
}

.ticket-item.selected {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.40), inset 0 1px 0 rgba(255, 215, 0, 0.14);
  transform: scale(1.05);
  z-index: 1;
}

/* Winning ticket */
.winning-ticket {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 174px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 107, 0, 0.60);
  border-radius: 10px;
  background: rgba(4, 4, 10, 0.94);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.55),
    0 0 28px rgba(255,107,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.07);
  animation: ticket-in 0.5s ease-out both;
  z-index: 3;
}

.winning-ticket span,
.winning-ticket small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-subtitle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticket-number {
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: 0 0 22px rgba(255,215,0,0.55);
  transition: color 0.06s;
}

/* ── Stats bar ──────────────────────────────────────── */

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 56px;
  padding: 20px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,107,0,0.09), rgba(212,175,55,0.07), rgba(255,107,0,0.09));
  box-shadow: 0 0 48px rgba(255,107,0,0.09), inset 0 1px 0 rgba(255,255,255,0.05);
}

.stat {
  display: grid;
  gap: 3px;
  text-align: center;
  padding: 8px 36px;
}

.stat strong {
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255,215,0,0.40);
}

.stat span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 46px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── Sections ───────────────────────────────────────── */

.prize-band,
.steps { padding: 60px 0; }

.proof { padding: 0 0 60px; }

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.62;
}

.highlight-quote {
  display: inline-block;
  margin: 14px 0 0;
  padding: 14px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(212, 175, 55, 0.09);
  color: var(--gold-light);
  font-family: var(--font-subtitle);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Prize cards ────────────────────────────────────── */

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

.prize-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 460px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255,255,255,0.055), rgba(255,255,255,0.01));
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
  overflow: hidden;
  align-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.prize-card:hover { transform: translateY(-7px); }

.prize-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #030305;
  font-family: var(--font-subtitle);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px var(--glow-orange);
}

.prize-card img {
  width: 100%;
  min-height: 220px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s ease;
}

.prize-card:hover img { transform: scale(1.04); }

.prize-card > div > span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--amber);
  font-family: var(--font-subtitle);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.prize-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.56;
  font-size: 15px;
}

.truck {
  border-color: rgba(212,175,55,0.32);
  background: linear-gradient(170deg, rgba(212,175,55,0.14), rgba(8,8,16,0.96));
}
.truck:hover {
  border-color: rgba(212,175,55,0.62);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 44px rgba(212,175,55,0.15);
}

.razor {
  border-color: rgba(255,107,0,0.32);
  background: linear-gradient(170deg, rgba(255,107,0,0.14), rgba(8,8,16,0.96));
}
.razor:hover {
  border-color: rgba(255,107,0,0.62);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 44px rgba(255,107,0,0.15);
}

.suv {
  border-color: rgba(0,212,255,0.22);
  background: linear-gradient(170deg, rgba(0,212,255,0.10), rgba(8,8,16,0.96));
}
.suv:hover {
  border-color: rgba(0,212,255,0.48);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 44px rgba(0,212,255,0.12);
}

/* ── Conversion / Registro ──────────────────────────── */

.conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 32px;
  align-items: start;
  padding: 60px 0;
}

.conversion-copy { padding: 16px 0; }

.conversion-lead {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.price-card {
  display: inline-grid;
  gap: 4px;
  min-width: 248px;
  margin-top: 26px;
  padding: 20px 26px;
  border: 1px solid rgba(255,107,0,0.48);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,0,0.13), rgba(212,175,55,0.08));
  box-shadow: 0 0 34px rgba(255,107,0,0.12);
}

.price-card > span,
.price-card > small {
  color: var(--muted);
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-card > strong {
  font-family: var(--font-number);
  color: var(--orange-light);
  font-size: 62px;
  line-height: 0.88;
  text-shadow: 0 0 26px rgba(255,107,0,0.45);
}

.benefits {
  display: grid;
  gap: 10px;
  max-width: 580px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--champagne);
  background: rgba(255,255,255,0.04);
  font-size: 14px;
  line-height: 1.42;
  transition: border-color 0.2s, background 0.2s;
}

.benefits li:hover {
  border-color: rgba(255,107,0,0.38);
  background: rgba(255,107,0,0.07);
}

/* Form card */
.account-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255,255,255,0.058), rgba(255,255,255,0.012));
  box-shadow:
    0 24px 64px rgba(0,0,0,0.60),
    0 0 0 1px rgba(255,107,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.form-heading { display: grid; gap: 6px; }

.form-heading h2 { font-size: 42px; }

.form-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.tab {
  min-height: 40px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  box-shadow: none;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.2s;
}

.tab.is-active {
  color: #030305;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--orange-light));
}

.login-only { display: none; }

.field { display: grid; gap: 8px; }
.input-wrap { position: relative; }
.input-wrap input { padding-right: 44px; }
.eye-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #8892a4; font-size: 17px; padding: 4px; line-height: 1; transition: color 0.2s; }
.eye-btn:hover { color: var(--gold); }

label {
  color: var(--champagne);
  font-family: var(--font-subtitle);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255,255,255,0.06);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus {
  outline: none;
  border-color: rgba(255,107,0,0.58);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.13);
}

input::placeholder { color: rgba(200,210,230,0.38); }

button.submit { width: 100%; animation-delay: 0.4s; }

.status {
  min-height: 40px;
  margin: 0;
  color: var(--champagne);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

/* ── Steps ──────────────────────────────────────────── */

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-grid article {
  min-height: 206px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(170deg, rgba(255,255,255,0.052), rgba(255,255,255,0.01));
  box-shadow: 0 20px 52px rgba(0,0,0,0.52);
  transition: transform 0.22s ease, border-color 0.22s;
}

.step-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,0,0.38);
}

.step-grid article.is-bouncing {
  animation: step-bounce 0.55s ease-out both;
  border-color: rgba(255, 107, 0, 0.42);
}

.step-grid > article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--font-number);
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 0 22px var(--glow-orange);
}

.step-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.56;
  font-size: 14px;
}

/* ── Proof / Trust ──────────────────────────────────── */

.proof {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255,255,255,0.052), rgba(255,255,255,0.01));
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
}

.proof img { width: 100%; }

.proof > div > p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(212,175,55,0.08);
  font-family: var(--font-subtitle);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Final CTA ──────────────────────────────────────── */

.final-cta {
  margin: 40px 0 72px;
  padding: 52px 44px;
  border: 1px solid rgba(255,107,0,0.32);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 62% 55% at 82% 18%, rgba(255,107,0,0.20), transparent),
    radial-gradient(ellipse 50% 50% at 18% 82%, rgba(212,175,55,0.16), transparent),
    linear-gradient(140deg, #080810, #030305);
  box-shadow:
    var(--shadow),
    0 0 70px rgba(255,107,0,0.11),
    inset 0 1px 0 rgba(255,255,255,0.055);
  text-align: center;
}

.final-cta h2 { margin-bottom: 18px; }

.final-cta > p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.62;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.final-cta small {
  display: inline-flex;
  margin-top: 20px;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── Testimonials ───────────────────────────────────── */

.testimonials { padding: 60px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.testi-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255,255,255,0.052), rgba(255,255,255,0.01));
  transition: border-color 0.25s, transform 0.25s;
}
.testi-card:hover { border-color: rgba(212,175,55,0.32); transform: translateY(-4px); }

.testi-top { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-subtitle); font-size: 16px; font-weight: 800;
  color: #030305;
}

.testi-avatar.av1 { background: linear-gradient(135deg, #d4af37, #FF8C00); }
.testi-avatar.av2 { background: linear-gradient(135deg, #00D4FF, #0080cc); }
.testi-avatar.av3 { background: linear-gradient(135deg, #00E676, #008844); }
.testi-avatar.av4 { background: linear-gradient(135deg, #FF6B00, #CC3300); }
.testi-avatar.av5 { background: linear-gradient(135deg, #9c8fff, #5533cc); }
.testi-avatar.av6 { background: linear-gradient(135deg, #FFD700, #aa8800); }

.testi-meta { flex: 1; min-width: 0; }
.testi-meta strong { display: block; color: var(--champagne); font-size: 14px; font-weight: 700; }
.testi-meta small  { display: block; color: var(--muted); font-size: 11px; margin-top: 1px; }

.testi-stars { color: var(--gold-light); font-size: 13px; letter-spacing: 0.04em; }

.testi-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  font-style: italic;
}

/* ── Footer ─────────────────────────────────────────── */

.site-footer {
  width: 100%;
  margin-top: 20px;
  padding: 32px max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(212, 175, 55, 0.10);
  background: rgba(3, 3, 5, 0.96);
}

.footer-inner {
  display: grid;
  gap: 18px;
  max-width: 1180px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-subtitle); font-size: 13px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em;
}

.footer-brand-logo { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; filter: drop-shadow(0 0 6px rgba(212,175,55,0.40)); }

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 12px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-disclaimer {
  color: rgba(136, 146, 164, 0.65);
  font-size: 11px;
  line-height: 1.7;
  max-width: 880px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}

.footer-copy {
  color: rgba(136, 146, 164, 0.40);
  font-size: 11px;
  font-weight: 600;
}

/* ── Referral ───────────────────────────────────────── */

.referral { padding: 60px 0; }

.referral-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 60% 55% at 85% 15%, rgba(212,175,55,0.13), transparent),
    radial-gradient(ellipse 48% 48% at 15% 85%, rgba(255,107,0,0.09), transparent),
    linear-gradient(140deg, #080810, #030305);
  box-shadow: 0 0 60px rgba(212,175,55,0.07), inset 0 1px 0 rgba(255,255,255,0.05);
}

.referral-lead {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.referral-steps {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.referral-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rs-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #030305;
  font-family: var(--font-number);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(212,175,55,0.30);
}

.referral-steps li > div > strong {
  display: block;
  color: var(--champagne);
  font-family: var(--font-subtitle);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.referral-steps li > div > p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.referral-visual { display: grid; gap: 16px; }

.qr-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.qr-svg {
  width: 126px;
  height: 126px;
  margin: 0 auto;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 8px;
  padding: 6px;
}

.qr-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-subtitle);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qr-code {
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px rgba(255,215,0,0.4);
}

.qr-note { color: rgba(200, 210, 230, 0.35); font-size: 11px; }

.referral-reward {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.09);
}

.reward-emoji { font-size: 28px; line-height: 1; flex-shrink: 0; }

.reward-text strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-subtitle);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reward-text small { color: var(--muted); font-size: 12px; font-weight: 600; }

/* ── Payment methods ────────────────────────────────── */

.payment-methods { margin-top: 22px; }

.payment-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--font-subtitle);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-logos { display: flex; flex-wrap: wrap; gap: 8px; }

.pmeth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 7px;
  font-family: var(--font-subtitle);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.spei-logo  { background: rgba(0,160,200,0.15); border: 1px solid rgba(0,160,200,0.35); color: #4dd4ec; }
.oxxo-logo  { background: rgba(255,60,0,0.13);  border: 1px solid rgba(255,60,0,0.30);  color: #ff7043; }
.stripe-logo{ background: rgba(99,91,255,0.15); border: 1px solid rgba(99,91,255,0.35); color: #9c8fff; font-style: italic; }
.gpay-logo  { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: var(--ink); }

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 980px) {
  nav { display: none; }

  .hero,
  .conversion {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; padding-top: 30px; }

  .prize-grid { grid-template-columns: 1fr 1fr; }
  .step-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .referral-grid { grid-template-columns: 1fr; padding: 32px; }
  .referral-visual { grid-template-columns: auto 1fr; align-items: center; }

  .proof {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .proof img { max-width: 200px; margin: 0 auto; }

  .trust-list { justify-content: center; }

  .stat { padding: 8px 22px; }
  .stat strong { font-size: 24px; }
}

@media (max-width: 640px) {
  main, .topbar { width: calc(100% - 24px); }

  h1 { font-size: 54px; }

  .prize-grid,
  .step-grid { grid-template-columns: 1fr; }

  .referral-grid { padding: 24px 20px; }
  .referral-visual { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 12px; }
  .footer-links { gap: 12px; }

  .winning-ticket {
    position: static;
    margin-top: 16px;
  }

  .primary-action,
  .secondary-action { width: 100%; min-width: 0; }

  .stats-bar { flex-direction: column; gap: 14px; }
  .stat-divider { width: 100px; height: 1px; }

  .final-cta { padding: 34px 20px; }

  .final-cta .primary-action,
  .final-cta .secondary-action { width: 100%; }
}
