:root {
  --bg: #050208;
  --bg-raised: #0c0814;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.58);
  --faint: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.08);
  --brand: #7b35f5;
  --brand-deep: #5b21d6;
  --accent: #d946ef;
  --pink: #ff57a3;
  --cyan: #22d3ee;
  --ok: #34d399;
  --danger: #fb7185;
  --header: 76px;
  --max: 1120px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-brand: 0 10px 40px rgba(123, 53, 245, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
p { margin: 0; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--brand);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}
.skip:focus { top: 12px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(5, 2, 8, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.wordmark {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.045em;
  line-height: 1;
  padding-right: 10px;
  flex: 0 0 auto;
}
.wm-nst { color: #7b35f5; }
.wm-rest { color: #fff; }
.wm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  margin-left: 1px;
  margin-top: 1px;
  box-shadow: 0 0 10px rgba(255, 87, 163, 0.8);
}
.desk-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
}
.desk-nav a:hover { color: white; }
.header-cta { margin-left: 8px; }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(8, 4, 14, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 8px 22px 22px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 550;
}
.mobile-nav a:last-child { border-bottom: 0; margin-top: 8px; }

/* Ticker */
.ticker {
  position: relative;
  margin-top: var(--header);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.ticker em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}
.ticker i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.25);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-brand);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: #8b4df7; transform: translateY(-1px); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 14px 22px; font-size: 15.5px; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border: 1px solid var(--line);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 16px 8px 12px;
}
.store-badge small { display: block; font-size: 10px; letter-spacing: 0.04em; color: rgba(255,255,255,.7); }
.store-badge strong { display: block; font-size: 18px; letter-spacing: -0.03em; line-height: 1.1; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header) - 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -80px;
  top: 40px;
  background: radial-gradient(circle, rgba(123, 53, 245, 0.38), transparent 68%);
  pointer-events: none;
  z-index: -1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(217, 70, 239, 0.35);
  background: rgba(123, 53, 245, 0.12);
  color: #f0abfc;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(52px, 6.4vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.grad {
  display: block;
  background: linear-gradient(180deg, #f5d0fe 0%, #e879f9 28%, #d946ef 62%, #7b35f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  max-width: 520px;
  color: var(--muted);
  font-size: 17.5px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--faint);
  font-size: 14px;
}
.avatars { display: flex; }
.avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #050208;
  margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; background: #c4b5fd; }
