/* setussh.com
   The page is built as the application window: title bar, tab strip, content,
   status bar. Colours are lifted from the shipping app's dark theme so the site
   and the product read as the same object. No webfonts: the same font stacks
   the app ships, so the site renders in the fonts SetuSSH will actually use on
   the visitor's machine. */

:root {
  /* Surfaces, from the app's dark palette */
  --graphite: #292d32; /* app background */
  --panel: #1e2125; /* chrome: title bar, tabs, status bar */
  --well: #181b1e; /* recessed cards */
  --desktop: #131518; /* behind the window */

  /* Text */
  --ink: #e6e8ec;
  --muted: #a5aab4;
  --subtle: #787d87;

  /* Lines */
  --line: #3a3d42;
  --line-soft: #23262a;

  /* Accent: the app's steel blue, not a neon */
  --accent: #5a9cd5;
  --accent-hi: #74afdc;
  --accent-soft: #243c58;

  /* The terminal is the only near-black surface on the page, exactly as in
     the app, where it stays dark in both themes for readable ANSI colour. */
  --term-bg: #0a0c11;

  --ok: #16a34a;

  --ui:
    'Segoe UI', Inter, ui-sans-serif, system-ui, -apple-system, Roboto, sans-serif;
  --code: 'Cascadia Code', 'JetBrains Mono', 'Fira Code', Consolas, Menlo, monospace;

  --radius: 6px;
  --pad: clamp(1.25rem, 4vw, 2.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: clamp(0rem, 3vw, 2.5rem);
  background: var(--desktop);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
}

code {
  font-family: var(--code);
  font-size: 0.9em;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
}

/* ---------- the window ---------- */

.window {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--graphite);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.5);
}

.titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 0.85rem;
  background: var(--panel);
  border-bottom: 1px solid var(--line-soft);
}

.titlebar-app {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--subtle);
}
.dot-live {
  background: var(--ok);
}

.titlebar-controls {
  display: flex;
  gap: 0.5rem;
}
.ctl {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}
.ctl-close {
  background: #4b5056;
}

/* ---------- tab strip: the navigation ---------- */

