:root {
  --bg: #0a0908;
  --bg-deep: #070606;
  --surf-1: #141210;
  --surf-2: #1c1916;
  --border: rgba(255, 255, 255, 0.07);
  --border-bright: rgba(255, 255, 255, 0.14);
  --text: #f3f0ea;
  --text-sec: #8d8a83;
  --text-dim: #57544e;
  --red: #d92c2c;
  --red-glow: rgba(217, 44, 44, 0.4);
  --amber: #f0a62a;
  --amber-soft: rgba(240, 166, 42, 0.18);
  --max: 1120px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--text); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--amber); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

em { font-style: normal; color: var(--amber); }

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 99;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 7s steps(8) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
}

/* ---------- shared bits ---------- */
.rec-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow), 0 0 4px var(--red-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-sec);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  padding: 9px 16px;
  border-radius: 100px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--text); }
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red-glow);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14.5px; color: var(--text-sec); font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--border-bright);
  padding: 8px 16px;
  border-radius: 100px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.nav-cta:hover { border-color: var(--red); background: rgba(217, 44, 44, 0.12); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 60% at 12% 80%, rgba(217, 44, 44, 0.16), transparent 70%),
    radial-gradient(42% 56% at 88% 72%, rgba(240, 166, 42, 0.13), transparent 70%),
    radial-gradient(60% 50% at 50% 110%, rgba(217, 44, 44, 0.08), transparent 75%);
}

/* the scrolling teleprompter backdrop */
.prompter {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 4%, #000 38%, #000 62%, transparent 96%);
  mask-image: linear-gradient(to bottom, transparent 4%, #000 38%, #000 62%, transparent 96%);
}
.prompter-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  animation: prompt-scroll 38s linear infinite;
}
.prompter-track p {
  margin: 0.55em 0;
  font-family: var(--mono);
  font-size: clamp(26px, 4.6vw, 54px);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: rgba(243, 240, 234, 0.05);
}
@keyframes prompt-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}
.hero-copy h1 {
  margin: 28px 0 20px;
  font-size: clamp(52px, 7.2vw, 92px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.lead {
  max-width: 32em;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--text-sec);
  margin: 0 0 34px;
}
.trust-line {
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

/* store badges */
.cta { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: var(--radius-md);
  background: var(--text);
  color: var(--bg) !important;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-badge span { display: flex; flex-direction: column; font-size: 17px; }
.store-badge small { font-size: 10.5px; font-weight: 500; opacity: 0.65; letter-spacing: 0.04em; }
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(217, 44, 44, 0.25);
}
.store-badge.is-soon {
  background: transparent;
  color: var(--text-sec) !important;
  border: 1px solid var(--border-bright);
  cursor: default;
}
.store-badge.is-soon:hover { transform: none; box-shadow: none; }

/* hero phone */
.hero-phone { position: relative; justify-self: center; }
.phone {
  margin: 0;
  width: min(310px, 78vw);
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, #2c2a27, #131110 55%, #232019);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(217, 44, 44, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.phone img { border-radius: 34px; }
.phone-hero { transform: rotate(2.6deg); }

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  padding: 9px 14px;
  border-radius: 100px;
  background: rgba(20, 18, 16, 0.85);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  animation: bob 5.2s ease-in-out infinite;
}
.chip-rec { top: 9%; left: -34px; }
.chip-speed { bottom: 16%; right: -30px; color: var(--amber); animation-delay: -2.4s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
  overflow: hidden;
  padding: 15px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker-x 30s linear infinite;
}
.ticker-track span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--text-dim);
  white-space: nowrap;
}
.ticker-track i { color: var(--red); font-size: 7px; font-style: normal; }
@keyframes ticker-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- features ---------- */
.features { padding: 110px 0 40px; }
.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding: 56px 0;
}
.feature-row.is-flipped .feature-copy { order: 2; }
.feature-row.is-flipped .phone { order: 1; justify-self: start; transform: rotate(-2deg); }
.feature-row .phone { justify-self: end; transform: rotate(2deg); width: min(290px, 74vw); }

