@charset "utf-8";
/* SSHMount — sshmount.it
   One stylesheet, no imports, no third-party font or asset requests.
   System font stack: on a Mac this renders in San Francisco, which is the
   right typeface for a page about a Mac app. */

/* ---------------------------------------------------------------- tokens */
:root {
  --bg:          #ffffff;
  --bg-sunken:   #f4f7fb;
  --surface:     #ffffff;
  --surface-alt: #f7f9fd;
  --ink:         #0e1420;
  --ink-soft:    #4d5871;
  --ink-faint:   #6b7690;
  --line:        #e0e6f0;
  --line-strong: #ccd5e4;
  --accent:      #0a5fd6;
  --accent-ink:  #08479f;
  --accent-wash: #eaf2ff;
  --on-accent:   #ffffff;
  --good:        #0d7a4a;
  --badge-bg:    #000000;
  --badge-ink:   #ffffff;
  --badge-edge:  #000000;
  --shadow-sm:   0 1px 2px rgba(14, 20, 32, .06), 0 2px 8px rgba(14, 20, 32, .05);
  --shadow-md:   0 2px 6px rgba(14, 20, 32, .07), 0 16px 40px rgba(14, 20, 32, .08);

  --radius:   14px;
  --radius-lg: 22px;
  --measure:  68ch;
  --wrap:     1120px;
  --gutter:   clamp(1.15rem, 4vw, 2.5rem);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0b1120;
    --bg-sunken:   #080d19;
    --surface:     #111a2c;
    --surface-alt: #0f1728;
    --ink:         #e9effc;
    --ink-soft:    #a7b7d4;
    --ink-faint:   #8b9cbb;
    --line:        #1e2b44;
    --line-strong: #2b3b59;
    --accent:      #6aa8ff;
    --accent-ink:  #a8caff;
    --accent-wash: #10203c;
    --on-accent:   #06152c;
    --good:        #4ad195;
    --badge-bg:    #ffffff;
    --badge-ink:   #000000;
    --badge-edge:  #a6a6a6;
    --shadow-sm:   0 1px 2px rgba(0, 0, 0, .5);
    --shadow-md:   0 2px 6px rgba(0, 0, 0, .45), 0 18px 44px rgba(0, 0, 0, .5);
  }
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.021em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.15rem, 1.35rem + 3.5vw, 3.55rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.4rem); letter-spacing: -.026em; }
h3 { font-size: clamp(1.18rem, 1.02rem + .7vw, 1.42rem); }
h4 { font-size: 1.03rem; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.35em; }
li { margin-bottom: .42em; }
strong, b { font-weight: 650; color: var(--ink); }
small { font-size: .875rem; }

a { color: var(--accent); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--accent-ink); }

code, kbd, samp {
  font-family: var(--mono);
  font-size: .875em;
  background: var(--accent-wash);
  color: var(--ink);
  padding: .12em .38em;
  border-radius: 5px;
  word-break: break-word;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--on-accent);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius) 0; z-index: 100;
  font-weight: 600;
}
.skip:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }

section { padding-block: clamp(3rem, 7vw, 5.5rem); }
section.tight { padding-block: clamp(2rem, 4vw, 3rem); }
.band { background: var(--bg-sunken); border-block: 1px solid var(--line); }

.lede { font-size: clamp(1.06rem, 1rem + .35vw, 1.25rem); color: var(--ink-soft); max-width: 62ch; }
.section-head { max-width: 64ch; margin-bottom: 2.4rem; }
.eyebrow {
  display: inline-block; font-size: .77rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .7rem;
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--bg); } }

