:root {
  --bg: #08090b;
  --bg-2: #0e1014;
  --surface: #15181e;
  --surface-2: #1d212a;
  --line: #262b34;
  --ink: #f5f6f1;
  --muted: #8b929c;
  --lime: #c6ff3d;
  --lime-deep: #9fe000;
  --magenta: #ff2f87;
  --gold: #e8c15a;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Golos Text', system-ui, sans-serif;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.lime { color: var(--lime); }
.mag { color: var(--magenta); }
.mag-text { color: var(--magenta); }
.muted { color: var(--muted); }

.atmos {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(50% 35% at 85% 0%, rgba(198,255,61,.16), transparent 70%),
    radial-gradient(45% 40% at 0% 60%, rgba(255,47,135,.13), transparent 70%),
    var(--bg);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 48px);
  background: rgba(8,9,11,.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: -.02em; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  background: rgba(198,255,61,.1); color: var(--lime);
  border: 1px solid rgba(198,255,61,.3); border-radius: 999px;
  padding: 8px 14px; font-weight: 700; font-size: 13px; cursor: pointer; font-family: inherit;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 999px; padding: 15px 26px;
  font-weight: 700; font-size: 16px; cursor: pointer; font-family: inherit;
  transition: transform .12s ease, filter .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 19px 38px; font-size: 18px; }
.btn-primary { background: var(--lime); color: #0a0c07; box-shadow: 0 14px 40px -12px rgba(198,255,61,.45); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }

/* HERO */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(60px, 11vw, 130px) clamp(18px, 5vw, 48px) 70px;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 12px var(--magenta); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(44px, 11vw, 104px); line-height: .96; letter-spacing: -.03em;
}
.hero-sub { color: var(--muted); font-size: clamp(16px, 2.4vw, 21px); max-width: 600px; margin: 28px 0 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-cards { position: absolute; top: 12%; right: 0; width: 320px; pointer-events: none; display: none; z-index: 0; }
@media (min-width: 1000px) {
  .hero-cards { display: block; }
  .hero-badge, .hero-title, .hero-sub, .hero-cta { max-width: 580px; position: relative; z-index: 1; }
}
.float-card {
  position: absolute; width: 240px; aspect-ratio: 1.585/1; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1); box-shadow: 0 30px 70px -20px rgba(0,0,0,.7);
}
.fc-1 { background: linear-gradient(135deg,#f5d77a,#caa24a 55%,#7a5e1e); transform: rotate(-12deg) translateY(0); top: 20px; right: 70px; animation: floaty 6s ease-in-out infinite; }
.fc-2 { background: linear-gradient(135deg,#1c1c20,#000); transform: rotate(8deg); top: 130px; right: 0; animation: floaty 7s ease-in-out infinite .5s; }
.fc-3 { background: linear-gradient(135deg,#2a2e36,#0d0f13); transform: rotate(-4deg); top: 250px; right: 95px; animation: floaty 8s ease-in-out infinite 1s; }
@keyframes floaty { 50% { transform: translateY(-18px) rotate(var(--r, 0)); } }

/* MARQUEE */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--lime); padding: 14px 0; }
.marquee-track { display: flex; gap: 40px; white-space: nowrap; width: max-content; animation: scroll 22s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #0a0c07; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* STATS */
.stats {
  max-width: var(--max); margin: 0 auto; padding: clamp(50px,8vw,90px) clamp(18px,5vw,48px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--font-display); font-weight: 900; font-size: clamp(38px, 7vw, 60px); line-height: 1; }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* SECTIONS */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(40px,7vw,80px) clamp(18px,5vw,48px); }
.eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--lime); }
.h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 5vw, 46px); letter-spacing: -.02em; margin: 12px 0 36px; line-height: 1.02; }

.features { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 680px) { .features { grid-template-columns: repeat(2, 1fr); } }
.feature { background: linear-gradient(180deg,var(--surface),var(--bg-2)); border: 1px solid var(--line); border-radius: 22px; padding: 26px; transition: border-color .25s, transform .25s; }
.feature:hover { border-color: rgba(198,255,61,.35); transform: translateY(-4px); }
.feature-ic { font-size: 34px; margin-bottom: 14px; }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* PROMO */
.promo-banner {
  max-width: var(--max); margin: 0 auto; position: relative; overflow: hidden;
  border-radius: 32px; border: 1px solid rgba(255,47,135,.3);
  background: linear-gradient(135deg, #1a1020, var(--bg-2) 70%);
  padding: clamp(40px,7vw,72px) clamp(24px,5vw,56px); text-align: center;
  margin-top: 20px; margin-bottom: 20px;
}
.promo-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 100%; background: radial-gradient(closest-side, rgba(255,47,135,.4), transparent); filter: blur(40px); }
.promo-h { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,4vw,34px); margin: 12px 0 6px; position: relative; }
.promo-amount { font-family: var(--font-display); font-weight: 900; font-size: clamp(52px,15vw,110px); color: var(--lime); line-height: 1; position: relative; text-shadow: 0 0 50px rgba(198,255,61,.4); }
.promo-code { display: inline-flex; align-items: center; gap: 12px; margin: 28px 0 14px; background: var(--bg); border: 1px dashed var(--magenta); border-radius: 14px; padding: 10px 10px 10px 20px; position: relative; }
.promo-code code { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: .08em; color: var(--magenta); }
.promo-note { color: var(--muted); font-size: 14px; position: relative; }

/* TARIFFS */
.tariffs { display: grid; gap: 12px; }
.tariff { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; font-weight: 500; }
.tariff b { font-family: var(--font-display); font-size: clamp(18px,3vw,24px); white-space: nowrap; }

/* REVIEWS */
.reviews { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 680px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { background: linear-gradient(180deg,var(--surface),var(--bg-2)); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #0a0c07; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 15px; }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.review-text { color: var(--muted); font-size: 15px; }

/* FINAL CTA */
.final-cta { max-width: var(--max); margin: 0 auto; text-align: center; padding: clamp(60px,10vw,120px) clamp(18px,5vw,48px); }
.final-cta .h2 { margin-bottom: 28px; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 50px clamp(18px,5vw,48px); max-width: var(--max); margin: 0 auto; }
.footer .logo { font-size: 26px; margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: 14px; max-width: 700px; margin-bottom: 12px; }

/* REVEAL ANIM */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .float-card, .marquee-track, .hero-badge .dot { animation: none; } }
