:root {
  --bg: #0b0f1a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --text: #e9eefc;
  --muted: rgba(233, 238, 252, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --accent: #7c5cff;
  --accent2: #2dd4bf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(124, 92, 255, 0.35), transparent 50%),
              radial-gradient(900px 500px at 90% 0%, rgba(45, 212, 191, 0.25), transparent 55%),
              var(--bg);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 15, 26, 0.68);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}

.brand { display: flex; gap: 12px; align-items: center; }
.logo {
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.92), rgba(45, 212, 191, 0.88));
  box-shadow: var(--shadow);
  font-weight: 900;
}

.brand-title { font-weight: 800; line-height: 1.1; }
.brand-subtitle { font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav {
  display: flex; gap: 12px; align-items: center;
}

.nav a {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}
.nav-cta {
  color: var(--text) !important;
  background: rgba(124, 92, 255, 0.20);
  border-color: rgba(124, 92, 255, 0.35) !important;
}

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: rgba(233, 238, 252, 0.9);
}

.hero { padding: 54px 0 18px; }
.hero-grid {
  display: grid; gap: 26px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 13px;
}

h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 14px 0 10px;
  line-height: 1.05;
}
.accent {
  background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(45, 212, 191, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border 120ms ease;
  display: inline-block;
}
.btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.btn.primary {
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(124, 92, 255, 0.22);
}
.btn.primary:hover { background: rgba(124, 92, 255, 0.28); }

.trust {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.trust-item {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 12px;
}
.trust-num { font-weight: 900; }
.trust-text { color: var(--muted); font-size: 13px; margin-top: 4px; }

.hero-visual { display: grid; justify-items: center; }
.phone-frame {
  width: min(360px, 100%);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  padding: 14px;
}
.phone-top {
  height: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 12px;
}
.screen {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  padding: 14px;
}
.mock-header { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
.dot { width: 10px; height: 10px; border-radius: 99px; background: rgba(255,255,255,0.20); }
.mock-title { margin-left: auto; color: var(--muted); font-weight: 700; font-size: 13px; }

.mock-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 12px;
}
.mock-row { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124,92,255,0.35);
  background: rgba(124,92,255,0.14);
}
.pill.alt { border-color: rgba(45,212,191,0.35); background: rgba(45,212,191,0.12); }
.pill.alt2 { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); }

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.k { color: var(--muted); font-size: 12px; }
.v { font-size: 16px; font-weight: 900; margin-top: 4px; }

.mock-list { margin-top: 12px; display: grid; gap: 10px; }
.mock-item {
  display: flex; justify-content: space-between; gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 10px;
}
.t { font-weight: 800; font-size: 13px; }
.s { color: var(--muted); font-size: 12px; margin-top: 3px; }
.amt { font-weight: 900; text-align: right; }
.sub { color: var(--muted); font-size: 12px; text-align: right; }

.mock-footer { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.nav-dot { width: 8px; height: 8px; border-radius: 99px; background: rgba(255,255,255,0.20); }
.nav-dot.active { background: rgba(124,92,255,0.95); }

.caption { margin: 10px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

.section { padding: 26px 0; }
.section-head { margin: 0 0 14px; }
.section-head h2 { margin: 0 0 6px; font-size: 30px; }
.muted { color: var(--muted); }

.card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.card.big { padding: 18px; }
.center { text-align: center; }
.mt { margin-top: 14px; }

.download-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 820px) {
  .download-row { grid-template-columns: repeat(3, 1fr); }
}
.store {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: block;
}
.store.alt { border-color: rgba(45,212,191,0.22); }
.store-title { font-weight: 900; }
.store-sub { color: var(--muted); margin-top: 3px; font-size: 13px; }

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.feature { padding: 16px; }
.feature .icon { font-size: 22px; }
.feature h3 { margin: 10px 0 6px; }
.feature p { margin: 0 0 10px; color: var(--muted); line-height: 1.5; }
.feature ul { margin: 0; padding-left: 18px; color: var(--muted); }

.timeline { display: grid; gap: 10px; }
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.num {
  width: 44px; height: 44px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-weight: 900;
  background: rgba(124,92,255,0.18);
  border: 1px solid rgba(124,92,255,0.30);
}

.tabs { margin-top: 10px; }
.tab-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.tab-btn {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 750;
}
.tab-btn.active {
  border-color: rgba(124,92,255,0.40);
  background: rgba(124,92,255,0.18);
}
.tab-panel { padding: 16px; display: none; }
.tab-panel.active { display: block; }

.steps { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.65; }
.steps li { margin: 8px 0; }

.hint {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(45,212,191,0.24);
  background: rgba(45,212,191,0.10);
  color: rgba(233,238,252,0.92);
}

.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 920px) {
  .pricing { grid-template-columns: repeat(3, 1fr); }
}
.price { padding: 16px; position: relative; overflow: hidden; }
.price .big { font-size: 34px; font-weight: 900; margin: 8px 0 12px; }
.price ul { margin: 0 0 12px; padding-left: 18px; color: var(--muted); }
.price.featured { border-color: rgba(124,92,255,0.35); background: linear-gradient(180deg, rgba(124,92,255,0.16), rgba(255,255,255,0.03)); }
.tag {
  position: absolute; top: 14px; right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(124,92,255,0.35);
  background: rgba(124,92,255,0.18);
}

.faq-tools {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
#faqSearch {
  flex: 1;
  min-width: 220px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
}
#faqSearch::placeholder { color: rgba(233,238,252,0.55); }

.faq-list details {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 10px 12px;
  margin: 10px 0;
}
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: 10px 0 0; color: var(--muted); line-height: 1.55; }

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.12);
}
.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.7fr; }
}
.footer-title { font-weight: 900; margin-bottom: 6px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

.to-top {
  position: fixed;
  right: 16px; bottom: 16px;
  width: 44px; height: 44px;
  border-radius: 16px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

/* Mobile nav */
@media (max-width: 920px) {
  .menu-btn { display: inline-block; }
  .nav {
    position: absolute;
    top: 64px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(11, 15, 26, 0.85);
    backdrop-filter: blur(14px);
  }
  .nav.open { display: flex; }
}
