:root {
  --bg: #050608;
  --bg-2: #080a0f;
  --card: rgba(255, 255, 255, 0.055);
  --card-2: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.10);
  --border-cyan: rgba(0, 229, 255, 0.32);
  --text: #f7f8fb;
  --muted: #9ba7ba;
  --muted-2: #7e899b;
  --cyan: #00e5ff;
  --cyan-2: #00bcd4;
  --purple: #8a00ff;
  --green: #3bd36b;
  --yellow: #ffd028;
  --danger: #828895;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 229, 255, 0.08);
  --max: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .12;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(0, 229, 255, .12), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(138, 0, 255, .15), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(0, 188, 212, .08), transparent 32%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 0;
  transition: .35s ease;
  background: transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(5, 6, 8, 0.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; font-size: 25px; letter-spacing: -0.04em; white-space: nowrap; }
.brand-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: var(--cyan); background: rgba(0, 229, 255, .13); border: 1px solid rgba(0, 229, 255, .35); box-shadow: inset 0 0 22px rgba(0, 229, 255, .09); }
.brand span span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-weight: 600; font-size: 15px; }
.nav-actions { display: flex; gap: 14px; align-items: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 26px; border-radius: 12px; font-weight: 800; font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.btn-primary { background: linear-gradient(135deg, #00e5ff, #00c8e3); color: #001014; box-shadow: 0 16px 44px rgba(0, 229, 255, .25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(0, 229, 255, .38); }
.btn-outline { color: var(--cyan); background: rgba(0, 229, 255, .025); border-color: rgba(0, 229, 255, .32); }
.btn-outline:hover { transform: translateY(-3px); background: rgba(0, 229, 255, .10); border-color: rgba(0, 229, 255, .60); }
.menu-btn { display: none; width: 48px; height: 48px; border-radius: 12px; background: var(--card); color: var(--text); border: 1px solid var(--border); }

.hero { min-height: 100vh; position: relative; display: flex; align-items: center; padding: 150px 0 90px; overflow: hidden; background: linear-gradient(180deg, rgba(5,6,8,.32), #050608 96%), radial-gradient(circle at 18% 45%, rgba(0,229,255,.19), transparent 33%), radial-gradient(circle at 84% 40%, rgba(138,0,255,.20), transparent 36%), url('../assets/images/hero-bg.svg') center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,229,255,.16) 1px, transparent 1px), linear-gradient(180deg, rgba(138,0,255,.12) 1px, transparent 1px); background-size: 120px 120px; mask-image: radial-gradient(circle at center, black, transparent 75%); opacity: .14; }
.hero-content { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; text-align: center; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; color: var(--cyan); background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.12); font-weight: 700; margin-bottom: 34px; backdrop-filter: blur(10px); }
.dot { width: 9px; height: 9px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
h1, h2 { line-height: 1.04; letter-spacing: -0.065em; }
h1 { font-size: clamp(48px, 6vw, 86px); font-weight: 900; margin-bottom: 28px; }
.gradient-text { color: var(--cyan); text-shadow: 0 0 34px rgba(0, 229, 255, .34); }
.hero p { font-size: clamp(18px, 2vw, 24px); color: var(--muted); max-width: 780px; margin: 0 auto 42px; line-height: 1.35; font-weight: 500; }
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 68px; }
.hero-stats { display: flex; justify-content: center; gap: clamp(46px, 7vw, 110px); flex-wrap: wrap; }
.stat strong { display: block; color: var(--cyan); font-size: 32px; line-height: 1; font-weight: 900; letter-spacing: -0.05em; }
.stat span { display: block; color: var(--muted); margin-top: 10px; font-weight: 600; }

section { position: relative; z-index: 2; padding: 100px 0; }
.section-head { text-align: center; max-width: 980px; margin: 0 auto 70px; }
.eyebrow { color: var(--cyan); font-size: 15px; letter-spacing: .18em; font-weight: 900; text-transform: uppercase; margin-bottom: 14px; }
h2 { font-size: clamp(38px, 4.6vw, 66px); font-weight: 900; margin-bottom: 22px; }
.section-head p { color: var(--muted); font-size: clamp(17px, 2vw, 23px); line-height: 1.45; }

.grid { display: grid; gap: 24px; }
.features-grid { grid-template-columns: repeat(4, 1fr); }
.card { background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.035)); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); transition: .25s ease; }
.card:hover { transform: translateY(-8px); border-color: rgba(0,229,255,.35); box-shadow: 0 28px 90px rgba(0,229,255,.12); }
.icon-box { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: var(--cyan); background: rgba(0, 229, 255, .12); border: 1px solid rgba(0, 229, 255, .27); margin-bottom: 26px; }
.card h3 { font-size: 22px; line-height: 1.2; margin-bottom: 14px; letter-spacing: -.035em; }
.card p { color: var(--muted); font-size: 17px; font-weight: 500; }
.compare-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.compare-card { padding: 38px; min-height: 450px; }
.compare-card.positive { border-top: 5px solid var(--cyan-2); }
.compare-card.negative { border-top: 5px solid rgba(130,136,149,.65); }
.compare-title { display: flex; align-items: center; gap: 12px; color: var(--cyan); font-size: 24px; font-weight: 900; margin-bottom: 28px; }
.negative .compare-title { color: var(--muted); }
.check-list { display: grid; gap: 20px; }
.check-list li { list-style: none; display: flex; align-items: flex-start; gap: 14px; color: #e8ebef; font-weight: 600; font-size: 17px; }
.badge-icon { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center; background: rgba(0,229,255,.16); color: var(--cyan); }
.negative .badge-icon { background: rgba(130,136,149,.16); color: var(--danger); }
.note { margin-top: 36px; padding: 18px; border-radius: 14px; color: #dce7ec; background: rgba(0, 229, 255, .08); border: 1px solid rgba(0, 229, 255, .16); font-weight: 600; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
.price-card { position: relative; padding: 36px; min-height: 520px; display: flex; flex-direction: column; }
.price-card.featured { background: linear-gradient(145deg, rgba(138,0,255,.13), rgba(255,255,255,.055)); transform: scale(1.04); border-color: rgba(138, 0, 255, .28); box-shadow: 0 30px 100px rgba(138,0,255,.16); }
.popular { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #9b00ff, #7800ff); color: white; padding: 8px 22px; border-radius: 999px; font-size: 14px; font-weight: 900; white-space: nowrap; box-shadow: 0 14px 40px rgba(138,0,255,.35); }
.save { display: inline-flex; width: max-content; align-items: center; gap: 6px; color: var(--cyan); background: rgba(0,229,255,.10); border: 1px solid rgba(0,229,255,.25); padding: 5px 12px; border-radius: 999px; font-size: 14px; font-weight: 900; margin-bottom: 20px; }
.price-card h3 { font-size: 24px; margin-bottom: 4px; }
.price { font-size: 58px; line-height: 1; font-weight: 900; letter-spacing: -.06em; margin: 10px 0; }
.featured .price { color: var(--purple); text-shadow: 0 0 32px rgba(138,0,255,.36); }
.period { color: var(--muted); font-size: 18px; font-weight: 700; }
.equiv { color: var(--muted); font-weight: 700; margin-bottom: 30px; }
.equiv strong { color: var(--cyan); }
.price-card .check-list { gap: 14px; margin-bottom: 34px; }
.price-card .check-list li { font-size: 16px; }
.price-card .btn { margin-top: auto; width: 100%; }
.btn-purple { background: linear-gradient(135deg, #9400ff, #7600ff); color: white; box-shadow: 0 20px 60px rgba(138,0,255,.30); }
.btn-purple:hover { transform: translateY(-3px); box-shadow: 0 24px 70px rgba(138,0,255,.45); }
.apps { background: radial-gradient(circle at center, rgba(0,229,255,.07), transparent 55%); }
.device-row { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; margin-top: -25px; margin-bottom: 64px; }
.device { text-align: center; color: var(--muted); font-weight: 700; }
.device .icon-box { margin: 0 auto 10px; background: rgba(255,255,255,.055); border-color: var(--border); }
.apps-grid { grid-template-columns: repeat(4, 1fr); }
.tag { display: inline-flex; color: var(--cyan); background: rgba(0,229,255,.12); border: 1px solid rgba(0,229,255,.22); padding: 3px 10px; border-radius: 999px; font-weight: 700; margin: 3px 2px 14px 0; font-size: 14px; }
.download-icon { color: var(--purple); background: rgba(138,0,255,.14); border-color: rgba(138,0,255,.24); }
.app-download, .form-submit { width: 100%; }
.testimonials-grid { grid-template-columns: repeat(4, 1fr); }
.stars { color: var(--yellow); margin-bottom: 22px; display: flex; gap: 4px; }
.quote { color: #e6e7eb !important; margin-bottom: 28px; font-weight: 600 !important; }
.person strong { display: block; font-size: 17px; }
.person span { color: var(--muted); font-weight: 600; }
.contact-grid { grid-template-columns: 1.4fr .9fr; align-items: start; }
.form-title { font-size: 25px; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--muted); font-weight: 700; display: block; margin-bottom: 8px; }
input, textarea { width: 100%; background: rgba(255,255,255,.045); border: 1px solid var(--border); color: var(--text); border-radius: 13px; padding: 17px 18px; font-size: 16px; outline: none; transition: .25s ease; }
input:focus, textarea:focus { border-color: rgba(0,229,255,.55); box-shadow: 0 0 0 4px rgba(0,229,255,.08); }
textarea { min-height: 130px; resize: vertical; }
.contact-info { display: grid; gap: 22px; }
.info-card { display: flex; align-items: center; gap: 22px; padding: 26px; }
.info-card .icon-box { margin: 0; }
.info-card h3 { display: flex; align-items: center; gap: 8px; font-size: 19px; }
.online { width: 9px; height: 9px; background: var(--green); border-radius: 50%; }
.info-card p { color: var(--muted); font-weight: 600; font-size: 17px; }
.schedule p { margin-top: 10px; }
.whatsapp-icon { color:#31d26b; background:rgba(49,210,107,.11); border-color:rgba(49,210,107,.22); }
.telegram-icon { color:#52a0ff; background:rgba(82,160,255,.11); border-color:rgba(82,160,255,.22); }
footer { border-top: 1px solid var(--border); padding: 80px 0 40px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-logo { margin-bottom: 22px; }
footer p, footer a { color: var(--muted); font-weight: 600; font-size: 17px; }
footer h3 { font-size: 21px; margin-bottom: 22px; }
.footer-links { display: grid; gap: 18px; }
.socials { display: flex; gap: 14px; margin-top: 28px; }
.socials a { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.055); border: 1px solid var(--border); transition: .25s ease; }
.socials a:hover { color: var(--cyan); border-color: rgba(0,229,255,.35); transform: translateY(-4px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); padding-top: 38px; }
.reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav.mobile-open .nav-links { position: absolute; left: 24px; right: 24px; top: 78px; display: grid; gap: 8px; padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: rgba(5,6,8,.94); backdrop-filter: blur(18px); }
  .nav.mobile-open .nav-links a { padding: 12px; }
  .features-grid, .apps-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .contact-grid, .compare-grid, .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 30px, var(--max)); }
  .hero { padding-top: 125px; }
  .hero-ctas .btn { width: 100%; }
  section { padding: 78px 0; }
  .features-grid, .apps-grid, .testimonials-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: 48px; }
  h2 { font-size: 39px; }
  .card, .compare-card, .price-card { padding: 24px; }
  .hero-stats { gap: 34px; }
}

/* ==============================
   PREMIUM LOADER
================================= */

body.loading {
  overflow: hidden;
}

.premium-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(138, 0, 255, 0.20), transparent 35%),
    linear-gradient(180deg, #050608 0%, #080a0f 100%);
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease;
}

.premium-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.14);
  filter: blur(80px);
  animation: loaderGlow 2.8s ease-in-out infinite alternate;
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(0);
  animation: loaderFloat 2.4s ease-in-out infinite;
}

.loader-logo {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.38);
  box-shadow:
    0 0 45px rgba(0, 229, 255, 0.25),
    inset 0 0 24px rgba(0, 229, 255, 0.12);
}

