:root {
  --bg: #f6f3ff;
  --paper: #ffffff;
  --wash: #ebe4ff;
  --cyanwash: #dffbff;
  --navy: #150966;
  --purple: #5618fb;
  --cyan: #01ddfc;
  --muted: #5c5688;
  --line: #d8d0f0;
  --page: 1120px;
  --gutter: clamp(20px, 4vw, 40px);
  font-family: Inter, system-ui, sans-serif;
  color: var(--navy);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.blob {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.blob-a {
  width: 380px;
  height: 380px;
  right: -80px;
  top: -120px;
  background: #e4dcff;
}

.blob-b {
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -80px;
  background: #cff8ff;
}

.page {
  position: relative;
  z-index: 1;
  width: min(var(--page), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding-bottom: 40px;
}

.nav,
.hero {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: block;
  width: 220px;
  height: auto;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 40px);
  padding: 12px 0 32px;
  align-items: center;
}

.copy {
  flex: 1 1 520px;
  min-width: 0;
  max-width: 700px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  font-weight: 700;
}

.lead {
  margin: 0 0 22px;
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 16px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 0;
}

.btn-lg {
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 15px;
}

.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

.keys {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  padding: 0 9px;
  border: 1.5px solid var(--navy);
  border-radius: 7px;
  background: var(--paper);
  color: var(--navy);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.features {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature {
  flex: 1;
  min-width: 0;
  padding: 16px;
  border-radius: 20px;
}

.feature-wash {
  background: var(--wash);
}

.feature-cyan {
  background: var(--cyanwash);
}

.feature-paper {
  background: var(--paper);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--purple);
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.panel {
  width: 328px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.panel-brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid var(--line);
}

.panel-actions {
  display: flex;
  gap: 6px;
}

.panel-actions span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--wash);
}

.panel-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--bg);
}

.panel-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
}

.panel-status span:first-child {
  color: var(--purple);
}

.panel-status span:last-child {
  color: var(--muted);
  font-weight: 400;
}

.game {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.game h2 {
  margin: 0 0 4px;
  font-size: 15px;
}

.game p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.game-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #fff;
  flex-shrink: 0;
}

.thumb-purple {
  background: var(--purple);
}

.thumb-orange {
  background: #f67c5f;
  overflow: hidden;
}

.game-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.thumb-navy {
  background: var(--navy);
}

.thumb-cyan {
  background: var(--cyan);
  color: var(--navy);
}

.tag {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 99px;
  background: var(--cyanwash);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.store-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.site-foot {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  padding: 8px 0 24px;
  font-size: 13px;
}

.site-foot a {
  color: var(--muted);
  text-decoration: none;
}

.site-foot a:hover {
  color: var(--navy);
}

.legal {
  max-width: 720px;
  padding: 12px 0 32px;
}

.legal h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
}

.legal-updated {
  margin-bottom: 18px;
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.legal a {
  color: var(--purple);
}

.legal hr {
  margin: 36px 0 8px;
  border: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .copy {
    max-width: none;
    flex-basis: auto;
  }

  .panel {
    width: 100%;
    max-width: 360px;
    align-self: center;
  }

  .features {
    flex-direction: column;
  }
}