.site-header .wrap {
  display: flex; align-items: center; gap: 1rem;
  min-height: 58px; padding-block: .5rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1.06rem; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none; flex: 0 0 auto;
}
.brand img { width: 28px; height: 28px; border-radius: 7px; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: clamp(.7rem, 2vw, 1.5rem); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a {
  color: var(--ink-soft); text-decoration: none; font-size: .93rem; font-weight: 550;
  padding: .35rem 0; display: inline-block;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }
.nav a[aria-current="page"] { font-weight: 650; }

/* language switcher: <details>, works with JS off */
.lang { position: relative; flex: 0 0 auto; }
.lang > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .34rem;
  font-size: .9rem; font-weight: 550; color: var(--ink-soft);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: .3rem .72rem;
  background: var(--surface);
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary:hover { color: var(--accent); border-color: var(--accent); }
.lang > summary::after { content: "▾"; font-size: .75em; }
.lang ul {
  position: absolute; right: 0; top: calc(100% + .45rem);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  list-style: none; margin: 0; padding: .35rem; min-width: 172px; z-index: 60;
}
.lang li { margin: 0; }
.lang ul a {
  display: block; padding: .42rem .6rem; border-radius: 8px;
  color: var(--ink); text-decoration: none; font-size: .92rem;
}
.lang ul a:hover { background: var(--accent-wash); color: var(--accent-ink); }
.lang ul a[aria-current="true"] { font-weight: 700; color: var(--accent); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; font-size: 1rem;
  padding: .78rem 1.4rem; border-radius: 11px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: background-color .15s, border-color .15s, transform .15s;
}
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-ink); color: var(--on-accent); }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-wash); color: var(--accent-ink); }
.btn:active { transform: translateY(1px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-bottom: 1.1rem; }
.meta-line { font-size: .875rem; color: var(--ink-faint); margin: 0; }
.meta-line b { color: var(--ink-soft); font-weight: 600; }

/* Mac App Store badge. Drawn inline (see _source/build.py) so it costs no
   request and flips with the colour scheme: black badge on light pages, white
   badge on dark ones, the same two variants Apple ships. */
.badge-mas {
  display: inline-block; line-height: 0; border-radius: 10px;
  transition: transform .15s, opacity .15s;
}
.badge-mas svg { height: 52px; width: auto; display: block; }
.badge-mas:hover { opacity: .88; }
.badge-mas:active { transform: translateY(1px); }
.badge-mas--disabled { opacity: .45; filter: grayscale(1); cursor: default; }
.badge-note {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
}
.badge-note::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.8rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(1100px 520px at 12% -10%, var(--accent-wash), transparent 62%),
    radial-gradient(900px 460px at 96% 4%, var(--accent-wash), transparent 58%);
}
.hero h1 { max-width: 16ch; }
.hero .lede { font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); margin-bottom: 1.7rem; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); } }

.prelaunch-flag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: .3rem .85rem .3rem .55rem;
  font-size: .84rem; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.prelaunch-flag .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* ---------------------------------------------------------------- figures */
