/* Theme: Dark + Bright Pink. No inline styles, no frameworks. */

:root {
  --bg: #0c0c12;
  --bg-soft: #131322;
  --card: #18182a;
  --text: #f2f2f7;
  --muted: #bdbdcc;
  --pink: #ff2e98;
  --pink-2: #ff62b6;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(255, 46, 152, 0.15);
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  background: radial-gradient(1200px 800px at 80% -10%, rgba(255, 46, 152, 0.14), transparent 60%),
              radial-gradient(1000px 700px at -10% 100%, rgba(255, 98, 182, 0.12), transparent 60%),
              var(--bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.no-scroll { overflow: hidden; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(12, 12, 18, 0.7);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 36px; border-radius: 8px; }
.brand span { font-weight: 700; letter-spacing: 0.2px; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a { opacity: 0.92; }
.nav a:hover { opacity: 1; color: white; }

.cta-group { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #0c0c12;
  background: linear-gradient(180deg, var(--pink), var(--pink-2));
  box-shadow: var(--shadow);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-outline {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-outline:hover { border-color: var(--pink); color: #fff; }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}
.burger-lines {
  position: relative;
  width: 20px; height: 2px; background: var(--text);
}
.burger-lines::before, .burger-lines::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 2px; background: var(--text);
}
.burger-lines::before { top: -6px; }
.burger-lines::after { top: 6px; }

/* Fullscreen menu overlay (no 'inset' usage) */
#menuOverlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1500;
  display: none;
  background: radial-gradient(900px 700px at 20% -10%, rgba(255, 46, 152, 0.2), transparent 60%),
              var(--bg-soft);
}
#menuOverlay.open { display: flex; }
.overlay-inner { display: grid; grid-template-rows: auto 1fr; width: 100%; }
.overlay-top { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); }
.overlay-content { display: grid; place-items: center; padding: 24px; }
.overlay-nav { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.overlay-cta { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.overlay-close {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

/* Hero */
.hero { padding: 48px 0 14px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
.hero h1 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12; margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 1.05rem; }
.hero-media { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: #0f0f18; }

/* Sections: every h2 is a new section */
.section { padding: 26px 0; border-top: 1px solid var(--border); }
.section:first-of-type { border-top: none; }
.section h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 10px; }
.section h3 { font-size: clamp(18px, 2vw, 22px); margin: 18px 0 8px; color: #fff; }
.muted { color: var(--muted); }

/* Lists */
ul.feature-list, ol.feature-list { padding: 0; margin: 10px 0 0 0; list-style: none; display: grid; gap: 8px; }
ul.feature-list li::before { content: "✦"; color: var(--pink); margin-right: 10px; }
ul.feature-list li { display: flex; align-items: flex-start; gap: 8px; }

/* Cards */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(12, 1fr); }
.card {
  grid-column: span 6;
  background: linear-gradient(180deg, rgba(255, 46, 152, 0.06), transparent 30%), var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.card h3 { margin-top: 0; }
.card p { margin-bottom: 0; color: var(--muted); }

/* FAQ */
.faq { display: grid; gap: 14px; }
.qa { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.qa strong { color: #fff; }
.qa p { margin: 8px 0 0; color: var(--muted); }

/* Footer */
.footer { border-top: 1px solid var(--border); margin-top: 24px; }
.footer-inner { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer small { color: var(--muted); }

/* Tables (if used) */
table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); background: var(--card); border-radius: 12px; overflow: hidden; }
th, td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; }
th { background: rgba(255, 46, 152, 0.12); }

/* Utilities */
.spacer-8 { height: 8px; }
.spacer-16 { height: 16px; }
.spacer-24 { height: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mobilectas {
  display: none;
}
/* Responsive */
@media (max-width: 960px) {
  .nav { display: none; }
  .cta-group { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; justify-self: flex-end; }
  .hero-inner { grid-template-columns: 1fr; }
  .cards .card { grid-column: span 12; }
  .grid-2 { grid-template-columns: 1fr; }
  .mobilectas {
    display: flex;
    justify-self: flex-end;
  }
  .mobilectas a {
    padding: 10px;
    font-size: 14px;
  }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .brand img {
    height: 20px;
  }
}


