:root {
  --ink: #f8fbff;
  --muted: rgba(248, 251, 255, 0.74);
  --line: rgba(255, 255, 255, 0.36);
  --shadow: 0 28px 90px rgba(53, 59, 151, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(145deg, rgba(149, 204, 255, 0.88), rgba(141, 124, 238, 0.94) 48%, rgba(68, 43, 170, 0.98)),
    #91a8f7;
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px clamp(18px, 5vw, 72px) clamp(44px, 6vw, 74px);
}

.hero::before {
  position: absolute;
  width: 50vw;
  height: 50vw;
  right: -20vw;
  top: -20vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(219, 248, 255, 0.66), transparent 64%);
  content: "";
  pointer-events: none;
}

.topbar,
.hero-grid,
.stats,
.content-section,
.gameplay-preview,
.download,
footer {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin-inline: auto;
}

.topbar,
.nav-actions,
.brand,
.language-switch {
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: space-between;
  gap: 18px;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(44, 32, 110, 0.28);
}

.nav-actions {
  gap: 10px;
}

.nav-link,
.language-switch,
.button,
.feature-grid article,
.stats article,
.download,
.policy-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.09));
  backdrop-filter: blur(22px);
}

.nav-link {
  border-radius: 999px;
  padding: 11px 17px;
  text-decoration: none;
  font-weight: 800;
}

.language-switch {
  gap: 4px;
  border-radius: 999px;
  padding: 4px;
}

.lang-option {
  min-width: 40px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.lang-option.active {
  color: #5964cf;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  padding-top: clamp(34px, 6vw, 70px);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.38);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.8vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead,
.content-section p,
.download p,
.policy-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.15rem);
  line-height: 1.68;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 15px 38px rgba(60, 51, 159, 0.22);
}

.button.primary {
  color: #5964cf;
  background: #fff;
}

.button.ghost {
  color: #fff;
}

.scene-card {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.24), rgba(112, 99, 222, 0.18));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.scene-card img {
  width: min(390px, 88%);
  filter: drop-shadow(0 26px 46px rgba(60, 48, 150, 0.28));
}

.scene-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 16px;
  text-align: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.16);
}

.floating-number {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.number-one {
  left: 5vw;
  top: 21%;
  transform: rotate(-8deg);
}

.number-two {
  right: 8vw;
  top: 20%;
  transform: rotate(10deg);
}

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

.stats article {
  min-height: 120px;
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
}

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

.stats strong {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 0.95;
}

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

.content-section,
.download {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(26px, 6vw, 66px);
  padding: clamp(74px, 10vw, 116px) 0;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-grid article {
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.gameplay-preview {
  display: grid;
  place-items: center;
  padding-bottom: clamp(70px, 9vw, 104px);
}

.gameplay-preview img {
  width: min(380px, 76vw);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.download {
  align-items: center;
  margin-bottom: 54px;
  border-radius: 32px;
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 38px;
  color: rgba(255, 255, 255, 0.74);
}

footer a {
  text-decoration: none;
}

.policy-page {
  min-height: 100svh;
}

.policy-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 80px;
}

.policy-brand {
  margin-bottom: 28px;
}

.policy-card {
  border-radius: 32px;
  padding: clamp(26px, 6vw, 56px);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: clamp(1.42rem, 3vw, 1.95rem);
}

.policy-card a {
  color: #fff;
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero-grid,
  .content-section,
  .download {
    grid-template-columns: 1fr;
  }

  .scene-card {
    min-height: 292px;
  }

  .stats,
  .content-section,
  .gameplay-preview,
  .download,
  footer {
    width: calc(100% - 32px);
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-link {
    padding-inline: 13px;
  }

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

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }
}