.tabs {
  display: flex;
  gap: 1px;
  padding: 0 0.4rem;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: none;
  padding: 0.6rem 1rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.tab:hover {
  color: var(--ink);
  background: rgb(255 255 255 / 0.03);
}
.tab[aria-current='true'],
.tab[aria-current='page'] {
  color: var(--ink);
  border-bottom-color: var(--accent);
  background: var(--graphite);
}

/* ---------- content ---------- */

.content {
  padding: var(--pad);
}

/* Without JS every panel simply stacks; the tab strip still works as anchors. */
.js .panel {
  display: none;
}
.js .panel.is-active {
  display: block;
  animation: rise 180ms ease-out;
}
.panel + .panel {
  margin-top: 3.5rem;
}
.js .panel + .panel {
  margin-top: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

/* Panel headings borrow the app's own panel-header idiom. */
.section-h {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 3rem 0 1.25rem;
  color: var(--subtle);
  font-family: var(--code);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-h::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}
/* A panel that opens with its heading shouldn't start with a gap. */
.panel > .section-h:first-child {
  margin-top: 0;
}

.lede {
  max-width: 60ch;
  color: var(--muted);
}

/* ---------- hero ---------- */

.hero-title {
  /* Balanced rather than hard-broken: a fixed <br> orphaned the last word on
     narrow screens. */
  max-width: 25ch;
  font-family: var(--code);
  font-size: clamp(1.75rem, 4.4vw, 2.85rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-sub {
  max-width: 62ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

/* The terminal: the one near-black surface, as in the app. */
.term {
  margin: 2.25rem 0 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--term-bg);
}

.term-bar {
  display: flex;
  gap: 1px;
  padding: 0 0.3rem;
  background: var(--panel);
  border-bottom: 1px solid var(--line-soft);
}

.term-tab {
  padding: 0.42rem 0.8rem;
  border-bottom: 2px solid transparent;
  color: var(--subtle);
  font-family: var(--code);
  font-size: 0.72rem;
}
.term-tab-on {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.term-body {
  margin: 0;
  padding: 1.1rem 1.2rem;
  overflow-x: auto;
  color: #cdd3db;
  font-family: var(--code);
  font-size: 0.82rem;
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
}

.cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.05em;
  translate: 0 0.2em;
  background: var(--accent);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.hero-note {
  color: var(--subtle);
  font-size: 0.82rem;
}

/* ---------- buttons + links ---------- */

.btn {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--well);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  border-color: var(--accent);
  color: #fff;
}

.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #0d1117;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--accent-hi);
  border-color: var(--accent-hi);
  color: #0d1117;
}

.link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgb(90 156 213 / 0.35);
}
.link:hover {
  color: var(--accent-hi);
  border-bottom-color: currentColor;
}

.link-quiet {
  color: var(--subtle);
  text-decoration: none;
}
.link-quiet:hover {
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--accent-hi);
  outline-offset: 2px;
}

/* ---------- features ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line-soft);
}

.feature {
  padding: 1.35rem 1.4rem;
  background: var(--graphite);
}
.feature h3 {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}
.feature p {
  color: var(--muted);
  font-size: 0.89rem;
}
.feature code {
  color: var(--ink);
}

/* ---------- downloads ---------- */

.files {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.4rem;
}

.files-loading {
  padding: 1.1rem 1.2rem;
  color: var(--subtle);
  font-size: 0.88rem;
}

.file {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  background: var(--graphite);
  border-bottom: 1px solid var(--line-soft);
}
.file:last-child {
  border-bottom: 0;
}
.file:hover {
  background: var(--well);
}

.file-os {
  flex: 1 1 auto;
  min-width: 0;
}
.file-os strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}
.file-os span {
  color: var(--subtle);
  font-family: var(--code);
  font-size: 0.74rem;
  word-break: break-all;
}

.file-size {
  flex: none;
  color: var(--subtle);
  font-family: var(--code);
  font-size: 0.78rem;
}

.files-fallback {
  margin-top: 0.9rem;
  color: var(--subtle);
  font-size: 0.84rem;
}

.install {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.6rem;
}
.install-os h3 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.install-os p {
  color: var(--muted);
  font-size: 0.89rem;
}
.install-os p + p {
  margin-top: 0.6rem;
}

.snip {
  margin: 0.7rem 0 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow-x: auto;
  background: var(--term-bg);
  color: #cdd3db;
  font-size: 0.8rem;
}

/* ---------- status bar ---------- */

.statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 26px;
  padding: 0 0.85rem;
  background: var(--panel);
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 0.72rem;
}
.status-left,
.status-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.status-left span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- small screens ---------- */

