:root {
  color-scheme: dark;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #e7e9e9;
  background: #101314;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
}
main {
  width: min(100%, 750px);
  padding: 56px 24px;
  text-align: center;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 2px solid #d6fa73;
  outline-offset: 5px;
}
.accent {
  color: #d6fa73;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -1px;
  text-decoration: none;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 4px;
  transform: skew(-18deg);
}
.brand-mark i {
  width: 6px;
  height: 29px;
  background: #d6fa73;
}
.brand-mark i:first-child {
  height: 19px;
  opacity: 0.45;
}
.brand-mark i:nth-child(2) {
  height: 24px;
  opacity: 0.7;
}
h1 {
  margin: 38px 0 12px;
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 550;
  letter-spacing: -1.5px;
}
.intro {
  margin: 0;
  color: #a0abad;
  font-size: 14px;
  line-height: 1.7;
}
.downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 34px 0 26px;
}
section {
  padding: 30px;
  background: #181d1e;
  border: 1px solid #2d3435;
  border-radius: 9px;
}
.os-icon {
  width: 40px;
  height: 40px;
  color: #d6fa73;
  margin-bottom: 15px;
}
h2 {
  font-size: 23px;
  font-weight: 550;
  margin: 0 0 9px;
  letter-spacing: -0.5px;
}
.requirement {
  color: #a0abad;
  font-size: 12px;
  margin: 0 0 26px;
}
.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  background: #d6fa73;
  color: #222c12;
  border: 1px solid #d6fa73;
  border-radius: 5px;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 650;
}
.download:hover {
  background: #e3ff96;
}
.download.secondary {
  margin-top: 10px;
  background: #202727;
  border-color: #3b4643;
  color: #e7e9e9;
}
.download.secondary:hover {
  border-color: #d6fa73;
  color: #d6fa73;
}
.download span {
  font-size: 18px;
}
.release {
  font-size: 12px;
  color: #a0abad;
  line-height: 1.8;
}
.release a:hover {
  color: #d6fa73;
}
.note {
  font-size: 11px;
  line-height: 1.8;
  color: #909b9d;
  margin: 14px 0 0;
}
@media (max-width: 520px) {
  main {
    padding: 36px 20px;
  }
  .downloads {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  section {
    padding: 26px;
  }
}