figure { margin: 0; }
.shot {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.shot svg, .shot img { display: block; width: 100%; height: auto; }
figcaption { font-size: .82rem; color: var(--ink-faint); margin-top: .7rem; text-align: center; }

/* ---------------------------------------------------------------- the "no" row */
.nos { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
@media (min-width: 620px) { .nos { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .nos { grid-template-columns: repeat(4, 1fr); } }
.nos > div { background: var(--surface); padding: 1.5rem 1.3rem; }
.nos .no-word {
  display: block; font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.05rem);
  font-weight: 750; letter-spacing: -.03em; color: var(--ink); line-height: 1.1;
}
.nos .no-word em { font-style: normal; color: var(--accent); }
.nos p { margin: .5rem 0 0; font-size: .9rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------- features */
.feature { display: grid; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
@media (min-width: 900px) {
  .feature { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .feature--flip > figure { order: -1; }
}
.feature + .feature { margin-top: clamp(3rem, 7vw, 5rem); }
.feature h3 { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem); letter-spacing: -.025em; }
.feature p { color: var(--ink-soft); }
.feature p:last-child { margin-bottom: 0; }
.feature .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent-wash); color: var(--accent-ink);
  font-size: .88rem; font-weight: 700; margin-bottom: .85rem;
}

/* ---------------------------------------------------------------- cards */
.cards { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------------------------------------------------------------- security */
.security-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.sec-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.15rem; }
@media (min-width: 820px) { .sec-list { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 2.2rem; } }
.sec-list li { margin: 0; padding-left: 2.1rem; position: relative; }
.sec-list li::before {
  content: ""; position: absolute; left: 0; top: .18em;
  width: 1.35rem; height: 1.35rem; border-radius: 7px;
  background: var(--accent-wash);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.6l3.6 3.6L16 5.8' fill='none' stroke='%230a5fd6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 1.05rem; background-position: center; background-repeat: no-repeat;
}
@media (prefers-color-scheme: dark) {
  .sec-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.6l3.6 3.6L16 5.8' fill='none' stroke='%236aa8ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.sec-list strong { display: block; margin-bottom: .15rem; }
.sec-list span { color: var(--ink-soft); font-size: .96rem; }

/* ---------------------------------------------------------------- pricing */
.plans { display: grid; gap: 1.2rem; align-items: start; }
@media (min-width: 800px) { .plans { grid-template-columns: repeat(2, 1fr); } }
.plan {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
}
.plan--pro { border-color: var(--accent); box-shadow: var(--shadow-md); }
.plan h3 { font-size: 1.45rem; margin-bottom: .2rem; }
.plan .plan-sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.2rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.plan li { padding-left: 1.75rem; position: relative; margin-bottom: .68rem; font-size: .98rem; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: .46em;
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  background: var(--accent-wash);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4.5 10.4l3.4 3.4L15.5 6' fill='none' stroke='%230a5fd6' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: .8rem; background-position: center; background-repeat: no-repeat;
}
@media (prefers-color-scheme: dark) {
  .plan li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4.5 10.4l3.4 3.4L15.5 6' fill='none' stroke='%236aa8ff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.plan .plan-cta { margin-top: auto; }
.plan-tag {
  align-self: flex-start; font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent-ink); background: var(--accent-wash);
  border-radius: 999px; padding: .2rem .65rem; margin-bottom: .8rem;
}
.price-note {
  margin-top: 1.6rem; padding: 1.05rem 1.2rem; border-radius: var(--radius);
  background: var(--accent-wash); color: var(--ink-soft); font-size: .95rem;
}
.price-note p:last-child { margin-bottom: 0; }
.fine-print { font-size: .84rem; color: var(--ink-faint); margin-top: 1rem; max-width: 70ch; }

/* ---------------------------------------------------------------- table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--line); }
table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .95rem; background: var(--surface); }
caption { text-align: left; color: var(--ink-faint); font-size: .85rem; padding: .8rem 1rem; }
th, td { padding: .85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { background: var(--surface-alt); font-size: .85rem; letter-spacing: .01em; white-space: nowrap; }
tbody th { font-weight: 650; white-space: nowrap; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr.is-us th, tbody tr.is-us td { background: var(--accent-wash); }
td small { display: block; color: var(--ink-faint); }

/* ---------------------------------------------------------------- faq */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 620; position: relative; font-size: 1.01rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: ""; position: absolute; right: 1.25rem; top: 1.35rem;
  width: 11px; height: 11px; border-right: 2.2px solid currentColor; border-bottom: 2.2px solid currentColor;
  transform: rotate(45deg); transition: transform .18s; color: var(--ink-faint);
}
.faq details[open] > summary::after { transform: rotate(-135deg); }
.faq details[open] > summary { color: var(--accent); }
.faq .answer { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); max-width: 78ch; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- notify form */
.notify {
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm); max-width: 660px;
}
.notify h2 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem); }
.notify p { color: var(--ink-soft); font-size: .97rem; }
.notify form { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.2rem; }
.notify label { flex: 1 1 100%; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.notify input[type="email"] {
  flex: 1 1 240px; font: inherit; font-size: 1rem;
  padding: .74rem .9rem; border-radius: 11px;
  border: 1px solid var(--line-strong); background: var(--bg); color: var(--ink);
}
.notify input[type="email"]::placeholder { color: var(--ink-faint); }
.notify input[type="email"]:focus-visible { border-color: var(--accent); }
.notify .form-note { font-size: .83rem; color: var(--ink-faint); margin: .9rem 0 0; }

/* ---------------------------------------------------------------- CTA */
.final-cta {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 5vw, 3.4rem);
  text-align: center; box-shadow: var(--shadow-sm);
}
.final-cta h2 { max-width: 20ch; margin-inline: auto; }
.final-cta .lede { margin-inline: auto; margin-bottom: 1.6rem; }
.final-cta .btn-row { justify-content: center; }
.final-cta .meta-line { text-align: center; }