@media (max-width: 720px) {
  body {
    padding: 0;
  }
  .window {
    border: 0;
    border-radius: 0;
    min-height: 100vh;
    box-shadow: none;
  }
  .titlebar-controls {
    display: none;
  }
  .status-right .link-quiet {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cursor {
    animation: none;
  }
  .js .panel.is-active {
    animation: none;
  }
}

/* ---------- legal pages ---------- */

.legal {
  max-width: 78ch;
  margin: 1.75rem 0 0;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow-x: auto;
  background: var(--well);
  color: var(--muted);
  font-family: var(--code);
  font-size: 0.79rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

.prose {
  max-width: 68ch;
}
.prose p {
  margin-top: 1rem;
  color: var(--muted);
}
.prose h2 {
  margin-top: 2.25rem;
  font-size: 1rem;
}
.prose ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.prose li {
  margin-top: 0.45rem;
}

/* ---------- plans ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line-soft);
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.4rem;
  background: var(--graphite);
}

/* The plan we actually want people to land on gets the accent, and it is the
   only accented thing in this block so it reads as emphasis, not decoration. */
.plan-lead {
  background: var(--well);
  box-shadow: inset 2px 0 0 var(--accent);
}

.plan-name {
  font-size: 0.95rem;
}

.plan-price {
  color: var(--accent);
  font-family: var(--code);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.plan-list {
  margin: 0.3rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.87rem;
}
.plan-list li {
  padding: 0.2rem 0 0.2rem 1.1rem;
  position: relative;
}
.plan-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.plan-off {
  color: var(--subtle);
}
.plan-off::before {
  background: var(--subtle) !important;
}

.plan-note {
  margin-top: auto;
  padding-top: 0.6rem;
  color: var(--subtle);
  font-size: 0.8rem;
}

/* ---------- request form ---------- */

.reqform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 40rem;
  margin-top: 1.6rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  width: 100%;
}

.field {
  display: block;
  width: 100%;
}
.field-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.field-opt {
  color: var(--subtle);
  font-size: 0.75rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--well);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 0.92rem;
}
.field textarea {
  resize: vertical;
  min-height: 4.5rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgb(90 156 213 / 0.18);
}

.field-note {
  max-width: 46ch;
  color: var(--subtle);
  font-size: 0.79rem;
  line-height: 1.55;
}

.formerr {
  color: #f08a8a;
  font-size: 0.85rem;
}

.reqdone {
  max-width: 40rem;
  margin-top: 1.6rem;
  padding: 1.4rem;
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  background: var(--well);
}
.reqdone-h {
  font-size: 1rem;
}
.reqdone-sub {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- admin ---------- */

.admin-ok {
  color: #7fd18a;
  font-size: 0.88rem;
}

.admin-days {
  width: 5.5rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--well);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 0.85rem;
}

.keybox {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--term-bg);
  color: #cdd3db;
  font-family: var(--code);
  font-size: 0.78rem;
  line-height: 1.7;
  word-break: break-all;
  white-space: pre-wrap;
}

/* ---------- build-maturity notices ---------- */

/* Amber, not red: these builds work, they are just less exercised. Red would
   read as "broken" and put people off downloading at all. */
.notice {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgb(217 119 6 / 0.4);
  border-left: 3px solid #d97706;
  border-radius: var(--radius);
  background: rgb(217 119 6 / 0.07);
}
.notice-title {
  margin-bottom: 0.35rem;
  color: #e2a13f;
  font-size: 0.9rem;
  font-weight: 600;
}
.notice p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.tag-testing,
.tag-stable {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  font-family: var(--code);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}
.tag-testing {
  border: 1px solid rgb(217 119 6 / 0.5);
  color: #e2a13f;
}
.tag-stable {
  border: 1px solid rgb(22 163 74 / 0.5);
  color: #6cc47f;
}

.hero-warn {
  color: #e2a13f;
}

/* The name's origin; it also carries the two-word spelling people search for. */
.hero-origin {
  display: block;
  margin-top: 0.6rem;
  color: var(--subtle);
  font-size: 0.86rem;
  font-style: normal;
}

/* ---------- faq ---------- */

