:root {
  --bg: #08050f;
  --bg-soft: #10091d;
  --card: rgba(20, 12, 37, .72);
  --card-strong: rgba(27, 15, 49, .9);
  --line: rgba(196, 150, 255, .16);
  --purple: #b565ff;
  --purple-strong: #8b3dff;
  --pink: #f18cff;
  --blue: #7ca8ff;
  --text: #f7f3ff;
  --muted: #b9aec9;
  --success: #8ef0c5;
  --shadow: 0 24px 80px rgba(97, 31, 180, .22);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(101, 37, 176, .23), transparent 31rem),
    radial-gradient(circle at 15% 38%, rgba(68, 33, 142, .14), transparent 35rem),
    var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: #07040d;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader p { color: var(--muted); font-size: .9rem; letter-spacing: .08em; }
.loader-orbit {
  width: 92px;
  height: 92px;
  position: relative;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 50px rgba(181, 101, 255, .4);
}
.loader-orbit::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(241, 140, 255, .45);
  border-left-color: transparent;
  border-radius: 50%;
  animation: spin 1.6s linear infinite;
}
.loader-orbit img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 5, 17, .66);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,.24);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk"; font-weight: 700; }
.brand img { width: 38px; height: 38px; border-radius: 50%; box-shadow: 0 0 25px rgba(181,101,255,.28); }
.brand b { color: var(--purple); }
nav { display: flex; align-items: center; gap: 25px; }
nav a { color: var(--muted); font-size: .9rem; font-weight: 600; transition: .25s ease; }
nav a:hover { color: var(--text); }
.nav-cta { color: white; padding: 10px 16px; border-radius: 12px; background: linear-gradient(135deg, var(--purple-strong), var(--purple)); box-shadow: 0 10px 25px rgba(139,61,255,.24); }
.menu-button { display: none; background: transparent; border: 0; padding: 10px; }
.menu-button span { display: block; width: 23px; height: 2px; margin: 5px 0; background: white; border-radius: 99px; }

.section { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.hero {
  min-height: 800px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 64px;
  padding-block: 90px 100px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d9c3f4;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow i { width: 24px; height: 1px; background: linear-gradient(90deg, var(--purple), transparent); }
.hero h1, .section-heading h2, .cta-section h2 {
  margin: 18px 0;
  font-family: "Space Grotesk";
  line-height: 1.05;
  letter-spacing: -.04em;
}
.hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); max-width: 800px; }
.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff 3%, var(--pink) 48%, var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy > p { max-width: 640px; color: var(--muted); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button.primary { background: linear-gradient(135deg, var(--purple-strong), #c463ff); box-shadow: 0 16px 40px rgba(139,61,255,.32); }
.button.primary:hover { box-shadow: 0 20px 55px rgba(139,61,255,.45); }
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.button.secondary:hover { border-color: rgba(196,150,255,.38); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 27px; color: #d3c7de; font-size: .82rem; }
.trust-row span::first-letter { color: var(--success); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.planet-glow {
  position: absolute;
  width: 410px; height: 410px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181,101,255,.3), rgba(93,42,164,.08) 45%, transparent 70%);
  filter: blur(10px);
}
.logo-core {
  position: relative;
  z-index: 3;
  width: min(360px, 75vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 28px;
  background: rgba(13, 7, 24, .62);
  border: 1px solid rgba(228,188,255,.2);
  box-shadow: inset 0 0 60px rgba(181,101,255,.1), 0 0 100px rgba(104,47,190,.32);
  animation: float 5s ease-in-out infinite;
}
.logo-core img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(229,193,255,.24);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.orbit::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: white;
  box-shadow: 0 0 20px 5px var(--pink);
  animation: orbitDot 7s linear infinite;
}
.orbit-one { width: 470px; height: 170px; }
.orbit-two { width: 370px; height: 500px; border-color: rgba(124,168,255,.1); }
.orbit-two::after { animation-duration: 10s; animation-direction: reverse; }
@keyframes orbitDot {
  0% { left: 5%; top: 48%; }
  25% { left: 50%; top: -5px; }
  50% { left: calc(100% - 5px); top: 48%; }
  75% { left: 50%; top: calc(100% - 5px); }
  100% { left: 5%; top: 48%; }
}
@keyframes float { 50% { transform: translateY(-12px) rotate(1deg); } }
.floating-star { position: absolute; z-index: 4; color: white; text-shadow: 0 0 18px var(--pink); animation: pulse 2.4s ease-in-out infinite; }
.s1 { top: 14%; right: 12%; font-size: 28px; }
.s2 { left: 10%; bottom: 24%; font-size: 22px; animation-delay: .7s; }
.s3 { right: 18%; bottom: 12%; font-size: 16px; animation-delay: 1.2s; }
@keyframes pulse { 50% { opacity: .3; transform: scale(.75); } }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.022);
}
.ticker div {
  width: max-content;
  padding: 17px 0;
  display: flex;
  gap: 28px;
  align-items: center;
  animation: marquee 30s linear infinite;
}
.ticker span { color: #aa9bb9; font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.ticker b { color: var(--purple); }
@keyframes marquee { to { transform: translateX(-50%); } }

.products-section, .why-section, .faq-section { padding-block: 120px; }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section-heading h2, .cta-section h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.section-heading p, .cta-section p { color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loading-products { grid-column: 1 / -1; padding: 60px; text-align: center; color: var(--muted); }
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, rgba(28,16,49,.86), rgba(13,8,24,.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.17);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  width: 180px; height: 180px; top: -70px; right: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,101,255,.22), transparent 68%);
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(210,169,255,.32); box-shadow: var(--shadow); }
.product-top { position: relative; display: flex; justify-content: space-between; align-items: center; }
.product-icon{
    width:72px;
    height:72px;
    background:#090909;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 25px rgba(150,70,255,.18);
    transition:.3s;
}

