:root {
  --bg: #07080d;
  --bg-soft: #0e1119;
  --panel: #151927;
  --panel-strong: #1d2335;
  --text: #f7f4ff;
  --muted: #b6b1c3;
  --subtle: #7d788c;
  --accent: #e85bd4;
  --accent-strong: #ff6684;
  --cyan: #77d9ff;
  --warm: #ffba72;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--accent);
  color: #07080d;
}

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

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

.site-header {
  position: fixed;
  top: 20px;
  left: clamp(16px, 4vw, 56px);
  right: clamp(16px, 4vw, 56px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 8, 13, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #07080d;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

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

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.language-option {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.language-option.is-active {
  background: var(--text);
  color: var(--bg);
}

.language-option:focus-visible,
.button:focus-visible,
.store-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(119, 217, 255, 0.7);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 142px clamp(20px, 6vw, 88px) 82px;
  background: #05060a;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #05060a;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("20260717-203508.png");
  background-size: cover;
  background-position: center top;
  opacity: 0.12;
  filter: blur(3px);
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.58);
}

.phone-shot {
  position: absolute;
  width: clamp(190px, 22vw, 330px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
  opacity: 0.92;
}

.shot-home {
  right: clamp(18px, 9vw, 150px);
  top: 70px;
  transform: rotate(3deg);
}

.shot-player {
  right: clamp(210px, 31vw, 520px);
  top: 145px;
  transform: rotate(-8deg);
  opacity: 0.72;
}

.shot-collect {
  right: clamp(-90px, -2vw, -10px);
  bottom: -180px;
  transform: rotate(8deg);
  opacity: 0.62;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.2rem, 7vw, 7rem);
  line-height: 0.86;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  width: min(100%, 610px);
  margin: 28px 0 0;
  color: #ddd8eb;
  font-size: clamp(1.08rem, 2.4vw, 1.42rem);
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #08070c;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 4vw, 34px);
  width: min(100%, 620px);
  margin: 46px 0 0;
}

.hero-metrics div {
  min-width: 0;
  padding-left: 16px;
  border-left: 2px solid var(--accent-strong);
}

.hero-metrics dt {
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 88px);
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.intro-section {
  background: var(--bg);
}

.intro-grid,
.genre-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.44rem);
}

.feature-section {
  background: var(--bg-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr);
  margin-bottom: 34px;
}

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

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  object-position: center top;
}

.feature-copy {
  padding: 22px;
}

.feature-number {
  margin: 0 0 16px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.feature-copy p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.genre-section {
  background: #090b11;
}

.genre-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.genre-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 850;
}

.download-section {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  place-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 88px);
  background: #05060a;
}

.download-media {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.download-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
}

.download-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.72);
}

.download-content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  text-align: center;
}

.download-content p:not(.section-kicker) {
  width: min(100%, 560px);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.store-button {
  min-width: 154px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--text);
  color: var(--bg);
}

.store-button + .store-button {
  background: transparent;
  color: var(--text);
}

.store-button-muted {
  color: var(--muted) !important;
  pointer-events: none;
}

.faq-section {
  background: var(--bg-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--text);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 0 22px;
}

.site-footer {
  padding: 36px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: #06070b;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 1180px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

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

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-around;
  }

  .hero {
    min-height: 88svh;
    padding-top: 176px;
  }

  .phone-shot {
    width: clamp(170px, 38vw, 290px);
  }

  .shot-home {
    right: -18px;
    top: 126px;
  }

  .shot-player {
    right: 30vw;
    top: 255px;
  }

  .shot-collect {
    display: none;
  }

  .hero-inner {
    width: min(100%, 610px);
  }

  .hero-copy {
    width: min(100%, 520px);
  }

  .intro-grid,
  .genre-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

  .feature-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.44fr) minmax(0, 0.56fr);
  }

  .feature-card img {
    height: 100%;
    min-height: 330px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    gap: 10px;
    padding: 10px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .language-option {
    min-width: 34px;
  }

  .site-nav {
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 90svh;
    padding: 184px 18px 58px;
  }

  .hero-media::before {
    opacity: 0.16;
  }

  .hero-overlay {
    background: rgba(5, 6, 10, 0.68);
  }

  .shot-home {
    width: 190px;
    right: -40px;
    top: 154px;
  }

  .shot-player {
    width: 170px;
    right: 116px;
    top: 264px;
    opacity: 0.48;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 1.03rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .section {
    padding: 64px 18px;
  }

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

  .feature-card img {
    height: 420px;
    min-height: 0;
  }

  .genre-list {
    grid-template-columns: 1fr;
  }

  .download-section {
    min-height: 560px;
    padding: 70px 18px;
  }
}

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