/* ============================================================================
   ShellBoard — marketing subpage of calmbit.cz
   Linear / Raycast aesthetic: matte dark neutrals + soft violet accent.
   Everything is scoped under `.shellboard` so it never leaks into the rest
   of the site. Tokens mirror the design handoff `tokens.css` (dark variant).
   ============================================================================ */

.shellboard {
  /* fonts */
  --font-ui: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* surfaces */
  --bg-0: #0d0e11;
  --bg-1: #131418;
  --bg-2: #181a1f;
  --bg-3: #1f2128;
  --bg-4: #262932;
  --bg-pop: #1b1d23;

  /* lines */
  --line: #23262e;
  --line-strong: #2e323c;
  --line-faint: #1c1e24;

  /* text */
  --fg: #e8e9ee;
  --fg-2: #c4c7d1;
  --muted: #8a8f9c;
  --subtle: #5b6070;
  --faint: #3d4150;

  /* accent (violet) */
  --accent: #8b7df7;
  --accent-strong: #a89bff;
  --accent-soft: rgba(139, 125, 247, 0.14);
  --accent-ring: rgba(139, 125, 247, 0.45);

  /* status */
  --green: #6ec27a;
  --orange: #e8a564;
  --red: #e57373;
  --yellow: #d8c66b;
  --cyan: #6dc7c7;
  --blue: #7aa8e8;
  --pink: #d98ec9;

  /* per-project tints */
  --proj-green: #6ec27a;
  --proj-orange: #e8a564;
  --proj-violet: #a896ee;
  --proj-blue: #7aa8e8;
  --proj-pink: #d98ec9;
  --proj-cyan: #6dc7c7;
  --proj-yellow: #d8c66b;
  --proj-slate: #8a8f9c;

  /* radii */
  --r-1: 4px;
  --r-2: 6px;
  --r-3: 8px;
  --r-4: 10px;
  --r-5: 14px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.025) inset, 0 24px 60px -24px rgba(0,0,0,0.6), 0 6px 18px -8px rgba(0,0,0,0.4);
  --shadow-pop: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 80px -10px rgba(0,0,0,0.7), 0 8px 24px -10px rgba(0,0,0,0.5);

  background: var(--bg-0);
  color: var(--fg);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

@keyframes sbBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ---------- layout primitives ---------- */
.sb-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.sb-mono { font-family: var(--font-mono); font-feature-settings: "calt", "liga"; }

.shellboard section { border-top: 1px solid var(--line-faint); }
.sb-section { padding: 110px 0; background: var(--bg-0); }
.sb-section--alt { background: var(--bg-1); }
.sb-section--relative { position: relative; overflow: hidden; }

/* ~/path kicker — the calmbit signature */
.sb-kicker {
  font-family: var(--font-mono);
  color: var(--accent-strong);
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0;
  margin: 0;
}
.sb-kicker .sb-kicker__dollar { color: var(--subtle); }
.sb-kicker .sb-kicker__cursor {
  width: 7px;
  height: 15px;
  background: var(--accent);
  display: inline-block;
  animation: sbBlink 1.1s steps(2) infinite;
}

/* section head */
.sb-head { margin-bottom: 56px; }
.sb-head--center { text-align: center; max-width: 720px; margin-inline: auto; }
.sb-h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 18px 0 0;
  font-weight: 600;
  color: var(--fg);
  white-space: pre-line;
  text-wrap: balance;
}
.sb-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 620px;
  text-wrap: pretty;
}
.sb-head--center .sb-lead { margin-inline: auto; }

/* buttons */
.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 550;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--accent-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 8px 24px -10px var(--accent-ring);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sb-btn:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 12px 30px -10px var(--accent-ring); }
.sb-btn--lg { padding: 14px 22px; font-size: 15.5px; }
.sb-btn svg { width: 15px; height: 15px; }

.sb-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 500;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  background: transparent;
  transition: border-color .15s ease, background .15s ease;
}
.sb-ghost:hover { border-color: var(--accent-ring); background: var(--accent-soft); }
.sb-ghost--lg { padding: 14px 20px; font-size: 15.5px; }

