/* MogiWeb — Static Export
   Violet + Lime theme, dark base, white header/footer */

:root {
  --bg: #0d0b1f;
  --bg-2: #15112e;
  --surface: #1c1840;
  --surface-2: #221d4d;
  --border: rgba(255,255,255,.08);
  --fg: #f5f5fb;
  --muted: #a8a5c7;

  --violet: #6d28d9;
  --violet-2: #8b5cf6;
  --violet-3: #a78bfa;
  --lime: #a3e635;
  --lime-2: #bef264;

  --gradient: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 60%, var(--lime) 130%);
  --shadow-glow: 0 10px 40px -10px rgba(139,92,246,.55);
  --shadow-accent: 0 10px 40px -10px rgba(163,230,53,.45);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ HEADER (WHITE) ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.logo { height: 44px; width: auto; }
.main-nav { display: none; gap: 32px; }
.main-nav a {
  font-size: 14px; color: #475569; font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover { color: #0f172a; }
@media (min-width: 768px) { .main-nav { display: flex; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 9999px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow-glow); }
.btn-glass {
  background: rgba(255,255,255,.06);
  color: var(--fg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
}
.btn-white { background: #fff; color: #0f172a; }
.btn-accent { background: var(--lime); color: #0d0b1f; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: 0; z-index: -2;
  will-change: transform;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: contain;
  opacity: .12; mix-blend-mode: screen;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,11,31,.4) 0%, rgba(13,11,31,.85) 60%, var(--bg) 100%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  z-index: -1; pointer-events: none;
}
.blob-1 { top: -100px; left: -100px; width: 500px; height: 500px; background: rgba(139,92,246,.25); }
.blob-2 { top: 30%; right: -150px; width: 600px; height: 600px; background: rgba(163,230,53,.15); }

.hero-grid {
  display: grid; gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 9999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--lime); font-size: 12px; font-weight: 500;
  backdrop-filter: blur(10px);
}
.hero h1 {
  margin-top: 24px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.lead {
  margin-top: 24px;
  color: var(--muted); font-size: 1.125rem; max-width: 560px;
}
.cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.cta-row.center { justify-content: center; }

.stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 440px;
}
.stats dt {
  font-family: var(--font-display);
  font-size: 1.875rem; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats dd { margin-top: 4px; font-size: 12px; color: var(--muted); }

.hero-visual { position: relative; }
.rocket-wrap {
  position: relative; will-change: transform;
  animation: float 6s ease-in-out infinite;
}
.rocket-glow {
  position: absolute; inset: -40px;
  background: var(--gradient); opacity: .3; filter: blur(80px);
  border-radius: 50%;
}
.rocket-img {
  position: relative; max-width: 520px; margin: 0 auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 30px 60px rgba(139,92,246,.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp .8s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============ REGION STRIP ============ */
.region-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.region-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
}
.region-inner p { font-size: 14px; color: var(--muted); }
.region-inner strong { color: var(--fg); font-weight: 600; }
.dot { color: var(--lime); }
.tags { display: flex; flex-wrap: wrap; gap: 24px; }
.tags span {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}

/* ============ SECTIONS ============ */
.section { padding: 112px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.eyebrow {
  color: var(--lime);
  font-size: 13px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
.section-head h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-head p { margin-top: 16px; color: var(--muted); }

.grid-3 {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-2 {
  display: grid; gap: 64px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(14px);
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(139,92,246,.4);
}
.card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gradient);
  box-shadow: var(--shadow-glow);
  font-size: 22px;
}
.card .icon.accent { background: rgba(163,230,53,.15); box-shadow: none; color: var(--lime); }
.card h3 { margin-top: 20px; font-size: 1.25rem; }
.card p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ AI SECTION ============ */
.ai-section h2 { margin-top: 12px; }
.check-list { margin-top: 32px; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime); color: #0d0b1f;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
  margin-top: 2px;
}
.ai-section .btn-primary { margin-top: 40px; }

.chat-mock {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}
.chat-head { display: flex; align-items: center; gap: 12px; }
.bot-avatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gradient);
  display: grid; place-items: center;
  font-size: 20px;
}
.bot-name { font-weight: 600; font-size: 15px; }
.bot-status { font-size: 12px; color: var(--lime); }
.chat-body { margin-top: 24px; display: grid; gap: 12px; font-size: 14px; }
.msg { padding: 10px 16px; border-radius: 18px; max-width: 85%; }
.msg-user {
  background: var(--gradient); color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.msg-bot {
  background: var(--surface-2); color: var(--fg);
  border-bottom-left-radius: 4px;
}
.chat-note {
  margin-top: 8px;
  font-size: 12px; color: var(--muted); font-style: italic;
}

/* ============ BENEFITS BANNER ============ */
.region-banner {
  margin-top: 80px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(163,230,53,.12));
  border: 1px solid var(--border);
  position: relative;
}
.region-banner-inner {
  padding: 80px 24px;
  text-align: center;
}
.rocket-icon { font-size: 2.5rem; color: var(--lime); }
.region-banner p {
  margin-top: 16px;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600; max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ============ CTA ============ */
.cta-box {
  background: var(--gradient);
  border-radius: 32px;
  padding: 80px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ""; position: absolute; inset: 0; opacity: .25; mix-blend-mode: overlay;
  background:
    radial-gradient(circle at 20% 20%, #fff, transparent 40%),
    radial-gradient(circle at 80% 80%, #fff, transparent 40%);
}
.cta-box h2 {
  position: relative; color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
}
.cta-box p { position: relative; margin-top: 20px; color: rgba(255,255,255,.9); font-size: 1.125rem; }
.cta-box .cta-row { position: relative; margin-top: 36px; }

/* ============ FOOTER (WHITE) ============ */
.site-footer {
  background: #fff;
  color: #475569;
  border-top: 1px solid #e5e7eb;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { height: 50px; width: auto; }
.site-footer p { margin-top: 16px; font-size: 14px; color: #64748b; max-width: 320px; }
.site-footer h4 {
  font-size: 13px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--violet);
}
.site-footer ul { margin-top: 16px; display: grid; gap: 8px; }
.site-footer li { font-size: 14px; color: #64748b; }
.copyright {
  margin-top: 40px; text-align: center;
  font-size: 12px; color: #94a3b8 !important;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  z-index: 60;
  animation: pulse 2s infinite;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.6); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); }
}
