:root {
  --bg: #0b0b14;
  --bg-soft: #12121f;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #b7bbd7;
  --primary: #6b5cff;
  --primary-strong: #4f3dff;
  --accent: #8ef3d0;
  --shadow: 0 30px 80px rgba(17, 18, 44, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107, 92, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(142, 243, 208, 0.09), transparent 24%),
    linear-gradient(180deg, #090911 0%, #0f1020 55%, #0d0d18 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-shell {
  position: relative;
  min-height: 100vh;
  padding: 0 20px 40px;
  isolation: isolate;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 12px 12px;
  mix-blend-mode: soft-light;
}

.aurora {
  position: fixed;
  width: 460px;
  height: 460px;
  filter: blur(70px);
  border-radius: 50%;
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
  animation: pulse 12s ease-in-out infinite alternate;
}

.aurora-1 {
  background: linear-gradient(135deg, rgba(107, 92, 255, 0.9), rgba(87, 214, 255, 0.55));
  top: -120px;
  left: -80px;
}

.aurora-2 {
  background: linear-gradient(135deg, rgba(142, 243, 208, 0.82), rgba(107, 92, 255, 0.58));
  top: 360px;
  right: -180px;
}

.topbar {
  position: sticky;
  top: 16px;
  max-width: var(--content);
  margin: 18px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(9, 10, 21, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  z-index: 20;
  box-shadow: 0 20px 50px rgba(5, 6, 15, 0.35);
}

.simple-topbar { position: relative; top: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(107, 92, 255, 0.4);
}
.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 2px;
}

.desktop-nav, .topbar-actions, .footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.desktop-nav a {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}
.desktop-nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
  cursor: pointer;
  font-weight: 600;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 35px rgba(93, 75, 255, 0.34);
}
.button-primary:hover {
  box-shadow: 0 24px 44px rgba(93, 75, 255, 0.44);
}
.button-ghost {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.button-large { padding: 16px 24px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 0;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.mobile-nav {
  max-width: var(--content);
  margin: 12px auto 0;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(10, 11, 22, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.section {
  max-width: var(--content);
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 160px);
  padding: 56px 0 32px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.cta-card h2,
.support-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading h2,
.cta-card h2,
.support-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.cta-card p,
.support-hero p,
.support-card p,
.story-card p,
.feature-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}
.hero-badges span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: #ebefff;
}

.hero-actions, .support-buttons, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mini-card,
.strip-card,
.feature-card,
.story-card,
.support-card,
.qr-card,
.cta-card,
.showcase-tabs,
.showcase-view {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 18px;
  border-radius: var(--radius-md);
}
.mini-card strong { font-size: 1rem; display: block; margin-bottom: 8px; }
.mini-card span { color: var(--muted); line-height: 1.6; }

.hero-visual {
  position: relative;
  min-height: 720px;
}

.device {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 70px rgba(8, 9, 22, 0.55);
}
.device img { width: 100%; height: 100%; object-fit: cover; }
.device-main {
  width: min(100%, 420px);
  right: 28px;
  top: 28px;
}
.device-secondary {
  width: 260px;
  left: 10px;
  top: 300px;
  transform: rotate(-8deg);
}
.device-tertiary {
  width: 230px;
  right: 8px;
  bottom: 26px;
  transform: rotate(8deg);
}
.hero-glow-card {
  position: absolute;
  left: 14px;
  top: 92px;
  width: 240px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(142,243,208,0.16), rgba(107,92,255,0.18));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px rgba(55, 61, 149, 0.28);
}
.hero-glow-card span { display: block; color: var(--accent); margin-bottom: 10px; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-glow-card strong { font-size: 1rem; line-height: 1.45; }

.brands-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}
.strip-card {
  padding: 24px;
  border-radius: 26px;
}
.strip-card span { display: block; color: var(--accent); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 8px; }
.strip-card strong { font-size: 1rem; line-height: 1.55; }

.section-heading {
  margin: 100px 0 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  min-height: 230px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(107,92,255,0.32), rgba(142,243,208,0.18));
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card h3, .story-card h3, .support-card h2, .showcase-copy h3 { margin: 0 0 10px; font-size: 1.35rem; letter-spacing: -0.03em; }

.showcase-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.showcase-tabs {
  border-radius: 28px;
  padding: 16px;
  position: sticky;
  top: 120px;
}
.showcase-tab {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 14px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: all .22s ease;
  margin-bottom: 8px;
}
.showcase-tab:hover,
.showcase-tab.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.09);
  transform: translateX(4px);
}
.showcase-view {
  border-radius: 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.phone-frame {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 28px 70px rgba(10,10,20,0.5);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.story-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
}
.story-number {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(107,92,255,0.22), rgba(142,243,208,0.12));
  border: 1px solid rgba(255,255,255,0.12);
}

