/* Served from this host, not fonts.wayscloud.eu. The point of putting the
   download host on its own server is that a customer can still reach Dynway
   when WAYScloud is not answering, and a page that fetches its typography from
   WAYScloud undoes part of that. Only latin 400 and 700 — this page has no
   other weights and no other scripts. */
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/schibsted-grotesk-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/schibsted-grotesk-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Azeret Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/azeret-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Azeret Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/azeret-mono-latin-700-normal.woff2") format("woff2");
}

/* Same tokens as dynway.eu, so the download page reads as part of the product
   rather than a separate thing that happens to share a logo. */
:root {
  --ground: #0B1014;
  --surface: #121A20;
  --raise: #18232B;
  --line: #1E2A33;
  --ink: #E8EEF2;
  --muted: #71838F;
  --accent: #FF6B35;
  --live: #4ADE80;
  --mono: "Azeret Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 64px;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 0 40px;
}

.brand { text-decoration: none; color: inherit; }
.brand-mark { display: block; font-family: var(--mono); font-size: 20px; font-weight: 700; }
.accent { color: var(--accent); }
.brand-by { display: block; color: var(--muted); font-size: 12px; }

.lang-select {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
}

main { max-width: 720px; margin: 0 auto; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 { margin: 0 0 14px; font-family: var(--mono); font-size: 38px; line-height: 1.1; }
.lede { margin: 0 0 36px; max-width: 52ch; color: var(--muted); font-size: 17px; }

.primary { margin-bottom: 22px; }
.loading { color: var(--muted); font-size: 15px; }

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.card-platform { font-family: var(--mono); font-size: 15px; font-weight: 700; }
.card-meta { margin: 6px 0 20px; color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  background: var(--accent);
  color: #0B0D10;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.others { margin-bottom: 34px; }
.others summary { color: var(--muted); font-size: 14px; cursor: pointer; }
.other-list { list-style: none; margin: 16px 0 0; padding: 0; }
.other-list li { padding: 11px 0; border-top: 1px solid var(--line); }
.other-list a { color: var(--ink); font-size: 14px; text-decoration: none; }
.other-list a:hover { color: var(--accent); }
.other-list .size { float: right; color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }

.assurance {
  padding: 16px 18px;
  border-left: 2px solid var(--live);
  background: var(--raise);
  border-radius: 0 10px 10px 0;
}
.assurance p { margin: 0; color: var(--muted); font-size: 13px; }

.site-footer {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.site-footer a { color: var(--muted); font-size: 13px; text-decoration: none; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 560px) {
  h1 { font-size: 30px; }
  .btn { width: 100%; justify-content: center; }
}

/* The checksum belongs with the download it describes, not in a table further
   down the page where nobody connects the two. */
.checksum {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checksum-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checksum code {
  flex: 1 1 20ch;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.5;
}

.checksum-copy {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
}

.checksum-copy:hover { border-color: var(--accent); color: var(--accent); }

.facts {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.fact h2 {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.fact p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

.published {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
  .published { margin-left: 0; width: 100%; }
}

/* What this platform will do that could otherwise look like a fault: the
   SmartScreen prompt, or a missing library. Said before the download, not
   discovered halfway through installing. */
.card-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--warn, #FBBF24);
  border-radius: 0 8px 8px 0;
  background: rgba(251, 191, 36, 0.06);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.card-note code {
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
}