/* generic card */
.sb-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
}

/* ============================================================================
   SCALED APP MOCK — wrapper; the .sb-app artboard is styled in mock.css
   ============================================================================ */
/* The .sb-app artboard keeps a fixed 1280px layout width and is only visually
   shrunk via transform: scale(). The artboard is taken out of flow (absolute)
   so its fixed width never expands its grid/flex track or forces page-wide
   horizontal scroll; the wrapper reserves height via aspect-ratio (JS refines
   it) and clips with a margin so the soft shadow still shows. */
.sb-scaled { width: 100%; min-width: 0; position: relative; overflow: clip; overflow-clip-margin: 100px; aspect-ratio: 1280 / 800; }
.sb-scaled .sb-app { position: absolute; top: 0; left: 0; transform-origin: 0 0; }

/* ============================================================================
   HERO
   ============================================================================ */
.sb-hero { position: relative; overflow: hidden; background: var(--bg-0); border-top: none; }
.sb-hero__glow {
  position: absolute;
  inset: -220px 0 auto 0;
  height: 760px;
  background: radial-gradient(58% 80% at 50% 0%, var(--accent-soft), rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.sb-hero__inner { position: relative; padding-top: 76px; padding-bottom: 36px; }
.sb-hero__copy { text-align: center; max-width: 840px; margin: 0 auto; }
.sb-hero__badgerow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.sb-hero__icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--bg-3); border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.sb-hero__path { color: var(--muted); font-size: 13px; }
.sb-badge {
  padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 500;
  background: var(--accent-soft); color: var(--accent-strong); border: 1px solid var(--accent-ring);
}
.sb-hero h1 {
  font-size: clamp(40px, 6.4vw, 70px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 22px;
  font-weight: 600;
  color: var(--fg);
  text-wrap: balance;
}
.sb-hero h1 em { font-style: italic; color: var(--accent-strong); font-weight: 600; }
.sb-hero__sub {
  font-size: 19px; line-height: 1.55; color: var(--fg-2);
  max-width: 640px; margin: 0 auto 32px; text-wrap: pretty;
}
.sb-hero__actions {
  display: inline-flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.sb-hero__note { margin-top: 20px; color: var(--muted); font-size: 12.5px; }
.sb-hero__mock { margin-top: 56px; }
.sb-hero__builton { text-align: center; color: var(--muted); font-size: 12.5px; }
.sb-hero__builton b { color: var(--fg-2); font-weight: 400; }

/* ============================================================================
   WHY — differentiator cards
   ============================================================================ */
.sb-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.sb-why-card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.sb-why-card__n { font-family: var(--font-mono); color: var(--accent-strong); font-size: 13px; }
.sb-why-card h3 { margin: 0; font-size: 17.5px; font-weight: 600; letter-spacing: -0.3px; color: var(--fg); }
.sb-why-card p { margin: 0; color: var(--fg-2); font-size: 14px; line-height: 1.55; text-wrap: pretty; }

/* ============================================================================
   HOW — three steps
   ============================================================================ */
.sb-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sb-step { position: relative; padding-top: 8px; }
.sb-step__n {
  font-family: var(--font-mono);
  font-size: 44px; font-weight: 600; line-height: 1;
  color: var(--accent-soft);
  -webkit-text-stroke: 1px var(--accent-ring);
  margin-bottom: 16px;
}
.sb-step h3 { margin: 0 0 10px; font-size: 20px; font-weight: 600; letter-spacing: -0.4px; color: var(--fg); }
.sb-step p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.6; max-width: 320px; text-wrap: pretty; }

/* ============================================================================
   FEATURES — 6 cards with live mini-visuals
   ============================================================================ */
.sb-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.sb-feat {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  display: flex; flex-direction: column; gap: 16px; min-height: 340px;
}
.sb-feat h3 { margin: 0 0 8px; font-size: 17.5px; font-weight: 600; letter-spacing: -0.3px; color: var(--fg); }
.sb-feat p { margin: 0; color: var(--fg-2); font-size: 13.5px; line-height: 1.55; text-wrap: pretty; }
.sb-feat__vis {
  margin-top: auto; padding: 12px; background: var(--bg-2); border-radius: 10px; border: 1px solid var(--line-faint);
}

/* shared mini-visual bits */
.sb-mv { font-family: var(--font-mono); }
.sb-mv-row { display: flex; align-items: center; }

/* sidebar mv */
.sb-mv-sidebar { display: flex; flex-direction: column; gap: 2px; background: var(--bg-1); padding: 10px; border-radius: 8px; }
.sb-mv-sidebar__label { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); letter-spacing: 0.6px; padding: 2px 4px 6px; }
.sb-mv-proj { display: flex; align-items: center; gap: 8px; padding: 0 8px; height: 26px; border-radius: 5px; color: var(--fg-2); font-size: 12px; }
.sb-mv-proj.is-active { background: var(--bg-3); color: var(--fg); }
.sb-mv-proj__dot { width: 6px; height: 6px; border-radius: 50%; flex: 0 0 auto; }
.sb-mv-proj__name { flex: 1; }
.sb-mv-proj__act { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* split mv */
.sb-mv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; min-height: 140px; }
.sb-mv-pane { background: var(--bg-2); border-radius: 6px; outline: 1px solid var(--line); padding: 10px; }
.sb-mv-pane.is-focus { outline: 1.5px solid var(--accent); outline-offset: -1px; box-shadow: 0 0 0 4px var(--accent-soft); }
.sb-mv-pane__head { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); margin-bottom: 6px; display: flex; gap: 6px; align-items: center; }
.sb-mv-pane__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); }
.sb-mv-pane.is-focus .sb-mv-pane__dot { background: var(--accent); }
.sb-mv-pane__body { font-family: var(--font-mono); font-size: 10.5px; line-height: 1.5; color: var(--fg-2); }

