:root {
  --ink: #090b12;
  --ink-2: #10131f;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f5fb;
  --muted: #a2aac4;

  /* Mirrors CuePalette in the app */
  --blue: #3f8cff;
  --teal: #2fd0c8;
  --indigo: #6b6bff;
  --orange: #ff9f2e;
  --purple: #b163ff;
  --pink: #ff5fa2;
  --green: #34d95f;
  --red: #ff4d4d;
  --yellow: #ffd426;

  --radius: 22px;
  --radius-sm: 14px;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.03em; margin: 0; }
p { margin: 0; }

/* ---------- ambient glows ---------- */

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.glow-a {
  width: 620px; height: 620px;
  top: -240px; left: -180px;
  background: radial-gradient(circle, var(--blue), transparent 68%);
}
.glow-b {
  width: 680px; height: 680px;
  top: 260px; right: -260px;
  background: radial-gradient(circle, var(--purple), transparent 68%);
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px 24px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(9, 11, 18, 0.62);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(63, 140, 255, 0.35);
}

.nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--muted); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--purple) 55%, var(--pink));
  color: #fff;
  box-shadow: 0 10px 30px rgba(107, 107, 255, 0.4);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(107, 107, 255, 0.55); }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }

/* ---------- hero ---------- */

main { position: relative; z-index: 1; }

.hero {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 217, 95, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(52, 217, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 217, 95, 0); }
}

.hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(46px, 6.4vw, 82px);
  font-weight: 800;
}
.grad {
  background: linear-gradient(100deg, var(--blue), var(--teal) 35%, var(--purple) 70%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { font-size: 19px; color: var(--muted); max-width: 30em; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 30px; }

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 15px;
  color: var(--muted);
}
.hero-facts strong { color: var(--text); font-weight: 650; }

/* ---------- phones ---------- */

.phone {
  position: relative;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(160deg, #2b3048, #12141f);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12) inset,
    0 40px 80px rgba(0, 0, 0, 0.6);
}
.phone img {
  border-radius: 33px;
  background: var(--ink-2);
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  width: 100%;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.phone-lead {
  width: 62%;
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease);
}
.phone-lead:hover { transform: rotate(-1deg) translateY(-8px); }
.phone-back {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 6%;
  z-index: 1;
  opacity: 0.92;
  transform: rotate(6deg);
  transition: transform 0.5s var(--ease);
}
.phone-back:hover { transform: rotate(4deg) translateY(-8px); }

/* ---------- stat strip ---------- */

.strip {
  max-width: var(--shell);
  margin: 30px auto 0;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 15px;
}
.strip > div + div { border-left: 1px solid var(--line); }
.strip-n {
  display: block;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strip-n small { font-size: 18px; font-weight: 700; }

/* ---------- no talk-back highlight ---------- */

.without {
  max-width: var(--shell);
  margin: 72px auto 0;
  padding: 72px 24px;
  text-align: center;
}
.without-eyebrow { margin-bottom: 22px; }
.without .section-sub { max-width: 42em; }

.compare {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.compare-card {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 100%;
}
.compare-kicker {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.compare-card h3 {
  font-size: 24px;
  font-weight: 750;
  margin-bottom: 12px;
}
.compare-card p { color: var(--muted); font-size: 16px; }

.compare-card.is-off {
  background: rgba(255, 255, 255, 0.03);
}
.compare-card.is-off h3 { color: #c5cbdf; }

.compare-card.is-on {
  border-color: transparent;
  background:
    linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
    linear-gradient(135deg, var(--blue), var(--purple), var(--pink)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 24px 60px rgba(107, 107, 255, 0.28);
  transform: translateY(-8px);
}
.compare-card.is-on::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}
.compare-card.is-on .compare-kicker {
  color: var(--teal);
}
.compare-card.is-on h3 {
  background: linear-gradient(100deg, var(--blue), var(--teal) 40%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare-card.is-on p { color: var(--text); }

/* ---------- sections ---------- */

.section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 110px 24px;
}
.section-alt {
  max-width: none;
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(107, 107, 255, 0.12), transparent 70%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.section-alt > * { max-width: var(--shell); margin-inline: auto; }

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 780;
  text-align: center;
}
.section-sub {
  margin: 16px auto 0;
  max-width: 34em;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}

/* ---------- feature cards ---------- */

.cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
  opacity: 0.9;
}
.card::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  top: -110px; right: -80px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(70px);
  opacity: 0.28;
  transition: opacity 0.3s;
}
.card:hover { transform: translateY(-6px); background: var(--surface-2); border-color: rgba(255, 255, 255, 0.2); }
.card:hover::after { opacity: 0.5; }

.card-icon {
  position: relative;
  z-index: 1;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--accent);
  font-size: 21px;
  margin-bottom: 18px;
}
.card h3 { position: relative; z-index: 1; font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.card p { position: relative; z-index: 1; color: var(--muted); font-size: 16px; }

.c-blue { --accent: var(--blue); }
.c-orange { --accent: var(--orange); }
.c-green { --accent: var(--green); }
.c-purple { --accent: var(--purple); }
.c-pink { --accent: var(--pink); }
.c-teal { --accent: var(--teal); }

/* ---------- steps ---------- */

.steps {
  margin: 56px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.step-n {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  color: #0a0c14;
  background: linear-gradient(140deg, var(--teal), var(--blue));
}
.steps li:nth-child(2) .step-n { background: linear-gradient(140deg, var(--blue), var(--indigo)); }
.steps li:nth-child(3) .step-n { background: linear-gradient(140deg, var(--purple), var(--pink)); }
.steps li:nth-child(4) .step-n { background: linear-gradient(140deg, var(--orange), var(--yellow)); }
.steps h3 { font-size: 19px; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 15.5px; }

/* ---------- gallery ---------- */

.gallery {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px 28px;
}
.shot { margin: 0; }
.shot .phone { transition: transform 0.35s var(--ease); }
.shot:hover .phone { transform: translateY(-8px); }
.shot figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15.5px;
}
.shot figcaption strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 680;
  margin-bottom: 3px;
}

/* ---------- quote ---------- */

.quote-band {
  padding: 90px 24px;
  text-align: center;
  background: linear-gradient(100deg, rgba(63, 140, 255, 0.16), rgba(177, 99, 255, 0.16), rgba(255, 95, 162, 0.16));
  border-block: 1px solid var(--line);
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 22em;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
}
.quote-band cite {
  display: block;
  margin-top: 22px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- faq ---------- */

.faq {
  margin: 48px auto 0;
  max-width: 780px;
  display: grid;
  gap: 12px;
}
.faq details {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 4px 22px;
  transition: background 0.25s, border-color 0.25s;
}
.faq details[open] { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.2); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 30px 18px 0;
  font-weight: 650;
  font-size: 17.5px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  translate: 0 -50%;
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  transition: rotate 0.25s var(--ease);
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding: 0 0 20px; color: var(--muted); font-size: 16px; }

/* ---------- final CTA ---------- */

.get {
  text-align: center;
  padding: 120px 24px;
  background:
    radial-gradient(700px 340px at 50% 100%, rgba(255, 95, 162, 0.18), transparent 70%),
    radial-gradient(700px 340px at 50% 0%, rgba(63, 140, 255, 0.2), transparent 70%);
}
.get h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  max-width: 14em;
  margin-inline: auto;
}
.get > p { margin-top: 16px; color: var(--muted); font-size: 18px; }
.get .btn { margin-top: 32px; }
.fineprint { font-size: 14px; color: var(--muted); opacity: 0.75; margin-top: 20px !important; }

/* ---------- footer ---------- */

.footer {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 44px 24px 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.footer-brand img { width: 38px; height: 38px; border-radius: 10px; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1.35; }
.footer-brand span { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--text); }
.copyright { flex-basis: 100%; color: var(--muted); font-size: 13.5px; opacity: 0.7; }

/* ---------- legal pages ---------- */

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}
.doc h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 800; }
.doc .updated { margin-top: 14px; color: var(--muted); font-size: 15px; }
.doc h2 {
  margin: 48px 0 14px;
  font-size: 23px;
  font-weight: 700;
}
.doc p, .doc li { color: var(--muted); font-size: 17px; }
.doc p + p { margin-top: 14px; }
.doc ul { padding-left: 22px; margin: 14px 0 0; display: grid; gap: 10px; }
.doc a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.doc .callout {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.doc .callout p { color: var(--text); }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.compare-card.is-on.reveal.visible { transform: translateY(-8px); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; gap: 24px; }
  .hero-art { order: 2; }
  .phone-lead { width: 58%; }
  .phone-back { width: 46%; right: 4%; }
  .nav-links { display: none; }
  .strip { grid-template-columns: 1fr; }
  .strip > div + div { border-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .section { padding: 80px 24px; }
  .without { margin-top: 40px; padding: 48px 24px; }
  .compare { grid-template-columns: 1fr; }
  .compare-card.is-on,
  .compare-card.is-on.reveal.visible { transform: none; order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