.faq {
  max-width: 62ch;
  margin: 0;
}
.faq dt {
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

/* ---------- brand ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: block;
}

.hero-brand {
  display: block;
  width: clamp(150px, 26vw, 220px);
  height: auto;
  margin-bottom: 1.4rem;
}

/* ---------- pages that are not the landing page ---------- */

.page {
  max-width: 72ch;
}
.page-title {
  font-family: var(--code);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.page-sub {
  max-width: 62ch;
  margin-top: 0.75rem;
  color: var(--muted);
}

.prose h3 {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.prose ol {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
  color: var(--muted);
}
.prose ol li {
  margin-top: 0.45rem;
}
.prose li > p {
  margin-top: 0.25rem;
}
.prose code {
  padding: 0.05em 0.35em;
  border-radius: 4px;
  background: var(--well);
  color: var(--ink);
}
.prose pre {
  margin: 1rem 0 0;
}
.prose pre code {
  padding: 0;
  background: none;
}
.prose a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgb(90 156 213 / 0.35);
}
.prose a:hover {
  color: var(--accent-hi);
  border-bottom-color: currentColor;
}
.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* Keyboard keys, as on a keycap. */
.kbd {
  display: inline-block;
  padding: 0.05em 0.45em;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  background: var(--well);
  color: var(--ink);
  font-family: var(--code);
  font-size: 0.8em;
  line-height: 1.5;
  white-space: nowrap;
}

/* Tables: shortcuts, comparisons. */
.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.table th,
.table td {
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}
.table th {
  color: var(--subtle);
  font-family: var(--code);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--panel);
}
.table tr:last-child td {
  border-bottom: 0;
}
.table td:first-child {
  white-space: nowrap;
}

/* ---------- docs: side list of sections + text ---------- */

.docs {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.docs-nav {
  position: sticky;
  top: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid var(--line-soft);
}
.docs-nav li {
  margin: 0;
}
.docs-nav a {
  display: block;
  padding: 0.3rem 0 0.3rem 0.9rem;
  margin-left: -1px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
}
.docs-nav a:hover {
  color: var(--ink);
}
.docs-nav a[aria-current='true'] {
  color: var(--ink);
  border-left-color: var(--accent);
}
.docs-body > section + section {
  margin-top: 3rem;
}
.docs-body h2 {
  font-size: 1.15rem;
  scroll-margin-top: 1rem;
}
.docs-body h3 {
  scroll-margin-top: 1rem;
}

@media (max-width: 860px) {
  .docs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .docs-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    border-left: 0;
  }
  .docs-nav a {
    padding: 0.2rem 0;
    margin: 0;
    border-left: 0;
    border-bottom: 2px solid transparent;
  }
  .docs-nav a[aria-current='true'] {
    border-bottom-color: var(--accent);
  }
}

/* ---------- releases ---------- */

.releases {
  margin-top: 1.5rem;
}
.release + .release {
  margin-top: 1.5rem;
}
.release {
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--well);
}
.release-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
}
.release-tag {
  font-family: var(--code);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.release-date {
  color: var(--subtle);
  font-size: 0.82rem;
}
.release-latest {
  padding: 0.1em 0.5em;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hi);
  font-size: 0.72rem;
  font-weight: 600;
}
.release-files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.release-files a {
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--code);
  font-size: 0.75rem;
  text-decoration: none;
}
.release-files a:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.release-notes {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.release-notes h2,
.release-notes h3 {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.release-notes p {
  margin-top: 0.75rem;
}
.release-notes ul {
  margin: 0.6rem 0 0;
  padding-left: 1.15rem;
}
.release-notes li {
  margin-top: 0.35rem;
}
.release-notes code {
  padding: 0.05em 0.35em;
  border-radius: 4px;
  background: var(--graphite);
  color: var(--ink);
}
.release-notes pre {
  margin: 0.75rem 0 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--term-bg);
  overflow-x: auto;
  font-family: var(--code);
  font-size: 0.8rem;
  line-height: 1.6;
}
.release-notes pre code {
  padding: 0;
  background: none;
}
.release-notes a {
  color: var(--accent);
  text-decoration: none;
}
.release-notes a:hover {
  color: var(--accent-hi);
}
.release-notes hr {
  margin: 1.25rem 0;
  border: 0;
  border-top: 1px solid var(--line-soft);
}
.release-notes blockquote {
  margin: 0.75rem 0 0;
  padding-left: 0.9rem;
  border-left: 2px solid var(--line);
  color: var(--subtle);
}
.release-notes strong {
  color: var(--ink);
}
.release-more {
  margin-top: 1.5rem;
}

/* ---------- contact ---------- */

.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact {
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--well);
}
.contact h3 {
  font-size: 0.95rem;
}
.contact-addr {
  display: inline-block;
  margin: 0.6rem 0 0.5rem;
  font-family: var(--code);
  font-size: 1rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgb(90 156 213 / 0.35);
}
.contact-addr:hover {
  color: var(--accent-hi);
  border-bottom-color: currentColor;
}
.contact p {
  color: var(--muted);
  font-size: 0.9rem;
}