/* palette + search mv (popover style) */
.sb-mv-pop { background: var(--bg-pop); border-radius: 8px; border: 1px solid var(--line-strong); overflow: hidden; }
.sb-mv-pop__search { padding: 9px 12px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px; font-size: 12px; }
.sb-mv-pop__cursor { width: 1.5px; height: 12px; background: var(--accent); animation: sbBlink 1s steps(2) infinite; }
.sb-mv-pop__hits { font-family: var(--font-mono); color: var(--muted); margin-left: auto; }
.sb-mv-cmd { display: flex; align-items: center; gap: 10px; padding: 6px 12px; font-size: 12px; color: var(--fg-2); }
.sb-mv-cmd.is-active { background: var(--bg-3); color: var(--fg); }
.sb-mv-cmd__label { flex: 1; }
.sb-mv-kbd { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); padding: 1px 6px; border: 1px solid var(--line-strong); border-radius: 4px; }
.sb-mv-hit { padding: 7px 12px; border-top: 1px solid var(--line-faint); font-size: 11.5px; display: flex; gap: 10px; font-family: var(--font-mono); }
.sb-mv-hit__p { color: var(--muted); }
.sb-mv-hit__f { color: var(--fg-2); }
.sb-mv-hit__t { color: var(--accent-strong); margin-left: auto; }

/* git mv */
.sb-mv-git { background: var(--bg-1); border-radius: 6px; border: 1px solid var(--line); overflow: hidden; }
.sb-mv-git__row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; font-size: 11.5px; font-family: var(--font-mono); }
.sb-mv-git__row + .sb-mv-git__row { border-top: 1px solid var(--line-faint); }
.sb-mv-git__branch { color: var(--fg-2); flex: 1; }
.sb-mv-git .c-green { color: var(--green); }
.sb-mv-git .c-red { color: var(--red); }
.sb-mv-git .c-orange { color: var(--orange); }
.sb-mv-git .c-accent { color: var(--accent-strong); }
.sb-mv-icon { color: var(--muted); display: inline-flex; }