.avatars span:nth-child(2) { background: #f0abfc; }
.avatars span:nth-child(3) { background: #f9a8d4; }
.avatars span:nth-child(4) { background: #a78bfa; }
.avatars span:nth-child(5) { background: #e879f9; }
.proof strong { color: rgba(255,255,255,.82); font-weight: 650; }

.chip-marquee {
  margin-top: 36px;
  max-width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.chip-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}

.live-frame {
  position: relative;
  width: min(340px, 100%);
  margin-left: auto;
  padding: 3px;
  border-radius: 42px;
  background: linear-gradient(160deg, #a855f7, #7b35f5 35%, #22d3ee);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 30px 80px rgba(123, 53, 245, 0.28),
    0 0 120px rgba(34, 211, 238, 0.12);
}
.live-screen {
  position: relative;
  aspect-ratio: 9 / 19.2;
  border-radius: 39px;
  overflow: hidden;
  background: #000;
}
.live-screen img,
.live-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.live-screen img { opacity: 0; transition: opacity 0.8s ease; }
.live-screen img.on { opacity: 1; }
.live-screen video { opacity: 0; }
.live-screen video.show { opacity: 1; z-index: 2; }
.live-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  text-align: center;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(255,255,255,.4);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  font-size: 11px;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue b {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 10px;
  position: relative;
}
.scroll-cue b::after {
  content: "";
  width: 3px;
  height: 6px;
  border-radius: 3px;
  background: white;
  position: absolute;
  left: 6px;
  top: 5px;
  animation: bob 1.4s ease-in-out infinite;
}
@keyframes bob {
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* Sections */
section { position: relative; }
.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.section {
  padding: 96px 0;
}
.kicker {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 16px;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
}
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

.problem { background: #000; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(123,53,245,.08), rgba(255,255,255,.02));
}
.stat strong {
  display: block;
  font-size: 40px;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #fff, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--muted); font-size: 14.5px; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.03);
}
.card h3 { margin: 8px 0 14px; font-size: 18px; letter-spacing: -0.03em; }
.card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.card li { color: rgba(255,255,255,.82); }
.card.old li { color: rgba(255,255,255,.55); }
.tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.tag.good { color: #e9d5ff; }
.card.new {
  background: linear-gradient(180deg, rgba(123,53,245,.2), rgba(217,70,239,.06));
  border-color: rgba(123,53,245,.4);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.step {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.025);
  min-height: 250px;
}
.step .num {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
}
.step h3 { margin: 14px 0 8px; font-size: 24px; letter-spacing: -0.03em; }
.step p { color: var(--muted); }
.step .note { margin-top: 16px; color: rgba(255,255,255,.8); font-size: 14px; }

.quote-band {
  margin-top: 28px;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  border: 1px solid rgba(217,70,239,.3);
  background:
    radial-gradient(600px 180px at 50% 0%, rgba(217,70,239,.2), transparent 70%),
    rgba(123,53,245,.08);
}
.quote-band h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}
.quote-band p { color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,.03);
}
.feature .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #e9d5ff;
  font-weight: 700;
}
.feature h3 { margin: 10px 0 8px; font-size: 26px; letter-spacing: -0.03em; }
.feature p { color: var(--muted); }

.safety-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.check { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.84);
}
.check li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%2334d399' d='M6.2 11.4 3.1 8.3l1.1-1.1 2 2 5-5 1.1 1.1z'/></svg>") center / 14px no-repeat;
}
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 18px;
  background: #000;
}
.metric b {
  display: block;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.metric span { color: var(--muted); font-size: 13.5px; }

.app-block { padding: 28px 0 10px; }
.shot-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0;
}
.shot-row > * { min-width: 0; }
.shot-row.reverse .copy { order: 2; }
.shot-row .eyebrow-sm {
  color: #e9d5ff;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}
.shot-row h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.shot-row p { color: var(--muted); font-size: 16.5px; }
.shot-row ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.shot-row li { color: rgba(255,255,255,.84); padding-left: 18px; position: relative; }
.shot-row li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.55em;
}
.phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
}
.phone {
  width: 230px;
  border-radius: 28px;
  padding: 7px;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.phone.glow {
  background: linear-gradient(180deg, rgba(123,53,245,.9), rgba(34,211,238,.7));
  border: 0;
}
.phone img {
  width: 100%;
  border-radius: 22px;
  height: auto;
}
.phone.side { width: 190px; transform: translateY(18px); opacity: 0.95; }
.phones.trio .phone { width: 188px; }
.phones.trio .phone.side { width: 168px; }
.phones.wrap { flex-wrap: wrap; max-width: 520px; margin-left: auto; }

.cta {
  text-align: center;
  padding: 40px 0 110px;
}
.cta-box {
  border-radius: 32px;
  padding: 64px 24px;
  border: 1px solid rgba(123,53,245,.35);
  background:
    radial-gradient(500px 220px at 50% 0%, rgba(217,70,239,.28), transparent 70%),
    radial-gradient(400px 180px at 80% 100%, rgba(123,53,245,.25), transparent 70%),
    #09060f;
}
.cta .sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
  text-align: center;
}

footer {
  border-top: 1px solid var(--line);
  background: #000;
  padding: 64px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.foot-brand p { color: var(--muted); max-width: 280px; margin-top: 12px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.socials a:hover { color: white; border-color: rgba(255,255,255,.3); }
footer h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.45);
}
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
footer li a { color: rgba(255,255,255,.78); font-size: 14.5px; }
footer li a:hover { color: white; }
.legal-line {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.4);
  font-size: 13px;
}

/* Inner pages */
.page {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 90px;
}
.page h1 { font-size: clamp(40px, 6vw, 64px); }
.page .updated { color: var(--faint); margin-bottom: 22px; }
.prose h2 { font-size: 28px; margin: 32px 0 10px; }
.prose p, .prose li { color: rgba(255,255,255,.78); }
.prose ul { padding-left: 18px; }
.prose a { color: #e9d5ff; text-decoration: underline; text-underline-offset: 3px; }

.faq-group { margin-top: 28px; }
.faq-group h2 {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #e9d5ff;
  margin-bottom: 8px;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  flex: 0 0 auto;
}
details[open] summary::after { content: "–"; color: var(--accent); border-color: rgba(217,70,239,.4); }
details p { margin: 0 0 16px; color: var(--muted); }

.help-card {
  margin-top: 36px;
  border-radius: 28px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(123,53,245,.3);
  background: linear-gradient(180deg, rgba(123,53,245,.16), rgba(217,70,239,.06));
}
.mail {
  display: inline-flex;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  font-weight: 650;
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.form label { font-size: 13px; color: var(--muted); }
.form input, .form textarea, .form select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: white;
  padding: 12px 14px;
  font-size: 15px;
}
.form textarea { min-height: 120px; resize: vertical; }

@media (max-width: 980px) {
  .desk-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .hero, .safety-grid, .shot-row, .compare, .steps, .feature-grid, .stats, .foot-grid {
    grid-template-columns: 1fr;
  }
  .shot-row.reverse .copy { order: 0; }
  .hero { min-height: auto; padding-top: 28px; }
  .live-frame { margin: 12px auto 36px; }
  .phones.trio { flex-wrap: wrap; }
  .legal-line { flex-direction: column; }
  h1 { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
