:root {
  --bg: #070708;
  --panel: #15161b;
  --panel-2: #1b1d23;
  --text: #f4f4f6;
  --muted: #a3a6b3;
  --accent: #f2a247;
  --accent-soft: rgba(242, 162, 71, 0.2);
  --blue: #4492ff;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 22px;
  --shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 85% 5%, rgba(68, 146, 255, 0.16), transparent 24%),
    radial-gradient(circle at 20% 8%, rgba(242, 162, 71, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.45;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 7, 8, 0.7);
  border-bottom: 1px solid var(--line);
  padding-top: var(--safe-top);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  filter: drop-shadow(0 0 6px rgba(68, 146, 255, 0.45));
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.store-link:hover {
  color: var(--text);
}

.store-link:focus-visible,
.btn:focus-visible,
.footer-link:focus-visible,
.legal-card a:focus-visible {
  outline: 2px solid #ffd7a8;
  outline-offset: 3px;
  border-radius: 10px;
}

.hero {
  position: relative;
  padding: 4.5rem 0 calc(2.4rem + var(--safe-bottom) * 0.25);
  overflow: clip;
}

.bg-glow {
  position: absolute;
  inset: auto -10% 15% auto;
  width: min(700px, 80vw);
  height: 700px;
  background: radial-gradient(circle, rgba(242, 162, 71, 0.23), transparent 58%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}

.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.lead {
  color: var(--muted);
  max-width: 55ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(145deg, #f7b96d, var(--accent));
  color: #1f1307;
  box-shadow: 0 10px 28px rgba(242, 162, 71, 0.38);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
}

.trust-list {
  margin: 1.15rem 0 0;
  padding-left: 1.1rem;
  color: #c7cad6;
}

.trust-list li + li {
  margin-top: 0.3rem;
}

.phone-shell {
  width: min(340px, 88vw);
  margin: 0 auto;
  border-radius: 42px;
  background: linear-gradient(180deg, #12141a, #0d0e11 65%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  box-shadow: var(--shadow);
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 30px;
}

.metrics {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card,
.feature-card,
.step-card,
.proof-card,
.screen-card,
.cta,
.who-for,
.faq-item {
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(36, 38, 46, 0.95), rgba(24, 25, 31, 0.95));
  border: 1px solid var(--line);
}

.metric-card {
  padding: 1.2rem;
}

.metric-label {
  color: var(--blue);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 0.35rem;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 750;
  margin-bottom: 0.35rem;
}

.metric-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.how-it-works,
.features,
.screens,
.proof,
.faq,
.cta {
  margin-top: 4rem;
}

.steps-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 1.2rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(68, 146, 255, 0.2);
  color: #9bc4ff;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.step-card h3 {
  margin-bottom: 0.45rem;
}

.step-card p {
  color: var(--muted);
}

.who-for {
  margin-top: 1.3rem;
  padding: 1rem 1.2rem;
}

.who-title {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.who-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.who-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  color: #d9dde8;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
}

.section-head h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
}

.feature-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 1.2rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--muted);
}

.screen-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.screen-card {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
}

.screen-card img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.proof {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  padding: 1.2rem;
}

.proof-card h3 {
  margin-bottom: 0.45rem;
}

.proof-card p {
  color: var(--muted);
}

.cta {
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.cta p {
  max-width: 60ch;
  margin: 0.7rem auto 1.2rem;
  color: var(--muted);
}

.cta-link {
  margin-top: 0.7rem;
}

.faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

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

.faq-item p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 calc(2.2rem + var(--safe-bottom));
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1020px) {
  .hero-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 2.4rem;
    padding-bottom: calc(1.8rem + var(--safe-bottom));
  }

  .feature-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .site-header .wrap {
    padding: 0.72rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .cta {
    margin-bottom: calc(1rem + var(--safe-bottom));
  }

  .btn {
    width: 100%;
  }

  .top-nav {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 0.35rem;
    column-gap: 0.75rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--text);
}

.legal-page {
  padding-top: 2rem;
  padding-bottom: calc(2rem + var(--safe-bottom));
}

.legal-card {
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(36, 38, 46, 0.95), rgba(24, 25, 31, 0.95));
  border: 1px solid var(--line);
  padding: clamp(1.1rem, 2.5vw, 2rem);
}

.legal-card h1 {
  margin-bottom: 0.5rem;
  max-width: none;
}

.legal-card h2 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
}

.legal-card p,
.legal-card li {
  color: #d0d3dd;
}

.legal-muted {
  color: var(--muted);
}

.legal-card a {
  color: #ffd1a0;
}

.legal-card a:hover {
  color: #ffe2c4;
}

.release-entry + .release-entry {
  margin-top: 1.2rem;
}

.release-date {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 680px) {
  .top-nav {
    gap: 0.6rem;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1020px) {
  .steps-grid,
  .proof {
    grid-template-columns: 1fr;
  }
}
