@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b0d12;
  --bg-alt: #12151d;
  --card: #161a24;
  --border: #262b38;
  --text: #e7e9ee;
  --muted: #9aa1b1;
  --accent: #5eead4;
  --accent-2: #818cf8;
  --accent-3: #fac51a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.logo span { color: var(--accent); }

nav.main a {
  margin-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.15s;
}
nav.main a:hover, nav.main a.active { color: var(--text); }

.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0d12 !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .15s, box-shadow .15s;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(94,234,212,.25); }

section { padding: 72px 0; position: relative; }
section.tight { padding: 48px 0; }

/* ---------- animated hero blobs ---------- */
.hero {
  padding: 110px 0 84px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}
.hero .blob-a { width: 420px; height: 420px; background: var(--accent); top: -140px; left: -120px; }
.hero .blob-b { width: 380px; height: 380px; background: var(--accent-2); top: -80px; right: -140px; animation-delay: -6s; }
.hero .blob-c { width: 280px; height: 280px; background: var(--accent-3); bottom: -160px; left: 40%; opacity: .18; animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero .blob { animation: none; }
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}
h1, h2, h3 { font-family: "Poppins", sans-serif; }
h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
}
h1 .grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2) 60%, var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 32px;
}

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  padding: 13px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0d12;
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(94,234,212,.22); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- capability marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}
.marquee span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee span b { color: var(--accent); }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.card .icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.card .price {
  font-family: "Poppins", sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--text);
  margin: 4px 0 12px;
}
.card .price span { font-size: 0.9rem; font-weight: 500; color: var(--muted); }

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
}
.section-lead { color: var(--muted); max-width: 620px; margin-bottom: 40px; }

.founder {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.founder-avatar {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0d12;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder p { color: var(--muted); font-size: 0.95rem; }

.pillbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stats .n {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats .t { color: var(--muted); font-size: 0.85rem; margin-top: 6px; }

/* ---------- caso destacado ---------- */
.caso {
  display: grid;
  gap: 28px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}
@media (min-width: 760px) { .caso { grid-template-columns: 1fr 1fr; } }
.caso .tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 10px;
}
.caso h3 { margin: 0 0 10px; font-size: 1.3rem; }
.caso p { color: var(--muted); margin: 0 0 16px; }
.caso .mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  font-size: .82rem;
  color: var(--muted);
}
.caso .mockup .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.caso .mockup .row:last-child { border-bottom: none; }
.caso .mockup .row b { color: var(--text); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; margin-left: 12px; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 12px 0 0; font-size: 0.92rem; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

footer.site {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--muted);
  font-size: 0.85rem;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site a:hover { color: var(--accent); }

.page-hero {
  padding: 64px 0 40px;
}
.page-hero .eyebrow { margin-bottom: 12px; }

@media (max-width: 640px) {
  nav.main { display: none; }
  header.site .bar { justify-content: space-between; }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 50;
  transition: transform 0.15s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

.telegram-float {
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #26a5e4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 50;
  transition: transform 0.15s;
}
.telegram-float:hover { transform: scale(1.08); }
.telegram-float svg { width: 30px; height: 30px; }