/* tabs mv */
.sb-mv-tabs { display: flex; gap: 3px; align-items: center; background: var(--bg-1); padding: 6px; border-radius: 6px; flex-wrap: wrap; }
.sb-mv-tab { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 4px; font-size: 11.5px; color: var(--fg-2); }
.sb-mv-tab.is-active { background: var(--bg-3); color: var(--fg); font-weight: 500; }
.sb-mv-tab__act { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.sb-mv-tab__x { margin-left: 2px; color: var(--muted); }

.sb-feat .c-green { color: var(--green); }
.sb-feat .c-muted { color: var(--muted); }
.sb-feat .c-cyan { color: var(--cyan); }

/* ============================================================================
   SCREENS — gallery
   ============================================================================ */
.sb-screens__hero { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.sb-screens__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 22px; margin-top: 40px; }
.sb-screens__col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.sb-cap { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0; text-align: center; max-width: 560px; margin-inline: auto; text-wrap: pretty; }

/* ============================================================================
   THEMES — 10 cards
   ============================================================================ */
.sb-themes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.sb-theme {
  border-radius: 10px; padding: 14px; border: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono); font-size: 10.5px; line-height: 1.5; min-height: 124px; overflow: hidden;
}
.sb-theme__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.sb-theme__name { font-size: 9.5px; letter-spacing: 0.6px; text-transform: uppercase; font-family: var(--font-ui); font-weight: 600; }
.sb-theme__dots { display: flex; gap: 3px; }
.sb-theme__dots span { width: 7px; height: 7px; border-radius: 50%; }
.sb-theme__cursor { display: inline-block; width: 6px; height: 11px; vertical-align: -1px; }

/* ============================================================================
   SHORTCUTS
   ============================================================================ */
.sb-2col {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 56px;
  align-items: flex-start;
}
.sb-shortcuts__aside { position: sticky; top: 92px; }
.sb-h2--sm { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12; letter-spacing: -1px; margin: 18px 0 18px; font-weight: 600; color: var(--fg); }
.sb-shortcuts__lead { color: var(--fg-2); font-size: 15px; margin: 0; line-height: 1.6; text-wrap: pretty; }
.sb-broadcast { margin-top: 26px; padding: 16px; background: var(--bg-2); border-radius: 12px; border: 1px solid var(--line); }
.sb-broadcast__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sb-broadcast__head span { font-size: 13.5px; font-weight: 600; color: var(--fg); }
.sb-broadcast__head svg { color: var(--accent-strong); width: 15px; height: 15px; }
.sb-broadcast p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.sb-keys-table { background: var(--bg-2); border-radius: 14px; border: 1px solid var(--line); overflow: hidden; }
.sb-keys-row { display: flex; align-items: center; padding: 13px 22px; gap: 16px; }
.sb-keys-row + .sb-keys-row { border-top: 1px solid var(--line-faint); }
.sb-keys-row:nth-child(even) { background: rgba(255,255,255,0.012); }
.sb-keys-row__label { flex: 1; color: var(--fg); font-size: 14px; }
.sb-keys-row__keys { display: inline-flex; gap: 4px; }
.sb-key {
  font-family: var(--font-mono);
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px; padding: 0 7px;
  border-radius: 5px; background: var(--bg-3); color: var(--fg); font-size: 11.5px; font-weight: 500;
  border: 1px solid var(--line-strong); box-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

/* ============================================================================
   DOWNLOAD
   ============================================================================ */
.sb-download { position: relative; overflow: hidden; padding-bottom: 130px; }
.sb-download__glow { position: absolute; inset: auto 0 -240px 0; height: 640px; background: radial-gradient(50% 80% at 50% 100%, var(--accent-soft), rgba(0,0,0,0) 70%); pointer-events: none; }
.sb-dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.sb-plat { background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.sb-plat--primary { background: var(--bg-2); border-color: var(--accent-ring); box-shadow: 0 0 0 4px var(--accent-soft); }
.sb-plat__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.sb-plat__os { font-size: 19px; font-weight: 600; color: var(--fg); letter-spacing: -0.4px; }
.sb-plat__detail { font-family: var(--font-mono); font-size: 11px; color: var(--accent-strong); }
.sb-plat__note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; flex: 1; text-wrap: pretty; }
.sb-plat__soon { display: inline-flex; align-self: flex-start; padding: 11px 18px; border-radius: 10px; border: 1px dashed var(--line-strong); color: var(--muted); font-size: 14px; }
.sb-store { margin-top: 18px; display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap; padding: 16px 22px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; max-width: 720px; margin-inline: auto; }
.sb-store__text { color: var(--fg-2); font-size: 14px; text-wrap: pretty; }
.sb-dl-version { text-align: center; margin-top: 22px; color: var(--muted); font-size: 12px; }

/* ============================================================================
   FAQ
   ============================================================================ */
.sb-faq__aside h2 { margin-top: 18px; }
.sb-faq__lead { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.6; }
.sb-faq__lead a { color: var(--accent-strong); text-decoration: none; font-family: var(--font-mono); }
.sb-faq-list { background: var(--bg-2); border-radius: 14px; border: 1px solid var(--line); overflow: hidden; }
.sb-faq__item + .sb-faq__item { border-top: 1px solid var(--line-faint); }
.sb-faq__q {
  width: 100%; display: flex; align-items: center; gap: 16px; padding: 19px 24px;
  background: transparent; border: none; color: var(--fg); font-size: 15px; font-weight: 500;
  text-align: left; cursor: pointer; font-family: inherit;
}
.sb-faq__q > span:first-child { flex: 1; text-wrap: pretty; }
.sb-faq__icon {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line-strong);
  color: var(--muted); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  transition: transform .18s ease;
}
.sb-faq__icon svg { width: 12px; height: 12px; }
.sb-faq__item.is-open .sb-faq__icon { transform: rotate(45deg); }
.sb-faq__a { display: none; padding: 0 24px 22px; color: var(--fg-2); font-size: 14px; line-height: 1.6; max-width: 640px; text-wrap: pretty; }
.sb-faq__item.is-open .sb-faq__a { display: block; }

