:root {
  --bg: #07080a;
  --bg-2: #0c1016;
  --panel: #12161f;
  --panel-2: #171c27;
  --ink: #f4f5f7;
  --ink-2: #9aa3b2;
  --ink-3: #6b7382;
  --hair: rgba(255, 255, 255, 0.08);
  --signal: #1ee87a;
  --signal-soft: rgba(30, 232, 122, 0.14);
  --signal-ink: #042012;
  --gold: #f5c451;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --max: 1120px;
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 70% 12%, rgba(30, 232, 122, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(185, 215, 255, 0.05), transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 20%, transparent 75%);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* —— Nav —— */
.nav-shell {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(100% - 24px, 920px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hair);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  position: relative;
}

.nav-toggle i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle i:first-child {
  margin-bottom: 5px;
}

.nav-toggle.is-open i:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle.is-open i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-store {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-store:hover {
  background: #151515;
}

.btn-signal {
  background: var(--signal);
  color: var(--signal-ink);
}

.btn-signal:hover {
  filter: brightness(1.05);
}

.btn .chip {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  transition: transform 0.4s var(--ease);
}

.btn.group:hover .chip {
  transform: translate(2px, -1px) scale(1.05);
}

.btn-signal .chip {
  background: rgba(4, 32, 18, 0.15);
}

/* —— Hero —— */
.hero {
  position: relative;
  z-index: 1;
  padding: 132px 0 64px;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--signal-soft);
  color: var(--signal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px var(--signal);
}

.hero h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 .accent {
  color: var(--signal);
}

.lede {
  color: var(--ink-2);
  font-size: 1.05rem;
  max-width: 36ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.trust {
  color: var(--ink-3);
  font-size: 0.9rem;
}

/* —— Phone mockup (tight — no empty glass plate) —— */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  justify-self: end;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 232, 122, 0.2), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.phone {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19.4;
  border-radius: 36px;
  padding: 8px;
  background: #0e1116;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.phone-btn {
  position: absolute;
  background: #1c2028;
  border-radius: 2px;
  z-index: 2;
}

.phone-btn-silent {
  left: -2px;
  top: 96px;
  width: 2px;
  height: 24px;
}

.phone-btn-vol-up {
  left: -2px;
  top: 140px;
  width: 2px;
  height: 44px;
}

.phone-btn-vol-down {
  left: -2px;
  top: 192px;
  width: 2px;
  height: 44px;
}

.phone-btn-power {
  right: -2px;
  top: 168px;
  width: 2px;
  height: 64px;
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  background: #080c12;
  overflow: hidden;
  position: relative;
}

.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* —— Sections —— */
section {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-shell {
  padding: 6px;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hair);
}

.step {
  height: 100%;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--signal-soft);
  color: var(--signal);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.step p {
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* —— Reviews —— */
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 14px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel-2);
  border: 1px solid var(--hair);
}

.review .stars {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.review blockquote {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--signal-soft);
  color: var(--signal);
  font-size: 11px;
  font-weight: 700;
}

.who strong {
  display: block;
  font-size: 0.92rem;
}

.who span {
  color: var(--ink-3);
  font-size: 0.8rem;
}

/* —— FAQ —— */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq details {
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--hair);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "▾";
  color: var(--ink-3);
  transition: transform 0.35s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq details p {
  padding: 0 20px 18px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* —— CTA band —— */
.cta-band {
  padding-bottom: 40px;
}

.cta-panel {
  padding: 48px 40px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(30, 232, 122, 0.16), transparent 55%),
    var(--panel);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-panel h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.cta-panel p {
  color: var(--ink-2);
  max-width: 42ch;
}

/* —— Footer —— */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 40px 0 56px;
  border-top: 1px solid var(--hair);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.footer-brand .brand {
  margin-bottom: 4px;
}

.footer-brand p {
  color: var(--ink-3);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 500;
  max-width: 520px;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: var(--signal);
}

.footer-note {
  margin-top: 28px;
  color: var(--ink-3);
  font-size: 0.82rem;
}

/* —— Legal —— */
/* —— Product shots —— */
.shot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: end;
}

.shot-card {
  margin: 0;
  text-align: center;
}

.shot-card img {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  border-radius: 28px;
  border: 1px solid var(--hair);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #0a0c10;
}

.shot-card figcaption {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--ink-3);
  font-weight: 500;
}

.legal-page {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--ink-3);
  margin-bottom: 36px;
}

.legal-body {
  max-width: 720px;
  display: grid;
  gap: 18px;
  color: var(--ink-2);
  font-size: 1.02rem;
}

.legal-body h2 {
  color: var(--ink);
  font-size: 1.15rem;
  margin-top: 12px;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", sans-serif;
}

.legal-body h3 {
  color: var(--ink);
  font-size: 1rem;
  margin-top: 4px;
  letter-spacing: -0.02em;
}

.legal-body ol {
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
}

.legal-body ul {
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
}

.legal-body a {
  color: var(--signal);
}

.legal-footer-links {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-3);
}

.legal-footer-links a:hover {
  color: var(--signal);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Keep product shot sharp — blur looks soft on screenshots */
.phone-stage.reveal {
  filter: none;
  transform: translateY(20px);
}

.phone-stage.reveal.in {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .phone,
  .phone-shot,
  .reveal {
    animation: none !important;
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10, 12, 16, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid var(--hair);
    gap: 14px;
  }

  .nav-shell {
    top: 12px;
  }

  .nav {
    padding: 8px 10px 8px 14px;
  }

  .hero {
    /* Clear fixed pill nav + safe area so eyebrow never sits under it */
    padding: max(148px, calc(env(safe-area-inset-top, 0px) + 120px)) 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-copy {
    order: 0;
  }

  .eyebrow {
    margin-inline: auto;
    margin-top: 4px;
  }

  .lede {
    font-size: 1rem;
    max-width: 34ch;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
  }

  .steps,
  .reviews,
  .shot-row {
    grid-template-columns: 1fr;
  }

  .shot-card img {
    max-width: 260px;
  }

  /* Phone below copy — not alone above the fold */
  .phone-stage {
    order: 1;
    justify-self: center;
    max-width: 220px;
    margin-top: 4px;
  }

  .phone {
    max-width: 220px;
    animation: float-m 6s ease-in-out infinite;
  }

  .phone-btn {
    display: none;
  }

  @keyframes float-m {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  .cta-panel {
    padding: 32px 24px;
  }

  section {
    padding: 64px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
