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

:root {
  --bg:     #000000;
  --neon:   #39FF14;
  --neon2:  #76FF03;
  --dim:    #00E676;
  --white:  #FFFFFF;
  --font:   'Space Grotesk', system-ui, sans-serif;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: var(--font);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.page-scroll {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background:
    radial-gradient(ellipse 65% 40% at 50% 0%,   rgba(57,255,20,0.18) 0%, transparent 100%),
    radial-gradient(ellipse 45% 25% at 50% 10%,  rgba(118,255,3,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 70% 35% at 50% 100%, rgba(57,255,20,0.06) 0%, transparent 100%),
    var(--bg);
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.page {
  position: relative; z-index: 2;
  width: 100%; min-height: 100dvh;
  max-width: 430px;
  margin: 0 auto;
  padding: 20px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-wrap {
  position: relative;
  width: 92px; height: 92px;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.logo-glow {
  position: absolute;
  inset: -20px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(57,255,20,0.45)  0%,
    rgba(118,255,3,0.12) 50%,
    transparent 70%
  );
  filter: blur(12px);
  animation: lglow 3s ease-in-out infinite;
}
@keyframes lglow {
  0%,100% { opacity:.5; transform:scale(.9); }
  50%      { opacity:1;  transform:scale(1.1); }
}

.logo-ring {
  position: absolute; inset: -3px; border-radius: 50%;
  background: conic-gradient(
    var(--neon)  0deg,
    var(--neon2) 120deg,
    var(--dim)   240deg,
    var(--neon)  360deg
  );
  animation: rspin 6s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 1.5px));
  mask:         radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 1.5px));
}
@keyframes rspin { to { transform: rotate(360deg); } }

.logo-img {
  position: relative; z-index: 2;
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #000;
}

.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(57,255,20,.65);
  margin-bottom: 12px;
  text-align: center;
}

.headline {
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.08;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}
.headline em {
  font-style: normal; color: var(--neon);
  text-shadow: 0 0 28px rgba(57,255,20,.45);
}

.product-title {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--white);
  margin-bottom: 8px;
}

.tagline {
  font-size: 13.5px; color: rgba(255,255,255,.55);
  text-align: center; line-height: 1.5;
  margin-bottom: 18px;
}
.tagline strong { color: var(--neon); font-weight: 700; }

.badge-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 18px;
}

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}
.bl { background: rgba(255,23,68,.13); border: 1px solid rgba(255,23,68,.4); color: #FF5252; }
.bg { background: rgba(57,255,20,.10); border: 1px solid rgba(57,255,20,.32); color: var(--neon); }
.bt { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22); color: var(--white); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: blink 1.1s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.product-block {
  width: 100%;
  margin-bottom: 18px;
}

.product-img-wrap {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 12px;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(57,255,20,.2);
  background: rgba(57,255,20,.04);
  box-shadow: 0 0 40px rgba(57,255,20,.12);
}

.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cta-group {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; margin-bottom: 20px;
}

.btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px 20px; border-radius: 16px;
  font-family: var(--font); font-size: 16px; font-weight: 800;
  cursor: pointer; text-decoration: none; border: none;
  position: relative; overflow: hidden;
  transition: transform .15s; letter-spacing: -0.01em;
}
.btn:active { transform: scale(.97); }

.btn::after {
  content: '';
  position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  transition: left .4s ease;
}
.btn:hover::after { left: 130%; }

.btn-primary,
.btn-wa {
  background: linear-gradient(130deg, #39FF14 0%, #76FF03 55%, #39FF14 100%);
  color: #000;
  box-shadow: 0 0 0 0 rgba(57,255,20,.5), 0 6px 22px rgba(0,0,0,.5),
              inset 0 1px 0 rgba(255,255,255,.35);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(57,255,20,.5), 0 6px 22px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.35); }
  50%      { box-shadow: 0 0 0 10px rgba(57,255,20,0), 0 6px 28px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.35); }
}

.btn-secondary,
.btn-ig {
  background: transparent; color: var(--white);
  font-size: 15px; font-weight: 700;
  border: 1.5px solid rgba(57,255,20,.35);
  padding: 13px 20px;
}
.btn-secondary:hover,
.btn-ig:hover {
  border-color: rgba(57,255,20,.6);
  box-shadow: 0 0 24px rgba(57,255,20,.15);
}

.btn-icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn-icon-wa { width: 24px; height: 24px; }

.stats {
  display: flex; align-items: center;
  width: 100%;
  background: rgba(57,255,20,.04);
  border: 1px solid rgba(57,255,20,.12);
  border-radius: 16px;
  padding: 18px 10px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.stat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 3px; text-align: center; padding: 0 4px;
}
.smotion {
  width: 1px; height: 38px; flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(57,255,20,.18), transparent);
}
.sdiv {
  width: 1px; height: 38px; flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(57,255,20,.18), transparent);
}
.s-num {
  font-size: 18px; font-weight: 900; letter-spacing: -0.04em; line-height: 1;
}
.s-num.g  { color: var(--neon);  text-shadow: 0 0 14px rgba(57,255,20,.6); }
.s-num.t  { color: var(--dim);   text-shadow: 0 0 14px rgba(0,230,118,.55); }
.s-num.w  { color: var(--white); }
.s-lbl { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.40); letter-spacing: .02em; }

.benefits {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; margin-bottom: 20px;
}
.brow {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(57,255,20,.08);
}
.brow-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.brow-ico.g { background: rgba(57,255,20,.10);  border: 1px solid rgba(57,255,20,.22); }
.brow-ico.t { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); }
.brow-ico.d { background: rgba(118,255,3,.10);  border: 1px solid rgba(118,255,3,.22); }
.brow-text h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.brow-text p  { font-size: 11px; color: rgba(255,255,255,.44); line-height: 1.4; }

.footer {
  font-size: 11px; color: rgba(255,255,255,.20);
  text-align: center; letter-spacing: .02em;
}
.footer a { color: rgba(57,255,20,.45); text-decoration: none; }

.error-box { text-align: center; padding: 24px; }
.error-box a { color: var(--neon); }

@media (max-height: 800px) {
  .logo-wrap { width: 74px; height: 74px; margin-bottom: 10px; }
  .logo-img  { width: 74px; height: 74px; }
  .headline  { font-size: 24px; }
  .product-img-wrap { max-width: 220px; }
}