/* ============================================================================
   FOOTER (ShellBoard / calmbit company info)
   ============================================================================ */
.sb-footer { background: var(--bg-0); border-top: 1px solid var(--line-faint); padding: 54px 0 48px; }
.sb-footer__row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.sb-wordmark { text-decoration: none; display: inline-flex; align-items: baseline; gap: 1px; }
.sb-wordmark span:first-child { font-size: 16px; font-weight: 600; letter-spacing: -0.4px; color: var(--fg-2); }
.sb-wordmark__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); display: inline-block; margin-left: 2px; align-self: center; }
.sb-footer__sep { color: var(--faint); }
.sb-footer__app { display: inline-flex; align-items: center; gap: 7px; color: var(--fg-2); font-size: 13.5px; }
.sb-footer__links { display: flex; gap: 18px; margin-left: auto; }
.sb-footer__links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.sb-footer__links a:hover { color: var(--fg-2); }
.sb-footer__divider { height: 1px; background: var(--line-faint); margin: 0 0 22px; }
.sb-footer__company { margin: 0 0 6px; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.sb-footer__registry { margin: 0 0 18px; color: var(--subtle); font-size: 12px; line-height: 1.6; }
.sb-footer__tagline { margin: 0; color: var(--fg-2); font-size: 12.5px; font-family: var(--font-mono); }

/* ============================================================================
   RESPONSIVE — single breakpoint at 860px (matches the design)
   ============================================================================ */
@media (max-width: 860px) {
  .sb-section { padding: 78px 0; }
  .sb-2col { grid-template-columns: 1fr; gap: 32px; }
  .sb-shortcuts__aside { position: static; }
  .sb-screens__grid { grid-template-columns: 1fr; }
  .sb-hero__inner { padding-top: 56px; }
  .sb-hero h1 { letter-spacing: -1px; }
}
