:root {
  --bg: #0B0F17;
  --surface: #151B26;
  --surface-2: #1F2632;
  --text: #F5F7FA;
  --text-muted: #9CA3AF;
  --text-faint: #6B7280;
  --accent: #7C5CFF;
  --accent-soft: rgba(124, 92, 255, 0.18);
  --max-width: 1100px;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.brand-mark { color: var(--accent); margin-right: 6px; }
.nav nav a { color: var(--text-muted); margin-left: 24px; font-size: 14px; }
.nav nav a:hover { color: var(--text); }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 40px auto 96px;
  padding: 0 32px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}
h1 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 20px;
  font-weight: 800;
}
.lede {
  color: var(--text-muted);
  font-size: 18px;
  margin: 0 0 32px;
  max-width: 520px;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.cta-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 24px rgba(124, 92, 255, 0.35);
}
.cta-primary:hover { background: #6F4FFF; text-decoration: none; }
.cta-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #2A3242;
}
.cta-secondary:hover { background: var(--surface); text-decoration: none; }
.bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}
.bullets li { margin: 8px 0; padding-left: 20px; position: relative; }
.bullets li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 540px;
}
.phone {
  position: relative;
  width: 280px;
  height: 540px;
  border-radius: 44px;
  background: linear-gradient(160deg, #1F2632, #0B0F17);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.05);
  border: 1px solid #2A3242;
  transform: rotate(3deg);
}
.phone-screen {
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(124, 92, 255, 0.25), transparent 60%),
    linear-gradient(180deg, #151B26, #0B0F17);
}
.phone-glow {
  position: absolute;
  inset: -40px;
  border-radius: 60px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.features, .roadmap, .download {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px;
}
h2 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  letter-spacing: -0.5px;
  margin: 0 0 40px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid article {
  background: var(--surface);
  border: 1px solid #1F2632;
  border-radius: var(--radius);
  padding: 28px;
}
.feature-icon { font-size: 36px; margin-bottom: 12px; }
.feature-grid h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}
.feature-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.roadmap ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.roadmap li {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  color: var(--text-muted);
}
.roadmap strong { color: var(--text); }

.download {
  text-align: center;
}
.download p {
  color: var(--text-muted);
  font-size: 16px;
  margin: -32px 0 32px;
}
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-block;
  background: var(--surface);
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid #2A3242;
  font-weight: 600;
}
.store-btn:hover { background: var(--surface-2); text-decoration: none; }

.email-capture {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.email-capture label {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.email-capture div {
  display: flex;
  gap: 8px;
}
.email-capture input {
  flex: 1;
  background: var(--surface);
  border: 1px solid #2A3242;
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
}
.email-capture input:focus {
  outline: none;
  border-color: var(--accent);
}
.email-capture button {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}
.form-note {
  color: var(--text-faint);
  font-size: 12px;
  margin: 8px 0 0;
}

footer {
  border-top: 1px solid #1F2632;
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
footer p { margin: 8px 0; }
footer .small { color: var(--text-faint); font-size: 12px; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { height: 420px; }
  h1 { font-size: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .roadmap ul { grid-template-columns: 1fr; }
}

/* ─── Legal pages (privacy) ───────────────────────────────────────────── */
.legal {
  max-width: 760px;
  margin: 24px auto 80px;
  padding: 0 32px;
}
.legal h1 {
  font-size: 40px;
  letter-spacing: -0.5px;
  margin: 24px 0 8px;
}
.legal h2 {
  margin-top: 32px;
  font-size: 22px;
  color: var(--text);
}
.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.legal ul {
  padding-left: 22px;
}
.legal a {
  color: var(--accent);
}
.legal-meta {
  margin-top: 40px;
  color: var(--text-faint);
  font-size: 14px;
}

/* ─── Contact note on the landing page ────────────────────────────────── */
.contact-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
}
.contact-link {
  color: var(--accent);
  font-weight: 600;
}