.loader-logo svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.4;
}

.loader-content h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  color: var(--text);
}

.loader-content h2 span {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(0, 229, 255, 0.45);
}

.loader-content p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 26px;
}

.loader-bar {
  width: 260px;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.loader-bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: loaderBar 1.25s ease-in-out infinite;
}

@keyframes loaderBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(250%);
  }
}

@keyframes loaderFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderGlow {
  from {
    transform: scale(0.9);
    opacity: 0.55;
  }
  to {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

/* ==============================
   PRICING MULTI CURRENCY
================================= */

.price-wrapper {
  margin: 16px 0 22px;
}

.usd-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.local-price {
  margin-top: 10px;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.featured .local-price {
  color: #b46cff;
}

/* ==============================
   PLAN DISCLAIMER
================================= */

.plan-note {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 12px !important;
  line-height: 1.4;
  text-align: center;
  opacity: 0.75;
  font-weight: 500;
}

/* ==============================
   DMCA DISCLAIMER
================================= */

.dmca-disclaimer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   FOOTER LINK HOVER
================================= */

.footer-links a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

/* ==============================
   HEADER NAV LINKS PREMIUM
================================= */

.nav-links a {
  position: relative;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-links a:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  opacity: 1;
  box-shadow:
    0 0 25px rgba(0, 229, 255, 0.12),
    inset 0 0 18px rgba(0, 229, 255, 0.06);
}

/* ==============================
   FILLED STARS
================================= */

.filled-star {
  fill: #ffd028;
  color: #ffd028;
  stroke-width: 1.5;
}

/* ==============================
   WHATSAPP FLOATING BUTTON
================================= */

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #25d366,
    #1ebe5d
  );
  color: white;
  z-index: 999;
  box-shadow:
    0 18px 45px rgba(37, 211, 102, 0.28),
    0 0 0 1px rgba(255,255,255,0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-widget:hover {
  transform: translateY(-5px) scale(1.04);

  box-shadow:
    0 25px 60px rgba(37, 211, 102, 0.42),
    0 0 0 1px rgba(255,255,255,0.12);
}

.whatsapp-widget svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.whatsapp-tooltip {
  position: absolute;
  right: 78px;
  white-space: nowrap;
  background: rgba(5, 6, 8, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: 0.25s ease;
  backdrop-filter: blur(14px);
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {

  .whatsapp-widget {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
    border-radius: 18px;
  }

  .whatsapp-widget svg {
    width: 27px;
    height: 27px;
  }

  .whatsapp-tooltip {
    display: none;
  }

}

/* ==============================
   HERO SMALL NOTE
================================= */

.hero-note {
  margin-top: -58px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.hero-note strong {
  color: #b46cff;
  font-weight: 800;
}

/* ==============================
   HERO BUTTONS ONLY
================================= */

.hero .btn-primary {
  background: linear-gradient(
    180deg,
    #c95cff 0%,
    #a100ff 100%
  );

  color: #ffffff;

  border: 1px solid rgba(203, 92, 255, 0.35);

  box-shadow:
    0 20px 55px rgba(161, 0, 255, 0.38),
    0 0 35px rgba(180, 108, 255, 0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.hero .btn-primary:hover {
  transform: translateY(-4px);

  filter: brightness(1.08);

  box-shadow:
    0 28px 70px rgba(161, 0, 255, 0.48),
    0 0 45px rgba(180, 108, 255, 0.30);
}

/* OUTLINE BUTTON */

.hero .btn-outline {
  color: #c287ff;

  border: 1px solid rgba(180, 108, 255, 0.32);

  background: rgba(180, 108, 255, 0.04);
}

.hero .btn-outline:hover {
  transform: translateY(-4px);

  background: rgba(180, 108, 255, 0.10);

  border-color: rgba(180, 108, 255, 0.55);

  box-shadow:
    0 18px 45px rgba(180, 108, 255, 0.16),
    inset 0 0 18px rgba(180, 108, 255, 0.08);
}

/* ==============================
   LEGAL MODAL
================================= */

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(14px);
}

.legal-modal-box {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: 82vh;
  overflow-y: auto;
  padding: 38px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(180, 108, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(180, 108, 255, 0.22);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.55),
    0 0 55px rgba(180,108,255,0.14);
}

.legal-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
}

.legal-modal-close:hover {
  color: #b46cff;
  border-color: rgba(180,108,255,0.35);
}

.legal-modal-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #b46cff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-modal-box h2 {
  margin-bottom: 22px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.legal-modal-content {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.legal-modal-content h3 {
  color: var(--text);
  margin: 22px 0 8px;
  font-size: 18px;
}

.legal-modal-content p {
  margin-bottom: 14px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .legal-modal-box {
    padding: 30px 22px;
  }

  .legal-modal-box h2 {
    font-size: 28px;
  }
}

/* ==============================
   RENEW SUBSCRIPTION BOX
================================= */

.renew-box {
  margin-top: 42px;

  padding: 38px;

  border-radius: 30px;

  background:
    radial-gradient(circle at top left,
      rgba(180, 108, 255, 0.12),
      transparent 38%),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(180,108,255,0.14);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  overflow: hidden;

  position: relative;
}

.renew-box::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(180,108,255,0.03),
      transparent
    );

  pointer-events: none;
}

.renew-label {
  display: inline-block;

  margin-bottom: 10px;

  color: #b46cff;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.renew-content h3 {
  font-size: 34px;
  line-height: 1.1;

  margin-bottom: 12px;
}

.renew-content p {
  max-width: 620px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.7;
}

.renew-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 28px;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      #c95cff 0%,
      #a100ff 100%
    );

  color: #fff;

  font-weight: 700;

  white-space: nowrap;

  box-shadow:
    0 20px 50px rgba(161, 0, 255, 0.32);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.renew-btn:hover {
  transform: translateY(-4px);

  box-shadow:
    0 28px 70px rgba(161, 0, 255, 0.42);
}

@media (max-width: 900px) {
  .renew-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .renew-btn {
    width: 100%;
    justify-content: center;
  }

  .renew-content h3 {
    font-size: 28px;
  }
}

/* ==============================
   DISABLE ANIMATIONS DURING LOADER
================================= */

body.loading .reveal,
body.loading .hero-content,
body.loading .hero-visual,
body.loading .hero-stats,
body.loading .hero-ctas,
body.loading .hero-note {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: none !important;
}

/* ==============================
   MINI DEMO CTA
================================= */

.mini-demo {
  margin-top: 34px;

  padding: 24px 28px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.025)
    );

  border: 1px solid rgba(180,108,255,0.12);

  backdrop-filter: blur(10px);
}

.mini-demo-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-demo-text strong {
  font-size: 18px;
  color: var(--text);
}

.mini-demo-text span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.mini-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;

  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      #c95cff 0%,
      #a100ff 100%
    );

  color: #fff;

  font-size: 14px;
  font-weight: 700;

  white-space: nowrap;

  box-shadow:
    0 14px 35px rgba(161,0,255,0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mini-demo-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 45px rgba(161,0,255,0.32);
}

@media (max-width: 768px) {
  .mini-demo {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-demo-btn {
    width: 100%;
    justify-content: center;
  }
}