.product-icon:hover{
    transform:translateY(-3px);
    box-shadow:0 0 35px rgba(170,90,255,.4);
}

.product-icon img{
    width:80%;
    height:80%;
    object-fit:contain;
}
.status { display: inline-flex; align-items: center; gap: 7px; color: #bdf5da; font-size: .72rem; font-weight: 700; }
.status::before { content: ""; width: 7px; height: 7px; background: #62e7ad; border-radius: 50%; box-shadow: 0 0 12px #62e7ad; }
.product-card h3 { margin: 28px 0 3px; font-family: "Space Grotesk"; font-size: 1.35rem; }
.product-label { color: var(--pink); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.product-description { color: var(--muted); font-size: .9rem; flex-grow: 1; }
.product-bottom { margin-top: 26px; }
.product-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 16px; }
.product-price strong { font-family: "Space Grotesk"; font-size: 1.75rem; }
.product-price span { color: var(--muted); font-size: .75rem; }
.order-button { width: 100%; border: 0; cursor: pointer; font-family: inherit; font-size: .88rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  padding: 30px;
  background: rgba(18,10,32,.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: rgba(181,101,255,.12); color: var(--pink); font-size: 1.4rem; }
.feature-card h3 { margin: 20px 0 8px; font-family: "Space Grotesk"; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.cta-section {
  margin-block: 30px 120px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  border-radius: 30px;
  border: 1px solid rgba(213,171,255,.22);
  background:
    radial-gradient(circle at 90% 10%, rgba(187,91,255,.25), transparent 25rem),
    linear-gradient(135deg, rgba(34,18,59,.94), rgba(15,8,29,.96));
  box-shadow: var(--shadow);
}
.cta-section h2 { max-width: 670px; margin-bottom: 12px; }
.cta-section p { margin: 0; }

.faq-list { display: grid; gap: 12px; }
details {
  background: rgba(18,10,32,.62);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 22px;
}
summary {
  padding: 21px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--purple); font-size: 1.25rem; }
details[open] summary::after { content: "−"; }
details p { margin: 0 0 22px; color: var(--muted); }

footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 45px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; }
.footer-brand strong { font-family: "Space Grotesk"; font-size: 1.1rem; }
.footer-brand p { margin: 2px 0 0; color: var(--muted); font-size: .8rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 18px; margin: 30px 0; }
.social-links a { color: #d7cbe1; font-weight: 700; font-size: .85rem; }
.social-links a:hover { color: var(--pink); }
.copyright { color: #776c83; font-size: .72rem; }
.hidden { display: none !important; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  min-height: 48px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #f7f3ff;
  color: #17101f;
  border-radius: 99px;
  box-shadow: 0 16px 50px rgba(0,0,0,.36);
  font-size: .82rem;
  transition: transform .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; text-align: center; gap: 25px; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 440px; order: -1; }
  .logo-core { width: 270px; }
  .orbit-one { width: 360px; }
  .orbit-two { width: 280px; height: 390px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; }
  .menu-button { display: block; }
  nav {
    position: fixed;
    top: 78px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9,5,17,.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  nav.open { opacity: 1; visibility: visible; transform: none; }
  nav a { padding: 11px; }
  .hero { padding-top: 74px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero-visual { min-height: 370px; }
  .logo-core { width: 230px; padding: 18px; }
  .orbit-one { width: 310px; height: 130px; }
  .orbit-two { width: 240px; height: 330px; }
  .products-section, .why-section, .faq-section { padding-block: 90px; }
  .product-grid, .feature-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 330px; }
  .cta-section { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .cta-section .button { width: 100%; }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { width: 50px; height: 50px; padding: 0; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


.rotating-message {
  min-height: 28px;
  margin-top: 16px;
  color: var(--pink);
  font-family: "Space Grotesk";
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.rotating-message span {
  display: inline-block;
  animation: messageIn .55s ease;
}
@keyframes messageIn {
  from { opacity: 0; transform: translateY(8px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

.info-strip {
  margin-bottom: 50px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(18, 10, 32, .62);
}
.info-strip div {
  min-height: 92px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}
.info-strip span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.info-strip strong {
  margin-top: 5px;
  font-family: "Space Grotesk";
  font-size: 1rem;
}

@media (max-width: 720px) {
  .info-strip { grid-template-columns: 1fr; }
}
.product-image { width: 74px; height: 74px; object-fit: cover; border-radius: 18px; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
