:root {
  --bg: #0e141a;
  --bg-soft: #17222d;
  --surface: rgba(19, 28, 36, 0.84);
  --surface-strong: #1d2a36;
  --text: #f5f8fa;
  --muted: #a6b7c6;
  --line: rgba(167, 186, 201, 0.22);
  --accent: #ff9358;
  --accent-2: #46d4ca;
  --highlight: #ffd66d;
  --max-width: 1140px;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0a0f14;
  overscroll-behavior: none;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% -10%, #244458 0%, transparent 40%),
    radial-gradient(circle at 92% 10%, #4a2b22 0%, transparent 34%),
    linear-gradient(140deg, #0a0f14, #111c25 48%, #0d161d);
  background-color: #0a0f14;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

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

a {
  color: inherit;
}

.background-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: drift 16s ease-in-out infinite;
}

.blob-a {
  width: 42vw;
  height: 42vw;
  top: -16vw;
  left: -8vw;
  background: #3a7f9e;
}

.blob-b {
  width: 38vw;
  height: 38vw;
  right: -12vw;
  top: 16vh;
  background: #a1532f;
  animation-delay: 4s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
  opacity: 0.22;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(2.5vw, -3vh) scale(1.08);
  }
}

.topbar {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  background: rgba(10, 15, 20, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
  font-family: "Outfit", "Arial Black", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

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

.section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.35rem;
}

.alt {
  background: linear-gradient(178deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 76vh;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Outfit", sans-serif;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.22rem;
}

.lead {
  margin: 1.1rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.btn-primary {
  background: linear-gradient(140deg, var(--accent), var(--highlight));
  color: #30190f;
  box-shadow: 0 10px 32px rgba(255, 147, 88, 0.4);
}

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

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  width: 200px;
  height: 60px;
  transition: transform 0.2s ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
}

.store-badge {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.store-badge--google {
  transform: scale(1.48);
  transform-origin: center;
}

@media (max-width: 760px) {
  .store-badge-link {
    width: 180px;
    height: 54px;
  }

  .store-badge--google {
    transform: scale(1.45);
  }
}

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

.hero-stats {
  margin: 1.6rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-stats li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.8rem;
  min-height: 7rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.03rem;
  font-family: "Outfit", sans-serif;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.watch-shell {
  width: min(84vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1.2rem;
  background: radial-gradient(circle at 35% 24%, #324756, #0d151d 64%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  animation: float-watch 5s ease-in-out infinite;
}

.watch-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes float-watch {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-card {
  position: absolute;
  bottom: 8%;
  left: 0;
  max-width: 230px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 15, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.floating-card p {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  margin-top: 0.35rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--surface);
}

.feature-card p {
  margin: 0.72rem 0 0;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.steps span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #2e1208;
  background: linear-gradient(145deg, var(--accent), var(--highlight));
}

.steps p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

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

.gallery figure {
  margin: 0;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 11px;
}

.gallery figcaption {
  margin-top: 0.52rem;
  text-align: center;
  font-size: 0.83rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.cta {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  margin-top: 1.1rem;
  margin-bottom: 3.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(7, 11, 15, 0.66));
}

.cta p {
  color: var(--muted);
  margin: 1rem 0 0;
}

.cta .hero-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.site-footer {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.1rem 1.35rem 1.1rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.legal-page,
.error-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.panel {
  width: min(760px, 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.6rem;
}

.panel h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  margin: 0.6rem 0 0;
}

.panel .actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3.5rem;
  }

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

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

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

@media (max-width: 760px) {
  .topbar {
    top: 0;
    margin: 0;
    border-radius: 0;
    width: 100%;
    border-left: none;
    border-right: none;
  }

  .nav {
    display: none;
  }

  .section {
    width: auto;
    margin-left: 0.85rem;
    margin-right: 0.85rem;
    padding: 3.6rem 0.95rem;
  }

  .site-footer {
    width: auto;
    margin-left: 0.85rem;
    margin-right: 0.85rem;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

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

  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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