:root {
  --bg: #080808;
  --bg-soft: #0e0e10;
  --card: #121214;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f4f2;
  --muted: #9b9b96;
  --lime: #d4f53c;
  --teal: #3cf5b0;
  --radius: 20px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: #080808; }

h1, h2, h3, .display { font-family: var(--font-display); }

a { color: inherit; text-decoration: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0));
  backdrop-filter: blur(2px);
}
.nav .logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { height: 30px; width: 30px; border-radius: 8px; display: block; }
.logo .dot { color: var(--lime); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: var(--lime);
  color: #080808;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(212, 245, 60, 0.35); }
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn.ghost:hover { box-shadow: none; border-color: rgba(255, 255, 255, 0.3); }
.nav .btn { padding: 10px 20px; font-size: 0.8rem; }

@media (max-width: 760px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- scrub sections ---------- */
.scrub {
  position: relative;
  height: 520vh;
}
.scrub .stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scrub canvas {
  position: absolute;
  inset: 0;
  display: block;
}
.scrub .overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
  padding: 0 6vw;
}
.scrub .overlay > div {
  grid-area: 1 / 1;
  opacity: 0;
  will-change: opacity, transform;
}
.scrub .stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(8, 8, 8, 0.55) 100%);
  pointer-events: none;
}
.scrub .overlay { z-index: 2; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.kicker.teal { color: var(--teal); }

.overlay h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}
.overlay h2 {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}
.overlay p {
  margin-top: 20px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(244, 244, 242, 0.85);
  max-width: 560px;
  margin-inline: auto;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9);
}
.overlay .accent { color: var(--lime); }
.overlay .accent-teal { color: var(--teal); }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- generic sections ---------- */
section.block { padding: 130px 6vw; position: relative; }
.wrap { max-width: 1180px; margin: 0 auto; }

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 14px;
}
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* marquee */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-soft);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track .lime { color: var(--lime); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* features */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.35s, border-color 0.35s, background 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 245, 60, 0.35);
  background: #16161a;
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: rgba(212, 245, 60, 0.12);
  margin-bottom: 22px;
}
.card:nth-child(even) .icon { background: rgba(60, 245, 176, 0.12); }
.card h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* screens strip */
.screens-strip {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 30px 6vw 56px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.screens-strip::-webkit-scrollbar { display: none; }
.phone {
  flex: 0 0 250px;
  scroll-snap-align: center;
  margin: 0;
}
.phone:nth-child(even) { transform: translateY(26px); }
.phone img {
  display: block;
  width: 100%;
  border-radius: 34px;
  border: 7px solid #1c1c20;
  outline: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 50px rgba(212, 245, 60, 0.05);
}
.phone figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* how it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(212, 245, 60, 0.05), transparent 45%), var(--card);
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--lime);
  opacity: 0.9;
}
.step:nth-child(even) .num { color: var(--teal); }
.step h3 { margin: 16px 0 10px; font-size: 1.12rem; }
.step p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

/* stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  text-align: center;
}
.stat .value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--lime), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.plan {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 42px 36px;
  background: var(--card);
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border-color: rgba(212, 245, 60, 0.5);
  background: linear-gradient(165deg, rgba(212, 245, 60, 0.08), rgba(60, 245, 176, 0.04) 60%), var(--card);
  box-shadow: 0 30px 80px rgba(212, 245, 60, 0.08);
}
.plan .tag {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  margin-bottom: 22px;
}
.plan.featured .tag { border-color: var(--lime); color: var(--lime); }
.plan h3 { font-size: 1.4rem; }
.plan .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin: 18px 0 4px;
}
.plan .price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan .note { color: var(--muted); font-size: 0.85rem; margin-bottom: 26px; }
.plan ul { list-style: none; margin-bottom: 32px; flex: 1; }
.plan li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: rgba(244, 244, 242, 0.85);
  font-size: 0.94rem;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.plan.free li::before { color: var(--teal); }
.fineprint { margin-top: 28px; color: var(--muted); font-size: 0.8rem; line-height: 1.6; max-width: 760px; }

/* faq */
.faq-list { max-width: 820px; }
details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--lime);
  transition: transform 0.3s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 16px; color: var(--muted); line-height: 1.7; font-size: 0.97rem; }

/* cta + footer */
.cta {
  text-align: center;
  padding: 160px 6vw;
  background:
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(212, 245, 60, 0.16), transparent),
    radial-gradient(ellipse 40% 40% at 80% 0%, rgba(60, 245, 176, 0.07), transparent),
    var(--bg);
}
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; line-height: 1.06; }
.cta p { color: var(--muted); margin: 22px auto 40px; max-width: 540px; font-size: 1.05rem; }
.store-badges { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.badge:hover { border-color: rgba(212, 245, 60, 0.5); transform: translateY(-3px); }
.badge .mark { font-size: 1.8rem; }
.badge .small { display: block; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.badge .big { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.badge .soon {
  font-size: 0.62rem;
  background: rgba(212, 245, 60, 0.15);
  color: var(--lime);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid var(--line);
  padding: 56px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
}
footer .links { display: flex; gap: 24px; flex-wrap: wrap; }
footer a:hover { color: var(--text); }
footer .disclaimer {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.85;
}

/* ---------- legal & support pages ---------- */
.page { padding: 150px 6vw 90px; }
.page .wrap { max-width: 820px; }
.page h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
}
.page .effective {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 16px 0 44px;
}
.page h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 46px 0 14px;
}
.page p {
  color: rgba(244, 244, 242, 0.82);
  line-height: 1.75;
  font-size: 0.97rem;
  margin: 0 0 16px;
}
.page ul {
  margin: 0 0 16px;
  padding-left: 24px;
  color: rgba(244, 244, 242, 0.82);
  line-height: 1.75;
  font-size: 0.97rem;
}
.page li { margin-bottom: 10px; }
.page li::marker { color: var(--lime); }
.page strong { color: var(--text); }
.page a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.page a:hover { color: var(--teal); }
.page hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.support-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 10px;
  padding: 16px 28px;
  border-radius: 16px;
  background: rgba(212, 245, 60, 0.1);
  border: 1px solid rgba(212, 245, 60, 0.4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--lime) !important;
  text-decoration: none !important;
}
.support-email:hover { background: rgba(212, 245, 60, 0.18); color: var(--lime) !important; }

/* inline links inside FAQ answers */
details p a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}
details p a:hover { color: var(--teal); }

/* notify modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal {
  position: relative;
  width: min(480px, 100%);
  background: var(--card);
  border: 1px solid rgba(212, 245, 60, 0.35);
  border-radius: 24px;
  padding: 44px 38px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 245, 60, 0.07);
}
.modal h3 {
  font-size: clamp(1.5rem, 3.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
.modal p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { color: var(--text); }
#notify-form { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
#notify-email {
  flex: 1 1 200px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
#notify-email:focus { border-color: rgba(212, 245, 60, 0.6); }
.notify-error { color: #f57a6a; margin-top: 14px; font-size: 0.85rem; }