.feature-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--red);
}
.feature-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.feature-copy > p { color: var(--text-sec); max-width: 30em; margin: 0 0 22px; }
.feature-copy strong { color: var(--text); font-weight: 700; }

.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  color: var(--text-sec);
  font-size: 15.5px;
  border-bottom: 1px dashed var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber-soft);
}

/* ---------- how it works ---------- */
.how { padding: 90px 0; background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-title {
  text-align: center;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 64px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  padding: 30px 26px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-5px); border-color: rgba(240, 166, 42, 0.35); }
.step-num {
  font-family: var(--mono);
  font-size: 44px;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; font-size: 21px; font-weight: 800; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--text-sec); font-size: 15px; }

/* ---------- privacy band ---------- */
.privacy-band { padding: 110px 0; text-align: center; }
.privacy-mono {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--amber);
  margin: 0 0 18px;
}
.privacy-band h2 {
  margin: 0 auto 16px;
  max-width: 17em;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.privacy-sub { color: var(--text-sec); max-width: 38em; margin: 0 auto; }
.privacy-sub a { color: var(--text); border-bottom: 1px solid var(--border-bright); }
.privacy-sub a:hover { color: var(--amber); border-color: var(--amber); }

/* ---------- closer ---------- */
.closer {
  position: relative;
  padding: 110px 0 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.closer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 55% at 18% 30%, rgba(217, 44, 44, 0.14), transparent 70%),
    radial-gradient(46% 52% at 82% 36%, rgba(240, 166, 42, 0.12), transparent 70%);
}
.closer-inner { position: relative; text-align: center; padding-bottom: 70px; }
.closer-inner h2 {
  margin: 26px 0 34px;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.closer-inner .cta { justify-content: center; }

/* store screenshots gallery */
.gallery {
  position: relative;
  overflow: hidden;
  padding: 10px 0 56px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: ticker-x 52s linear infinite;
}
.gallery-track img {
  width: 218px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.gallery-track img:hover { transform: translateY(-8px); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 30px 0; background: var(--bg); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 13.5px;
}
.footer .links { display: flex; gap: 20px; }
.footer .links a { color: var(--text-sec); font-size: 13.5px; }
.footer .links a:hover { color: var(--amber); }

/* ---------- reveal animation (only when JS is driving it) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
html.js .reveal.is-in { opacity: 1; transform: translateY(0); }

/* page-load stagger for hero copy */
.hero-copy > * { animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.34s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.44s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- legal pages (privacy / terms / data-deletion) ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 28px 90px;
}
.legal .back {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-sec);
  margin-bottom: 34px;
}
.legal .back:hover { color: var(--amber); }
.legal h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}
.legal .updated {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 0 0 36px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 42px 0 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.legal h3 { font-size: 16.5px; font-weight: 700; margin: 26px 0 8px; color: var(--amber); }
.legal p, .legal li { color: var(--text-sec); font-size: 15.5px; }
.legal strong { color: var(--text); }
.legal a { color: var(--text); border-bottom: 1px solid var(--border-bright); }
.legal a:hover { color: var(--amber); border-color: var(--amber); }
.legal ul { padding-left: 22px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { padding-top: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .cta { justify-content: center; }
  .feature-row,
  .feature-row.is-flipped { grid-template-columns: 1fr; gap: 36px; padding: 44px 0; }
  .feature-row.is-flipped .feature-copy { order: 1; }
  .feature-row.is-flipped .phone { order: 2; }
  .feature-row .phone,
  .feature-row.is-flipped .phone { justify-self: center; transform: rotate(0); }
  .steps { grid-template-columns: 1fr; }
  .chip-rec { left: -8px; }
  .chip-speed { right: -8px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .prompter-track,
  .ticker-track,
  .gallery-track,
  .grain,
  .rec-dot,
  .float-chip { animation: none !important; }
  .hero-copy > * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
