/* ─── TOKENS ─── */
:root {
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --gold:       #c9a84c;
  --gold-light: #f0d080;
  --gold-dim:   rgba(201, 168, 76, 0.14);
  --white:      #ffffff;
  --muted:      #999999;
  --card-bg:    #161616;
  --border:     rgba(201, 168, 76, 0.22);
  --radius:     14px;
  --font-title: 'Playfair Display', serif;
  --font-body:  'Montserrat', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── URGENCY BAR ─── */
.urgency-bar {
  background: var(--gold);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.urgency-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.urgency-ticker span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── LOGO ─── */
.logo-img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  border-radius: 8px;
}
.logo-img--small {
  width: 68px;
  margin: 0 auto 10px;
  border-radius: 4px;
}

/* ─── HERO ─── */
.hero {
  background: #000;
  text-align: center;
}

.hero__banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero__cta {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201,168,76,0.11) 0%, transparent 70%);
}

.hero__cta-copy {
  font-size: 14px;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 18px;
  text-align: center;
}

.hero__cta-copy strong {
  color: var(--gold);
  font-weight: 700;
}

.hero__note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ─── BUTTON VIP ─── */
.btn-vip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  background: linear-gradient(110deg, #b8902e 0%, var(--gold-light) 50%, #b8902e 100%);
  background-size: 200% 100%;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.45s ease;
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.4);
  animation: pulse-glow 2.6s ease-in-out infinite;
  cursor: pointer;
}
.btn-vip:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.6);
  background-position: 100% 0;
}
.btn-vip:active { transform: scale(0.98); }
.btn-vip__icon { font-size: 20px; flex-shrink: 0; }
.btn-vip__shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { left: -100%; }
  55%  { left: 150%; }
  100% { left: 150%; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 28px rgba(201,168,76,0.38); }
  50%       { box-shadow: 0 4px 40px rgba(201,168,76,0.65); }
}

/* ─── COUNTDOWN ─── */
.countdown-wrap {
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.countdown-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px 8px;
  min-width: 62px;
}
.countdown__num {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.countdown__unit {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.countdown__sep {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 14px;
}

/* ─── SECTION TITLE ─── */
.section-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--white);
}

/* ─── PRODUCT PREVIEW ─── */
.products {
  padding: 56px 20px 48px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.products__sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.2);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 999px;
}
.product-card__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  padding: 10px 12px;
  text-align: left;
}
.products__hint {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ─── DIVIDER ─── */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
}

/* ─── BENEFITS ─── */
.benefits {
  padding: 0 24px 64px;
  max-width: 480px;
  margin: 0 auto;
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px 18px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.18);
}
.benefit-card__icon { font-size: 28px; margin-bottom: 10px; display: block; }
.benefit-card h3 { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.benefit-card p { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ─── PROOF ─── */
.proof {
  padding: 56px 24px;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof__counter-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}
.proof__plus { font-family: var(--font-title); font-size: 40px; color: var(--gold); margin-top: 4px; margin-left: 3px; }
.counter { font-family: var(--font-title); font-size: 66px; font-weight: 700; color: var(--gold); }
.proof__label { font-size: 15px; color: var(--white); margin-top: 10px; font-weight: 600; }
.proof__urgency { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 56px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.testimonials__grid { display: flex; flex-direction: column; gap: 12px; }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
}
.testimonial-card__stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; letter-spacing: 3px; }
.testimonial-card p { font-size: 13px; color: var(--white); line-height: 1.65; font-style: italic; margin-bottom: 10px; }
.testimonial-card__name { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ─── CTA FINAL ─── */
.cta-final {
  padding: 56px 24px 80px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.09) 0%, transparent 70%);
}
.cta-final__event {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -10px;
  letter-spacing: 0.05em;
}
.cta-final h2 { font-family: var(--font-title); font-size: 30px; font-weight: 700; margin-bottom: 10px; }
.cta-final > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; max-width: 300px; }
.cta-final__trust { font-size: 11px; color: var(--muted); margin-top: 16px; letter-spacing: 0.05em; }

/* ─── FOOTER ─── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  text-align: center;
}
.footer__logo { display: flex; justify-content: center; margin-bottom: 8px; }
.footer a { font-size: 12px; color: var(--gold); text-decoration: none; display: block; margin-bottom: 8px; }
.footer a:hover { text-decoration: underline; }
.footer p { font-size: 11px; color: var(--muted); }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.92) 30%);
  display: flex;
  justify-content: center;
  transform: translateY(110%);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(110deg, #b8902e 0%, var(--gold-light) 50%, #b8902e 100%);
  background-size: 200% 100%;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(201,168,76,0.5);
  animation: pulse-glow 2.6s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sticky-cta__btn:hover  { transform: scale(1.02); }
.sticky-cta__btn:active { transform: scale(0.97); }

/* ─── HERO ANIMATIONS ─── */
.anim {
  opacity: 0;
  animation: fadeSlideUp 0.65s ease forwards;
}
.anim.d1 { animation-delay: 0.10s; }
.anim.d2 { animation-delay: 0.25s; }
.anim.d3 { animation-delay: 0.40s; }
.anim.d4 { animation-delay: 0.55s; }
.anim.d5 { animation-delay: 0.68s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── DESKTOP ─── */
@media (min-width: 520px) {
  .products, .benefits, .testimonials, .cta-final {
    padding-left: 40px;
    padding-right: 40px;
  }
  .products__grid { gap: 16px; }
}
