:root {
  --bg: #05070c;
  --bg-elev: #0c1220;
  --navy: #0b2744;
  --gold: #fbc02d;
  --gold-2: #ffd54f;
  --text: #f4f6fb;
  --muted: #9aa6b8;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --font: "Nunito", "SF Pro Rounded", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter",
    system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 12, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: 42px;
  border-radius: 11px;
  object-fit: cover;
}

.nav-links {
  display: none;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.nav-cta {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
}

.btn-primary {
  background: var(--gold);
  color: #14110a;
  box-shadow: 0 8px 24px rgba(251, 192, 45, 0.28);
}

.btn-primary:hover {
  background: var(--gold-2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 12px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.glow-gold {
  width: 320px;
  height: 320px;
  background: rgba(251, 192, 45, 0.18);
  top: -80px;
  left: -40px;
}

.glow-blue {
  width: 420px;
  height: 420px;
  background: rgba(24, 80, 140, 0.35);
  right: -80px;
  top: 80px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy {
  order: 1;
}

.hero-phones {
  order: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 8px;
  min-width: 0;
}

.hero-phones img {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1,
h2 {
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.05rem, 7vw, 3.6rem);
  max-width: 16ch;
}

h1 .rotator {
  color: var(--gold);
  display: inline-block;
  min-width: 5.2ch;
  transition: opacity 0.2s ease;
}

h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.55rem);
  max-width: 18ch;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  margin: 0 0 18px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.proof-row strong {
  color: var(--text);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4b5568;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 16px 8px 12px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  text-decoration: none;
  min-width: 188px;
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 800;
  font-size: 1.05rem;
}

.store-badge small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.8;
  text-transform: uppercase;
}

.store-badge:hover {
  border-color: var(--gold);
}

.micro {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 12px 0 0;
}

.outcomes {
  margin-top: 72px;
  border-block: 1px solid var(--line);
  background: rgba(12, 18, 32, 0.7);
}

.outcomes-grid {
  display: grid;
  gap: 18px;
  padding: 22px 0;
}

.outcomes-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

.outcomes-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 72px 0;
}

.feature-grid,
.review-grid,
.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
}

.card,
.steps li,
.reviews blockquote {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3,
.steps h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.card p,
.steps p,
.reviews p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  padding: 48px 0 48px;
}

.gallery h2 {
  margin-bottom: 8px;
}

.gallery-scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding: 20px max(16px, calc((100% - 1120px) / 2));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  cursor: grab;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-scroll figure {
  margin: 0;
  flex: 0 0 180px;
  width: 180px;
}

.gallery-scroll img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.gallery-scroll figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 8px;
}

.steps {
  list-style: none;
}

.steps span {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
}

.reviews blockquote {
  margin: 0;
}

.reviews footer {
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.final-cta {
  padding: 20px 0 96px;
}

.final-inner {
  background: #0b1a2e;
  border: 1px solid rgba(251, 192, 45, 0.25);
  border-radius: 28px;
  padding: 36px 22px;
  text-align: center;
}

.final-inner h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.final-inner p {
  color: var(--muted);
  margin: 0 0 22px;
}

.final-inner .store-row {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 36px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: var(--muted);
}

.mobile-cta,
.mobile-cta .btn {
  display: none !important;
}

.legal {
  padding: 40px 0 96px;
  color: var(--muted);
  max-width: 760px;
}

.legal h1 {
  max-width: none;
  font-size: 2rem;
  color: var(--text);
}

.legal h2 {
  max-width: none;
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--text);
}

.legal h3 {
  color: var(--text);
  font-size: 1.02rem;
  margin: 18px 0 8px;
}

.legal ul,
.legal ol {
  padding-left: 1.2rem;
}

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

@media (min-width: 760px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-phones {
    flex: 1 1 50%;
    min-width: 0;
  }

  .gallery-scroll figure {
    flex-basis: 210px;
    width: 210px;
  }

  .outcomes-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-copy {
    padding-top: 12px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-cta {
    display: none;
  }

  .final-cta {
    padding-bottom: 72px;
  }
}

@media (min-width: 1100px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-grid blockquote:last-child {
    grid-column: span 1;
  }
}

.download-body {
  min-height: 100vh;
}

.invite-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0 80px;
}

.invite-card {
  width: min(560px, 100%);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
}

.invite-card h1 {
  max-width: none;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.invite-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.invite-message {
  color: #fff !important;
  font-weight: 800;
  font-size: clamp(1.15rem, 3.4vw, 1.45rem);
  line-height: 1.4;
  margin: 0 0 28px;
}

.invite-card .download-buttons {
  margin-inline: auto;
}

.download-main {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px 64px;
}

.download-main h1 {
  max-width: none;
  font-size: clamp(2.6rem, 10vw, 4.5rem);
  margin-bottom: 8px;
}

.download-main p {
  color: var(--muted);
  margin: 0 0 28px;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(320px, 100%);
}

.store-badge-lg {
  min-height: 72px;
  min-width: 100%;
  justify-content: center;
  font-size: 1.2rem;
}

.store-badge-lg svg {
  width: 36px;
  height: 36px;
}

@media (min-width: 520px) {
  .download-buttons {
    flex-direction: row;
    width: auto;
  }

  .store-badge-lg {
    min-width: 240px;
  }
}

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