:root {
  color-scheme: dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #070911;
  color: #f4efff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 60, 167, 0.22),
      transparent 32rem
    ),
    linear-gradient(135deg, #070911 0%, #10131f 54%, #121624 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.shell.narrow {
  width: min(760px, calc(100% - 40px));
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: #7ee6f5;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  line-height: 0.88;
}

h2 {
  font-size: 1.65rem;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: #c7c1d4;
  font-size: 1.25rem;
  line-height: 1.55;
}

.brand-art {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.4));
}

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

.button,
.download {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  font-weight: 800;
}

.button.primary {
  background: #43c7da;
  color: #071018;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.section.compact p {
  margin: 0;
  color: #c7c1d4;
  line-height: 1.65;
}

.download-list {
  display: grid;
  gap: 12px;
}

.download {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.download span {
  font-weight: 800;
}

.download small {
  color: #aaa4b7;
}

.download.pending {
  cursor: default;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: #7ee6f5;
  font-weight: 800;
  text-decoration: none;
}

.narrow p {
  color: #c7c1d4;
  font-size: 1.05rem;
  line-height: 1.7;
}

.narrow h1 {
  margin-bottom: 28px;
  font-size: 4rem;
}

.narrow h2 {
  margin-top: 34px;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1120px);
    padding: 32px 0;
  }

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

  .hero {
    min-height: auto;
    gap: 28px;
  }

  .brand-art {
    max-height: 280px;
  }

  .download {
    flex-direction: column;
  }
}
