:root {
  color-scheme: dark;
  --background: #08070d;
  --background-raised: #111019;
  --surface: #17151f;
  --surface-high: #272231;
  --text: #fbf7ff;
  --muted: #bdb4c9;
  --soft: #8f879d;
  --accent: #8d4dff;
  --accent-strong: #a971ff;
  --green: #8ccf9f;
  --amber: #e1b06a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  background: rgba(8, 7, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.nav-links,
.footer-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.nav-links a,
.footer-links a,
.contact-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 28px 72px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 7, 13, 0.94) 0%, rgba(8, 7, 13, 0.72) 43%, rgba(8, 7, 13, 0.36) 100%),
    linear-gradient(0deg, rgba(8, 7, 13, 0.98) 0%, rgba(8, 7, 13, 0.16) 48%, rgba(8, 7, 13, 0.62) 100%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 76px;
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.hero-copy,
.section-grid p,
.feature-panel p,
.mix-card p,
.site-footer p,
.cookie-banner p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  font-size: 18px;
}

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

.store-button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  border: 1px solid var(--line);
}

.store-button.primary {
  background: #24202f;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.store-button.web img {
  border-radius: 0;
}

.store-button strong,
.store-button small {
  display: block;
}

.store-button small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.68;
  font-weight: 800;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
}

.intro-band {
  max-width: none;
  background: #0c1110;
}

.section-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.mix-card {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 24px 70px var(--shadow);
}

.mix-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.mix-card div {
  padding: 18px;
}

.feature-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  background: #101018;
}

.feature-panel,
.feature-list {
  width: min(100%, 560px);
}

.feature-panel {
  justify-self: end;
}

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

.feature-list span,
.platform-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px 16px;
}

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

.platform-row {
  min-height: 126px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.platform-row img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.platform-row span {
  color: var(--muted);
  font-weight: 800;
}

.platform-row strong {
  font-size: 18px;
}

.platform-row.active {
  background: rgba(140, 207, 159, 0.12);
  border-color: rgba(140, 207, 159, 0.35);
}

.platform-row.platform-android {
  background: rgba(39, 34, 49, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
}

.platform-row.platform-web {
  background: linear-gradient(135deg, rgba(246, 237, 255, 0.16), rgba(201, 255, 224, 0.2));
  border-color: rgba(201, 255, 224, 0.36);
}

.platform-row.coming-soon {
  cursor: pointer;
}

.platform-row.coming-soon:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.contact-links {
  justify-content: flex-end;
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.055);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
  background: #07060b;
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 840px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 16, 25, 0.96);
  box-shadow: 0 20px 70px var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-banner button {
  min-width: 112px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--accent-strong);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.cookie-banner button.secondary-action {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 96px 20px 56px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 30px;
  }

  .section,
  .intro-band,
  .feature-band {
    padding: 56px 20px;
  }

  .section-grid,
  .feature-band,
  .mix-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    justify-self: stretch;
  }

  .feature-list {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-band,
  .site-footer,
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .store-button {
    width: 100%;
  }

  .mix-card {
    min-height: 0;
  }

  .mix-card img {
    height: 230px;
  }
}
