:root {
  --bg-1: #06070d;
  --bg-2: #04050a;
  --accent: #6C2BD9;
  --muted: #9fa4d9;
  --card-bg: rgba(14,15,29,0.9);
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(94, 92, 255, 0.12), transparent 28%), linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: #eef0ff;
}

* { box-sizing: border-box; }

html,body{ height:100%; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(94, 92, 255, 0.12), transparent 28%), linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: #eef0ff;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 4px;
  background: rgba(6, 7, 13, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(120, 100, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #eef0ff;
}
.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.hero {
  margin-top: 18px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(11, 12, 22, 0.74);
  border: 1px solid rgba(108, 43, 217, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 20px 80px rgba(5, 3, 20, 0.35);
}
.hero-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.hero-left {
  width: 100%;
  max-width: 820px;
}
.tagline {
  color: var(--muted);
  margin-top: 12px;
  max-width: 56ch;
}

.cta-row{ margin-top:20px; display:flex; gap:12px; align-items:center; }
.btn{ display:inline-flex; align-items:center; gap:10px; padding:12px 18px; border-radius:12px; text-decoration:none; font-weight:700; }
.btn.primary{ background:linear-gradient(90deg,var(--accent),#8a56ff); color:white; box-shadow:0 14px 40px rgba(108,43,217,0.18); }
.btn.ghost{ background:transparent; border:1px solid rgba(255,255,255,0.06); color:var(--muted); }

.store-row{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }
.coming{ background: rgba(108,43,217,0.12); color: #eae6ff; padding:8px 12px; border-radius:999px; font-weight:600; }

/* phone mock removed — layout simplified for one-column responsive hero */
/* Round other images lightly */
.page img{ border-radius:12px; }

.features{ margin-top:56px; }
.features h2{ font-size:1.6rem; margin-bottom:18px }
.features-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:20px; }
.feature-card{ padding:22px; border-radius:18px; background:var(--card-bg); border:1px solid rgba(120,100,255,0.08); box-shadow: 0 8px 30px rgba(5,4,12,0.45); }
.feature-icon{ width:48px; height:48px; background: linear-gradient(180deg, rgba(108,43,217,0.12), rgba(108,43,217,0.06)); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:12px }
.feature-card h3{ margin:0 0 8px }
.feature-card p{ margin:0; color:var(--muted); }

.how{ margin-top:36px; padding:26px; border-radius:16px; background: linear-gradient(180deg, rgba(6,7,13,0.5), rgba(4,5,10,0.5)); border:1px solid rgba(120,100,255,0.06); }
.how h2{ margin-top:0 }
.how ol{ margin:8px 0 0 18px; color:var(--muted) }

.content-page{ padding: 28px 0; }
.content-section{ max-width: 860px; }
.page-header{ display:flex; justify-content:flex-start; margin-bottom:24px; }
.back-link{ background:transparent; border:1px solid rgba(255,255,255,0.14); color:#eef0ff; padding:10px 16px; border-radius:999px; cursor:pointer; text-decoration:none; font-weight:600; transition: transform .2s ease, background .2s ease; }
.back-link:hover{ transform: translateX(-2px); background: rgba(255,255,255,0.06); }
.content-section h2{ margin-top:0; font-size:2rem; }
.content-section h3{ margin-top:24px; color:#fff; }
.content-section p, .content-section li{ color:var(--muted); line-height:1.75; }
.content-section ul, .content-section ol{ margin:12px 0 0 1.4rem; color:var(--muted); }

.site-footer{ margin-top:48px; padding:20px 18px; border-radius:14px; background:rgba(12,13,22,0.6); border:1px solid rgba(120,100,255,0.06); }
.footer-inner{ display:flex; justify-content:space-between; gap:12px; align-items:center; flex-wrap:wrap; }
.brand{ margin-left:10px; font-weight:700 }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.footer-link{ background:transparent; border:none; color:var(--muted); cursor:pointer; text-decoration:underline; padding:0; font: inherit; }
.footer-link:hover{ color:#fff; }

@media (max-width:900px){
  .hero-inner{ flex-direction:column; align-items:flex-start; }
  .features-grid{ grid-template-columns:1fr }
}

@media (max-width:520px){
  .page{ padding:28px 18px 48px }
  /* phone mock removed */
  h1{ font-size:2rem }
}

/* Utility */
.badge{ display:inline-block; padding:6px 10px; background:rgba(255,255,255,0.04); border-radius:999px; color:var(--muted); font-weight:700 }

