:root {
  --bg: #000000;
  --bg-1: #1a1a2e;
  --bg-2: #16213e;
  --bg-3: #0f1624;
  --primary: #b968ff;
  --primary-2: #9c20fd;
  --primary-3: #6a10b0;
  --label: #a78bfa;
  --text: #ffffff;
  --muted: #9ca3af;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(185, 104, 255, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
  --shadow: 0 8px 24px rgba(156, 32, 253, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(185, 104, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(106, 16, 176, 0.22), transparent 60%),
    linear-gradient(180deg, #0a0612 0%, #000 60%);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--label); text-decoration: none; }
a:hover { color: var(--primary); }

h1, h2, h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.4rem; letter-spacing: 0.06em; }

p { margin: 0 0 1em; color: var(--muted); }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--label);
  margin-bottom: 0.6em;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 6, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.brand > span:last-child {
  display: inline-block;
  padding-top: 0.18em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--primary-3) 100%);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a { color: var(--muted); white-space: nowrap; }
.nav-links a:hover { color: var(--text); }

/* ---------- buttons / store badges ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  border: 0;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; }

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.store-badge {
  display: inline-block;
  position: relative;
  line-height: 0;
  border-radius: 10px;
  transition: transform 150ms ease, filter 150ms ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 18px rgba(185, 104, 255, 0.35));
}
.store-badge img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.store-badge[data-store="google"] img {
  height: 80px;
  margin: -12px 0;
}
.store-badge .soon { display: none; }

.store-row {
  position: relative;
}
.store-row::after {
  content: 'Coming soon to App Store and Google Play';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label);
}
.cta .store-row::after { text-align: center; }

/* ---------- sections ---------- */
section { padding: 96px 24px; position: relative; }
.container {
  max-width: var(--max);
  margin: 0 auto;
}

/* ---------- hero ---------- */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #d4d4d8;
  max-width: 540px;
}
.hero-art {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-frame {
  width: 320px;
  max-width: 100%;
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f1624 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(156, 32, 253, 0.35),
    0 0 0 1px rgba(185, 104, 255, 0.18) inset;
}
.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
}

/* ---------- problem ---------- */
.problem .container {
  max-width: 820px;
  text-align: center;
}
.problem p {
  font-size: 1.1rem;
  color: #d4d4d8;
}

/* ---------- steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

/* ---------- features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 200ms ease, border-color 200ms ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 104, 255, 0.4);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  font-size: 1.4rem;
}
.feature h3 { color: var(--text); margin-bottom: 8px; }
.feature p { margin: 0; font-size: 0.95rem; }

/* ---------- privacy callout ---------- */
.privacy-banner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(185, 104, 255, 0.15), rgba(156, 32, 253, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(185, 104, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.privacy-banner .text { flex: 1; min-width: 260px; }
.privacy-banner h2 { margin-bottom: 8px; }
.privacy-banner p { margin: 0; color: #d4d4d8; }

/* ---------- faq ---------- */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--label);
  transition: transform 200ms ease;
  font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* ---------- final CTA ---------- */
.cta {
  text-align: center;
}
.cta .container { max-width: 720px; }
.cta .store-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 24px;
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.4);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

/* ---------- legal pages ---------- */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 4px;
}
.legal .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
.legal h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal li { color: #d4d4d8; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.95rem;
}
.legal th, .legal td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.legal th {
  background: rgba(185, 104, 255, 0.12);
  color: var(--text);
  font-weight: 700;
}
.legal code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ---------- fade-in animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; }
  .phone-frame { width: 240px; }
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  section { padding: 64px 20px; }
  .hero { padding-top: 40px; padding-bottom: 56px; }
  .nav-links { gap: 18px; font-size: 0.85rem; }
  .nav-links a:nth-child(n+3) { display: none; }
  .privacy-banner { padding: 28px; gap: 20px; }
  h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
}

@media (max-width: 600px) {
  .nav { padding: 12px 16px; gap: 12px; }
  .brand { font-size: 1.1rem; gap: 10px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-mark svg { width: 16px; height: 16px; }
  .nav-links { gap: 14px; font-size: 0.8rem; }

  .hero { padding-top: 28px; padding-bottom: 40px; }
  .hero-inner { gap: 28px; }
  .phone-frame { width: 220px; padding: 8px; border-radius: 32px; }
  .phone-frame img { border-radius: 26px; }
  .hero p.lead { font-size: 1rem; }

  section { padding: 56px 18px; }

  /* store badges: equal-size grid, no awkward Google overshoot */
  .store-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .store-badge { width: 100%; }
  .store-badge img { height: 48px; width: 100%; object-fit: contain; }
  .store-badge[data-store="google"] img { height: 48px; margin: 0; }

  /* coming-soon caption: stop using absolute, let it flow */
  .store-row::after {
    position: static;
    display: block;
    margin-top: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-align: center;
  }
  .cta .store-row::after { text-align: center; }

  .privacy-banner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .privacy-banner .btn { width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; text-align: left; }
  .footer-links { gap: 16px; }

  .step { padding: 24px 20px; }
  .step-num { font-size: 2.4rem; }
  .feature { padding: 22px; }

  .faq-item summary { padding: 16px 18px; font-size: 0.95rem; }
  .faq-item .answer { padding: 0 18px 18px; font-size: 0.95rem; }
}

@media (max-width: 380px) {
  .nav-links a:nth-child(n+2) { display: none; }
  .brand { font-size: 1rem; }
}
