:root {
  --bg: #050711;
  --panel: rgba(13, 17, 31, 0.84);
  --text: #f2f6ff;
  --muted: #a7b2c7;
  --line: rgba(255,255,255,0.12);
  --cyan: #63e6ff;
  --violet: #9c7bff;
  --pink: #ff78c7;
  --yellow: #ffdc72;
}

* { 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", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(99,230,255,0.18), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(156,123,255,0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255,120,199,0.12), transparent 34%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 20;
}

.product-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,7,17,0.62);
  backdrop-filter: blur(18px);
}

.brand-link,
.product-header a {
  color: var(--text);
  text-decoration: none;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 28px;
  font-weight: 850;
}

.brand-link img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(99,230,255,0.2));
}

.product-header nav {
  display: flex;
  gap: 32px;
}

.product-header nav a {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.lang-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}

.lang-toggle span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.lang-toggle .active {
  color: #061017;
  background: var(--cyan);
}

.hero {
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  padding: 150px clamp(20px, 5vw, 72px) 82px;
}

.hero-copy {
  max-width: 820px;
}

.product-mark {
  width: 102px;
  height: 102px;
  margin-bottom: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(156,123,255,0.38));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.88;
}

.lead {
  max-width: 730px;
  color: rgba(242,246,255,0.82);
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #061017;
  background: var(--cyan);
  box-shadow: 0 0 36px rgba(99,230,255,0.24);
}

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

.hero-stage {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(99,230,255,0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,120,199,0.16), transparent 34%),
    rgba(13,17,31,0.7);
  box-shadow: 0 36px 90px rgba(0,0,0,0.34);
  overflow: hidden;
}

.hero-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--line);
}

.stats-strip div {
  padding: 20px;
  background: rgba(13,17,31,0.82);
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  margin-bottom: 7px;
  font-size: 20px;
}

.stats-strip span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 100px clamp(20px, 5vw, 72px);
}

.section-title {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-title h2,
.muse-card h2,
.download-card h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 0.98;
}

.section-title p:not(.eyebrow),
.muse-card p,
.download-card p {
  color: rgba(242,246,255,0.72);
  font-size: 17px;
  line-height: 1.7;
}

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

.gallery figure {
  margin: 0;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 24px;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.gallery .wide {
  grid-column: span 2;
}

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.muse-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.042));
}

.muse-card,
.download-card {
  border: 1px solid rgba(99,230,255,0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(156,123,255,0.17), transparent 32%),
    radial-gradient(circle at bottom left, rgba(99,230,255,0.14), transparent 34%),
    rgba(13,17,31,0.82);
}

.muse-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 62px);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mode-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
}

.mode-grid span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.mode-grid h3 {
  margin: 36px 0 12px;
  font-size: 22px;
}

.mode-grid p {
  font-size: 14px;
}

.download-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
}

.download-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px 24px 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(242,246,255,0.54);
  text-align: center;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.home-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(99,230,255,0.4);
  border-radius: 999px;
  color: #061017;
  background: var(--cyan);
  box-shadow: 0 0 34px rgba(99,230,255,0.2);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .product-header nav {
    display: none;
  }

  .hero,
  .download-card {
    grid-template-columns: 1fr;
  }

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

  .gallery,
  .mode-grid {
    grid-template-columns: 1fr;
  }

  .gallery .wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .product-header {
    padding: 14px 16px;
  }

  .brand-link img {
    width: 64px;
    height: 64px;
  }

  .brand-link {
    font-size: 22px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
  }

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