:root {
  color: #18181b;
  background: #f8f7ff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 77, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff, #f2efff 72%, #ebe7ff);
}

button,
input {
  font: inherit;
}

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

.hero {
  display: grid;
  min-height: 58vh;
  align-content: center;
  gap: 16px;
}

.logo {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #7c4dff, #9b5dff);
  color: #ffffff;
  font-size: 48px;
  font-weight: 950;
  box-shadow: 0 18px 46px rgba(124, 77, 255, 0.32);
}

.eyebrow {
  margin: 0;
  color: #7c4dff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: #09090b;
  font-size: clamp(44px, 8vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  color: #09090b;
  font-size: 24px;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  color: #3f3f46;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

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

.button {
  display: inline-grid;
  min-height: 52px;
  place-items: center;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: #7c4dff;
  color: #ffffff;
}

.button.secondary {
  border: 1px solid rgba(124, 77, 255, 0.24);
  background: #ffffff;
  color: #4c1d95;
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
}

.panel {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(124, 77, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(76, 29, 149, 0.1);
}

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

.release-grid div {
  padding: 16px;
  border-radius: 18px;
  background: #f4f1ff;
}

dt {
  color: #71717a;
  font-size: 13px;
  font-weight: 850;
}

dd {
  margin: 6px 0 0;
  color: #09090b;
  font-size: 18px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

#release-apk-checksum {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
}

.changelog,
.server-panel p,
.steps {
  color: #3f3f46;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
}

.steps {
  margin: 0;
  padding-left: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: #3f3f46;
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(124, 77, 255, 0.22);
  border-radius: 14px;
  background: #ffffff;
  color: #09090b;
}

.status {
  min-height: 24px;
  color: #7c4dff;
  font-weight: 850;
}

.inline-link {
  color: #6d28d9;
  font-weight: 850;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 28px;
  }

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

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

  .release-grid {
    grid-template-columns: 1fr;
  }
}