.cta-section { margin-top: 100px; }
.cta-card {
  padding: 36px;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.support-layout, .support-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}
.support-card, .qr-card {
  border-radius: 30px;
  padding: 28px;
}
.qr-card img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 16px;
  border-radius: 24px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-list span { color: var(--muted); }
.contact-list a, .contact-list strong { font-weight: 700; }

.footer {
  max-width: var(--content);
  margin: 70px auto 0;
  padding: 28px 0 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.footer strong { color: var(--text); display: block; margin-bottom: 8px; }
.footer-links a { padding: 8px 0; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #23d366, #16ad51);
  box-shadow: 0 20px 40px rgba(20, 160, 79, 0.4);
  z-index: 30;
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: floating 7s ease-in-out infinite;
}
.delay-1 { animation-delay: .7s; }
.delay-2 { animation-delay: 1.4s; }

.tilt-card {
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.support-main {
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 48px;
}
.support-page-shell .section-heading { margin-top: 0; }
.support-hero {
  margin: 40px 0 28px;
}
.support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.support-buttons.stacked { flex-direction: column; align-items: stretch; }
.qr-support {
  width: min(100%, 350px);
  margin: 12px auto 18px;
  border-radius: 26px;
}
.support-faq {
  margin-top: 30px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}
.faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); line-height: 1.7; margin: 12px 0 0; }

@keyframes floating {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
@keyframes pulse {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(24px, -12px, 0); }
}

@media (max-width: 1160px) {
  .hero { grid-template-columns: 1fr; padding-top: 42px; }
  .hero-visual { min-height: 820px; }
  .device-main { right: auto; left: 50%; transform: translateX(-50%); }
  .device-secondary { left: 60px; }
  .device-tertiary { right: 60px; }
  .hero-glow-card { top: 120px; left: 20px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-layout { grid-template-columns: 1fr; }
  .showcase-tabs { position: relative; top: 0; }
}

@media (max-width: 900px) {
  .desktop-nav, .topbar-actions { display: none; }
  .menu-toggle { display: flex; }
  .brands-strip,
  .feature-grid,
  .story-grid,
  .support-layout,
  .support-grid,
  .showcase-view,
  .cta-card {
    grid-template-columns: 1fr;
    display: grid;
  }
  .cta-card { align-items: start; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-shell { padding: 0 16px 34px; }
  .topbar { padding: 14px 16px; }
  .hero h1, .section-heading h2, .cta-card h2, .support-hero h1 { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .hero-mini-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 660px; }
  .device-main { width: min(100%, 340px); top: 34px; }
  .device-secondary { width: 190px; left: 0; top: 310px; }
  .device-tertiary { width: 175px; right: 0; bottom: 34px; }
  .hero-glow-card { width: 200px; top: 96px; left: 6px; }
  .showcase-view { padding: 20px; }
  .feature-card, .story-card, .support-card, .qr-card, .cta-card { padding: 22px; }
  .contact-list li { flex-direction: column; }
  .floating-whatsapp { width: 58px; height: 58px; }
}


.button-legal {
  display: inline-flex;
}

.privacy-main,
.support-main {
  max-width: var(--content);
  margin: 0 auto;
  padding: 40px 0 24px;
}

.privacy-hero {
  margin-top: 16px;
  padding: 28px 0 12px;
}

.legal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 14px;
}

.legal-nav,
.legal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-nav {
  position: sticky;
  top: 110px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-nav strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.legal-nav a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  transition: background .2s ease, color .2s ease;
}

.legal-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.legal-card {
  padding: 28px;
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.legal-section ul {
  margin: 10px 0 0 1.15rem;
  padding: 0;
}

.legal-section a {
  color: #c8dbff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .button-legal {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: relative;
    top: 0;
  }
}
