:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0f172a;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f8fafc;
  --muted: #a9b7c9;
  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --lime: #84cc16;
  --yellow: #facc15;
  --orange: #f97316;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #07111f 0%, #101827 48%, #111827 100%);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

#motion-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.language-switch select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  padding: 0 10px;
}

.language-switch select:focus {
  outline: 2px solid rgba(132, 204, 22, 0.6);
  outline-offset: 2px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 48px;
  padding: 54px 0 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  overflow: visible;
  font-size: clamp(48px, 7.8vw, 108px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: #d8e5f4;
  font-size: 21px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep) 55%, var(--lime));
  box-shadow: 0 18px 42px rgba(59, 130, 246, 0.35);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #d8e5f4;
}

.metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.metric-strip span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 14px;
}

.metric-strip strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(340px, 78vw);
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border: 9px solid #101827;
  border-radius: 44px;
  background: #eef1f6;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: rotate(3deg);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-frame-back {
  position: absolute;
  z-index: 1;
  width: min(280px, 62vw);
  right: -4%;
  top: 4%;
  transform: rotate(-8deg);
  opacity: 0.55;
  filter: saturate(0.9);
  animation: none;
}

.screen-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.orbit-badge {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.11);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  animation: badge-drift 5s ease-in-out infinite;
}

.badge-one {
  top: 18%;
  left: 2%;
}

.badge-two {
  right: 0;
  bottom: 22%;
  animation-delay: 1.2s;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.appstore-panel h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 780px;
}

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

.feature-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(132, 204, 22, 0.5);
  background:
    linear-gradient(160deg, rgba(59, 130, 246, 0.18), rgba(249, 115, 22, 0.08)),
    rgba(15, 23, 42, 0.88);
}

.feature-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--lime));
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.feature-icon.image-icon {
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.feature-icon.image-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  margin: 42px 0 12px;
  font-size: 24px;
}

.feature-card p,
.appstore-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.screens-track {
  display: flex;
  gap: 22px;
  padding: 12px 4px 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screens-track::-webkit-scrollbar {
  height: 8px;
}

.screens-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.screen-card {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
}

.screen-frame {
  width: min(236px, 62vw);
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border: 7px solid #101827;
  border-radius: 34px;
  background: #eef1f6;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screen-card:hover .screen-frame {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-card figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.appstore-button {
  gap: 10px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin-inline: auto;
}

.appstore-section .section-heading.compact {
  margin-inline: auto;
  text-align: center;
}

.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.store-card-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.store-card-head h3 {
  margin: 0;
  font-size: 24px;
}

.qr-frame {
  display: grid;
  place-items: center;
  width: 196px;
  height: 196px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

a.qr-frame:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4);
}

a.qr-frame:focus-visible {
  outline: 3px solid rgba(132, 204, 22, 0.7);
  outline-offset: 3px;
}

.qr-frame img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.qr-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 10px, rgba(255, 255, 255, 0.04) 10px 20px),
    rgba(255, 255, 255, 0.06);
  border: 1px dashed var(--line);
  box-shadow: none;
}

.soon-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.16);
  border: 1px solid rgba(250, 204, 21, 0.45);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.store-hint {
  margin: 0;
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.store-cta {
  margin-top: auto;
}

.store-cta.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

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

.sport-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sport-chip {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #eaf2ff;
  font-weight: 800;
}

.sport-chip img {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
}

.sport-chip span {
  color: #eaf2ff;
  font-weight: 900;
  text-align: center;
}

.appstore-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(132, 204, 22, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(132, 204, 22, 0.14)),
    rgba(15, 23, 42, 0.8);
  box-shadow: var(--shadow);
}

.link-stack {
  display: grid;
  gap: 10px;
}

.link-stack a {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 50px;
  border-top: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.legal-page {
  background: #f8fafc;
  color: #0f172a;
}

.legal-page .site-header,
.legal-page .site-footer {
  color: #0f172a;
}

.legal-page .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.12);
}

.legal-page .site-header nav a,
.legal-page .site-footer nav a {
  color: #475569;
}

.legal-page .language-switch {
  color: #475569;
}

.legal-page .language-switch select {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.18);
  color: #0f172a;
}

.legal-shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.legal-doc {
  padding: 38px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.legal-doc h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 1;
}

.legal-doc h2 {
  margin: 34px 0 10px;
  color: #0f172a;
  font-size: 24px;
}

.legal-doc p {
  color: #334155;
  font-size: 17px;
  line-height: 1.75;
}

.legal-doc a {
  color: #1d4ed8;
  font-weight: 800;
}

.legal-date {
  margin-bottom: 32px;
}

.legal-page .eyebrow {
  color: #2563eb;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.support-grid section {
  padding: 18px;
  border-radius: var(--radius);
  background: #f1f5f9;
}

.support-grid h2 {
  margin-top: 0;
}

.legal-footer {
  border-color: rgba(15, 23, 42, 0.12);
}

@keyframes phone-float {
  0%, 100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes badge-drift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    border-radius: 18px;
  }

  .site-header nav {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 26px;
  }

  .section-heading,
  .appstore-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    position: static;
    margin-top: 10px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .feature-grid,
  .sport-track,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .sport-chip {
    min-height: 104px;
  }

  .orbit-badge,
  .phone-frame-back {
    display: none;
  }

  .legal-doc {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  #motion-field {
    display: none;
  }
}
