/* ─── TOKENS ─── */
:root {
  --bg:           #0e0e0e;
  --bg2:          #141414;
  --card-bg:      #1a1a1a;

  --accent:       #CC1F1F;
  --accent-light: #e53535;
  --accent-dim:   rgba(204, 31, 31, 0.14);
  --accent-border: rgba(204, 31, 31, 0.28);

  --white:  #f5f5f5;
  --muted:  #888888;
  --line:   rgba(255, 255, 255, 0.07);
  --radius: 10px;

  --font-title: 'Bebas Neue', 'Anton', sans-serif;
  --font-body:  'Inter', 'Roboto', 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;
  overflow-x: hidden;
}

/* ─── BACKGROUND ORBS ─── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}
.bg-orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(204,31,31,0.22) 0%, transparent 70%);
  top: -80px;
  right: -120px;
}
.bg-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(204,31,31,0.12) 0%, transparent 70%);
  top: 60%;
  left: -100px;
}
.bg-orb--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(204,31,31,0.10) 0%, transparent 70%);
  bottom: 15%;
  right: -60px;
}
main, .urgency-bar, header, footer { position: relative; z-index: 1; }

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

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

/* ─── HERO ─── */
.hero {
  background: var(--bg);
  text-align: center;
}
.hero__banner {
  width: 100%;
  height: auto;
  display: block;
}
.hero__fade {
  width: 100%;
  height: 72px;
  margin-top: -72px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  padding: 0 24px 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.hero__headline {
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 40%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 14px;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 24px;
  text-align: center;
}
.hero__sub strong {
  color: var(--accent-light);
  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, #8B0000 0%, var(--accent-light) 50%, #8B0000 100%);
  background-size: 200% 100%;
  color: var(--white);
  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(204, 31, 31, 0.45);
  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(204, 31, 31, 0.65);
  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.2), 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(204,31,31,0.40); }
  50%       { box-shadow: 0 4px 44px rgba(204,31,31,0.68); }
}

/* ─── VALUE PROP ─── */
.value-prop {
  padding: 56px 24px 52px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.value-prop__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ─── VIP REASON — layout horizontal editorial ─── */
.vip-reason {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  text-align: left;
  transition: opacity 0.22s ease;
}
.vip-reason__left {
  flex-shrink: 0;
  width: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.vip-reason__num {
  font-family: var(--font-title);
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}
.vip-reason__bar {
  flex-shrink: 0;
  width: 1px;
  height: 56px;
  background: var(--accent-border);
  margin: 0 20px;
}
.vip-reason__right {
  flex: 1;
}
.vip-reason__right h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.vip-reason__right p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── SECTION TITLE ─── */
.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  letter-spacing: 0.02em;
  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(--line);
  border-top: 3px solid var(--accent);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(204,31,31,0.18);
}
.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(--accent);
  color: var(--white);
  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(--accent-light);
  font-weight: 600;
}

/* ─── DIVIDER ─── */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), 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: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  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(--accent-border);
  box-shadow: 0 6px 28px rgba(204,31,31,0.20);
}
.benefit-card__icon { font-size: 32px; margin-bottom: 10px; display: block; }
.benefit-card h3 { font-size: 13px; font-weight: 700; color: var(--accent-light); margin-bottom: 6px; }
.benefit-card p { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ─── PROOF ─── */
.proof {
  padding: 64px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(204,31,31,0.08) 0%, rgba(204,31,31,0.03) 50%, rgba(204,31,31,0.08) 100%);
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(204,31,31,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.proof__counter-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  position: relative;
}
.proof__plus { font-family: var(--font-title); font-size: 48px; color: var(--accent-light); margin-top: 6px; margin-left: 4px; }
.counter {
  font-family: var(--font-title);
  font-size: 80px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof__label { font-size: 16px; color: var(--white); margin-top: 12px; font-weight: 700; letter-spacing: 0.02em; position: relative; }
.proof__urgency { font-size: 12px; color: var(--muted); margin-top: 10px; position: relative; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 56px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.testimonials__grid { display: flex; flex-direction: column; gap: 12px; }
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 18px;
}
.testimonial-card__stars { color: var(--accent-light); 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;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(204,31,31,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final__deco {
  font-family: var(--font-title);
  font-size: 72px;
  color: var(--white);
  opacity: 0.06;
  line-height: 1;
  margin-bottom: -14px;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
.cta-final h2 { font-family: var(--font-title); font-size: 36px; letter-spacing: 0.02em; font-weight: 400; 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: #090909;
  border-top: 1px solid var(--line);
  padding: 32px 24px;
  text-align: center;
}
.footer__brand {
  font-family: var(--font-title);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 8px;
}
.footer a { font-size: 12px; color: var(--accent-light); 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.94) 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, #8B0000 0%, var(--accent-light) 50%, #8B0000 100%);
  background-size: 200% 100%;
  color: var(--white);
  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(204,31,31,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(22px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── DESKTOP ─── */
@media (min-width: 520px) {
  .products, .benefits, .testimonials, .cta-final {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 560px;
  }
  .value-prop { max-width: 600px; }
  .products__grid { gap: 16px; }
  .hero__headline { font-size: 72px; }
  .section-title { font-size: 38px; }
  .counter { font-size: 96px; }
  .proof__plus { font-size: 56px; }
  .btn-vip { font-size: 15px; padding: 20px 32px; }
}

@media (min-width: 600px) {
  .vip-reason__num { font-size: 64px; }
  .vip-reason__left { width: 80px; }
  .vip-reason__bar { height: 64px; margin: 0 28px; }
}
