:root {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #18202f;
  background: #f7f8fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(rgba(9, 22, 42, 0.72), rgba(9, 22, 42, 0.52)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

nav strong {
  font-size: 22px;
}

nav a,
.actions a {
  color: inherit;
  text-decoration: none;
}

.heroBody {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  align-self: center;
  padding-bottom: 9vh;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 700;
  color: #f7c948;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  margin: 12px 0 18px;
}

.lead {
  max-width: 680px;
  font-size: 21px;
  line-height: 1.5;
  color: #edf2f7;
}

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

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
}

.primary {
  background: #f7c948;
  color: #111827;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
}

main {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

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

article,
.downloads {
  background: #fff;
  border: 1px solid #d9e0ea;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(24, 32, 47, 0.06);
}

article h2,
.downloads h2 {
  margin: 0 0 8px;
}

article p {
  margin: 0;
  color: #5d6675;
  line-height: 1.5;
}

.downloads {
  margin-bottom: 40px;
}

.releaseList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.downloadLead {
  color: #5d6675;
  margin: 0;
}

.installerDownload {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  margin-top: 18px;
  border-radius: 6px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.release {
  border: 1px solid #d9e0ea;
  border-radius: 8px;
  padding: 14px;
}

.release strong {
  display: block;
  font-size: 18px;
}

.release p {
  color: #5d6675;
  min-height: 42px;
}

.release a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  background: #1f6feb;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 760px) {
  .features {
    grid-template-columns: 1fr;
  }
}
