:root {
  --bg: #0b0b18;
  --bg-soft: #14142a;
  --surface: #1c1c36;
  --ink: #f5f5fb;
  --ink-soft: #b8b8d0;
  --ink-muted: #7e7ea0;
  --indigo: #5b5bff;
  --violet: #8b5cff;
  --coral: #ff5c7c;
  --gradient: linear-gradient(135deg, #5b5bff 0%, #8b5cff 50%, #ff5c7c 100%);
  --radius: 24px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--violet); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--coral); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────── Nav ─────── */
nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 11, 24, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--ink); }

/* ─────── Hero ─────── */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -40% 30% auto auto;
  width: 80%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(139,92,255,0.32), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 20% auto -30% -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(255,92,124,0.22), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 32px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 28px rgba(139,92,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139,92,255,0.5); color: white; }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--ink); }

.play-badge-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #000;
  border-radius: 12px;
  color: white;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}
.play-badge-placeholder .label { font-size: 0.7rem; opacity: 0.7; line-height: 1; }
.play-badge-placeholder .name { font-size: 1.1rem; line-height: 1.1; }
.play-badge-placeholder svg { width: 28px; height: 28px; }

.hero-shot {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-shot img {
  max-height: 640px;
  width: auto;
  border-radius: 36px;
  box-shadow:
    0 30px 80px -20px rgba(91,91,255,0.4),
    0 0 0 1px rgba(255,255,255,0.06);
}

/* ─────── Features ─────── */
.section {
  padding: 96px 0;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 800;
}
.section .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  font-weight: 600;
  margin-bottom: 16px;
}
.section .section-lede {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 0 56px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s, border-color 0.2s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(139,92,255,0.3); }
.feature .icon-chip {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature .icon-chip svg { width: 28px; height: 28px; color: white; }
.feature h3 { font-size: 1.2rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* ─────── Screenshots ─────── */
.shots {
  background: var(--bg-soft);
}
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: end;
}
.shots-grid img {
  border-radius: 28px;
  box-shadow:
    0 20px 60px -10px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06);
}

/* ─────── CTA strip ─────── */
.cta-strip {
  margin: 0 24px 96px;
}
.cta-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 { color: white; margin: 0 0 12px; font-size: clamp(1.8rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; }
.cta-strip p { color: rgba(255,255,255,0.9); margin: 0 0 32px; font-size: 1.1rem; }
.cta-strip .btn-ghost {
  background: rgba(255,255,255,0.18);
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,0.28); }

/* ─────── Footer ─────── */
footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--ink-muted);
  font-size: 0.9rem;
}
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .footer-links { display: flex; gap: 24px; }
footer .footer-links a { color: var(--ink-soft); }

/* ─────── Long-form page (privacy, support) ─────── */
.page {
  padding: 64px 0 96px;
  max-width: 740px;
  margin: 0 auto;
}
.page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-weight: 800;
}
.page .updated { color: var(--ink-muted); margin-bottom: 40px; font-size: 0.95rem; }
.page h2 {
  font-size: 1.3rem;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.page p, .page li { color: var(--ink-soft); font-size: 1rem; }
.page ul { padding-left: 1.4em; }
.page code {
  background: var(--surface);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  font-size: 0.9em;
  color: var(--ink);
}

/* ─────── Responsive ─────── */
@media (max-width: 880px) {
  .hero { padding: 56px 0 48px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-shot img { max-height: 540px; }
  .features { grid-template-columns: 1fr; }
  .shots-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .section { padding: 64px 0; }
  .nav-links { gap: 16px; }
  .nav-links a:nth-child(1) { display: none; }
  .cta-strip-inner { padding: 48px 24px; }
}
