/* The download page. Borrows the landing page's tokens and masthead, and adds
 * only what a page with two buttons on it actually needs. */
.dl {
  max-width: 900px;
  margin-inline: auto;
  padding: var(--s6) var(--pad) var(--s7);
}

.dl__eyebrow {
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.dl__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0 0 var(--s3);
}

.dl__lede {
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.65;
  margin: 0 0 var(--s5);
}

.dl__grid {
  display: grid;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
@media (min-width: 640px) { .dl__grid { grid-template-columns: 1fr 1fr; } }

.dl__card {
  display: grid;
  gap: 6px;
  padding: var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s, transform 0.3s;
}
.dl__card:hover { border-color: var(--accent); }

.dl__os { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.dl__meta { font-family: var(--font-utility); font-size: 11px; color: var(--muted); }
.dl__go {
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--s2);
}

.dl__steps { list-style: none; margin: 0 0 var(--s5); padding: 0; display: grid; gap: var(--s2); }
.dl__steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--s2);
  align-items: baseline;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: var(--s2);
}
.dl__num { font-family: var(--font-utility); font-size: 11px; color: var(--accent); }

.dl__fine { color: var(--muted); font-size: 14px; }
.dl__fine .link, .link { color: var(--accent); text-decoration: none; }
.dl__fine .link:hover { text-decoration: underline; }

/* A platform we cannot hand over yet.
 *
 * The card stays, because a person needs to know Windows is coming; it stops
 * being a link, because a link that 404s on the download page is the worst
 * first impression the product can make. */
.dl__card--soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