/* ---------------------------------------------------------------- prose */
.prose { max-width: var(--measure); }
.prose h2 { font-size: clamp(1.32rem, 1.12rem + .9vw, 1.65rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.1rem; margin-top: 1.7rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul li, .prose ol li { color: var(--ink-soft); }
.prose p { color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.replace {
  background: #ffe9a8; color: #4a3500; font-family: var(--mono); font-size: .84em;
  padding: .12em .4em; border-radius: 5px; border: 1px dashed #b58900; font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .replace { background: #40320a; color: #ffdf85; border-color: #8a7326; }
}
.callout {
  border-left: 3px solid var(--accent); background: var(--accent-wash);
  padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.6rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.updated { font-size: .87rem; color: var(--ink-faint); }

/* breadcrumbs */
.crumbs { font-size: .85rem; color: var(--ink-faint); margin-bottom: 1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line-strong); }

/* ---------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--line); background: var(--bg-sunken);
  padding-block: clamp(2.4rem, 5vw, 3.4rem) 2rem; margin-top: 0;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.site-footer h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-faint); margin-bottom: .9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--ink-soft); text-decoration: none; font-size: .93rem; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.footer-langs ul { display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.footer-langs li { margin: 0; }
.footer-brand p { font-size: .9rem; color: var(--ink-faint); max-width: 34ch; }
.footer-bottom {
  margin-top: 2.2rem; padding-top: 1.3rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .84rem; color: var(--ink-faint);
}
.footer-bottom p { margin: 0; }

/* ---------------------------------------------------------------- misc */
.tick  { color: var(--good); font-weight: 700; }
.cross { color: var(--ink-faint); font-weight: 700; }
.stack > * + * { margin-top: 1.1rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.pill-row li {
  margin: 0; font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem;
}

/* ------------------------------------------------- language notice bar */
/* Injected by a small inline script when the visitor's browser prefers a
   language this page is not in. No cookie: the dismissal goes to
   localStorage. No redirect: nobody is moved off the page they asked for. */
.langbar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80; display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
  max-width: min(94vw, 640px);
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 999px;
  box-shadow: var(--shadow-md); padding: .55rem .7rem .55rem 1.15rem;
  font-size: .92rem;
}
.langbar p { margin: 0; flex: 1 1 auto; }
.langbar-go {
  font-weight: 650; color: var(--accent); text-decoration: none;
  border: 1px solid var(--accent); border-radius: 999px; padding: .25rem .8rem;
  white-space: nowrap;
}
.langbar-go:hover { background: var(--accent); color: var(--on-accent); }
.langbar-x {
  font: inherit; font-size: .86rem; color: var(--ink-faint);
  background: none; border: 0; cursor: pointer; padding: .25rem .5rem;
  border-radius: 999px; white-space: nowrap;
}
.langbar-x:hover { color: var(--ink); background: var(--bg-sunken); }
@media (max-width: 520px) { .langbar { border-radius: var(--radius); padding: .8rem 1rem; } }

/* ------------------------------------------------- numbered steps */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 2.6rem; } }
.steps li { counter-increment: step; margin: 0; padding-left: 3.1rem; position: relative; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -.1em;
  width: 2.2rem; height: 2.2rem; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--on-accent);
  font-weight: 700; font-size: .95rem; font-variant-numeric: tabular-nums;
}
.steps strong { display: block; margin-bottom: .2rem; font-size: 1.05rem; }
.steps span { color: var(--ink-soft); }
