:root {
  --bg: #0b1220;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --brand: #6ee7ff;
  --brand-2: #a78bfa;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 15% 15%, rgba(110, 231, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(167, 139, 250, 0.14), transparent 55%),
    radial-gradient(900px 600px at 60% 90%, rgba(110, 231, 255, 0.10), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #111827;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; z-index: 999; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, 0.78);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}
.brand-name { font-weight: 900; letter-spacing: 0.2px; }

.nav {
  display: none;
  gap: 16px;
  color: var(--muted);
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover,
.nav a.active {
  color: var(--text);
  font-weight: 650;
}
.nav a:hover { background: rgba(255, 255, 255, 0.06); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(110, 231, 255, 0.28);
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.18), rgba(167, 139, 250, 0.16));
  color: var(--text);
  font-weight: 650;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.button:hover { border-color: rgba(110, 231, 255, 0.45); }

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.hero {
  padding: 44px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(110, 231, 255, 0.85);
  font-weight: 650;
  letter-spacing: 0.2px;
}

.h1 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.08;
  margin: 0 0 12px;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 60ch;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.trust-item {
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.trust-title { font-weight: 700; }
.trust-sub { color: var(--muted); font-size: 14px; }

.hero-art {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
}

.phone {
  width: min(420px, 95%);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  padding: 12px;
}

.phone-offset { transform: translateY(-10px); }
.phone-screen { width: 100%; display: block; border-radius: 18px; }

.phone-screen.js-hero-screen { transition: transform 320ms ease, opacity 320ms ease; }
.phone-screen.is-fading { opacity: 0; transform: translateY(20px); }
.phone-screen.is-sliding-in { opacity: 0; transform: translateY(-20px); }

.phone-screen.js-hero-screen { transition: transform 320ms ease, opacity 320ms ease; }
.phone-screen.is-fading { opacity: 0; transform: translateY(20px); }
.phone-screen.is-sliding-in { opacity: 0; transform: translateY(-20px); }

.section { padding: 64px 0; }
.section-alt { background: rgba(255, 255, 255, 0.02); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }

.section-head { margin-bottom: 32px; }

.h2 { margin: 0 0 12px; font-size: clamp(26px, 2.8vw, 38px); line-height: 1.2; }
.h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.3; }

.muted { color: var(--muted); margin: 0; }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.card p { margin: 0 0 12px; color: var(--muted); }

.link { color: rgba(110, 231, 255, 0.88); font-weight: 650; }
.link:hover { color: #b6f3ff; }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.checklist { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.checklist li { margin: 8px 0; }

.panel {
  border-radius: var(--radius);
  border: 1px solid rgba(110, 231, 255, 0.20);
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.12), rgba(167, 139, 250, 0.10));
  box-shadow: var(--shadow);
}

.panel-inner { padding: 18px; }
.panel-kicker { color: rgba(255,255,255,0.75); font-weight: 650; }
.panel-title { font-size: 22px; font-weight: 800; margin-top: 4px; }
.panel-sub { margin-top: 6px; color: rgba(255,255,255,0.74); }
.panel-actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }

.page {
  padding: 28px 0 44px;
}

.page-head {
  padding: 22px 0;
}

.kicker {
  margin: 0 0 10px;
  color: rgba(167, 139, 250, 0.9);
  font-weight: 700;
}

.prose {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 18px;
}

.prose h2 { margin-top: 20px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: rgba(110, 231, 255, 0.92); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.faq-q { font-weight: 800; margin: 0 0 6px; }
.faq-a { margin: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.20);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px 0;
}

.footer-brand { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; }
.footer-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.footer-muted { color: var(--muted); margin: 10px 0 0; max-width: 54ch; }

.play-store-btn {
  display: block;
  margin-top: 1px;
  width: 148px;
  max-width: 100%;
  border-radius: 8px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.play-store-btn:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}
.play-store-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  color: var(--muted);
}

.footer-links a:hover { color: var(--text); }

.footer-contact { color: var(--text); }

.footer-bottom {
  padding: 12px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 840px) {
  .nav { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: 26px; }
  .trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1.15fr 0.85fr; }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1.6fr 1fr 0.8fr; align-items: start; }
  .footer-links { grid-template-columns: 1fr; }
}
