:root {
  --ink: #16181d;
  --ink-soft: #4a505c;
  --bg: #fbfbfa;
  --bg-soft: #f2f2f0;
  --line: #e2e5ea;
  --accent: #1a5fd0;
  --accent-ink: #ffffff;
  --surface: #ffffff;
  --surface-dark: #16181d;
  --surface-bar: #e9e9e6;
  --surface-bar-line: #d6d6d2;
  --surface-hover: #fcfcfb;
  --surface-head: #f1f3f6;
  --line-card: #e0e2e0;
  --line-strong: #c9c9c4;
  --tone-good: #12794b;
  --tone-warn: #b8641c;
  --tone-bad: #b03055;
  --tone-ok: #0d6a41;
  --tone-err: #9d2751;
  --hero-base: #16181d;
  --hero-navy: #131a2a;
  --hero-petrol: #0f1f28;
  --hero-plum: #1b1626;
  --hero-forest: #10201a;
  --hero-slate: #191d24;
  --hero-indigo: #191630;
  --hero-steel: #141b22;
  --hero-ink: #12141c;
  --radius: 10px;
  --wrap: 82.5rem;
  --measure: 38rem;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "Cascadia Mono", Consolas, monospace;
}
:root { color-scheme: light; }
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
img { max-width: 100%; height: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
a { color: var(--accent); text-underline-offset: 0.15em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.6rem 1rem;
  z-index: 10;
}
.skip-link:focus { left: 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  min-height: 3.75rem;
  padding-block: 0.6rem;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; height: 30px; width: auto; }
@media (max-width: 30rem) { .brand img { height: 26px; } }
.site-header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--ink); }
.site-header nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .header-actions { display: none; }
}
.header-link {
  display: inline-block;
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
}
.header-link:hover { background: var(--accent); color: var(--accent-ink); }
.header-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.has-submenu details { position: relative; }
.has-submenu summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 500;
}
.has-submenu summary::-webkit-details-marker { display: none; }
.has-submenu summary::after {
  content: "";
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin-left: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15em) rotate(45deg);
}
.has-submenu details[open] summary::after { transform: translateY(0.1em) rotate(-135deg); }
.has-submenu summary:hover { color: var(--ink); }
.submenu {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.4rem;
  min-width: 13rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.12);
}
.submenu li a {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}
.submenu li a:hover { background: var(--bg-soft); color: var(--ink); }
@media (min-width: 52rem) {
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
  }
}
.breadcrumbs { padding-block: 3rem 0; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.breadcrumbs a { color: var(--ink); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: #9aa1ad;
}
.breadcrumb-bar:has(+ main > .s-hero-soft:first-child) {
  background: var(--bg-soft);
}
.breadcrumb-bar:has(+ main > .s-hero-soft:first-child) .breadcrumbs {
  padding-bottom: 0;
}
.breadcrumb-bar:has(+ main > .s-hero-soft:first-child) + main > .s-hero-soft .s-hero-grid {
  padding-top: 0;
}
h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-block: 1.8em 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-top: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 1.75rem); }
h3 { font-size: 1.2rem; }
.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: var(--measure);
  text-wrap: pretty;
}
.meta {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-block: 0.25rem;
}
.prose { padding-block: 1rem 4rem; }
body.post {
  --rail: 20rem;
  --post-wrap: var(--wrap);
}
body.post .breadcrumbs,
body.post .post-grid,
body.post .related { max-width: var(--post-wrap); }
.post-head h1 { margin-block: 0 0.3em; text-wrap: wrap; }
.post-head .meta { padding-bottom: 1.25rem; }
.post-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
  margin-top: 2rem;
}
.post-grid > * { min-width: 0; }
@media (min-width: 62rem) {
  .post-grid {
    grid-template-columns: minmax(0, 1fr) var(--rail);
    grid-template-rows: auto 1fr;
    row-gap: 0;
  }
  .post-head { grid-column: 1; grid-row: 1; }
  .prose { grid-column: 1; grid-row: 2; }
  .post-rail {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: sticky;
    top: 5rem;
  }
}
.post-grid .prose { padding-top: 0; }
.post-grid .prose > :first-child { margin-top: 0; }
.post-grid .prose > *:not(img):not(.hero-image):not(.tags):not(table):not(pre) { max-width: none; }
.post-rail { display: grid; gap: 1.5rem; }
.rail-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.6rem;
}
.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
}
.toc li { margin: 0; }
.toc a {
  display: block;
  padding: 0.3rem 0 0.3rem 0.85rem;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--ink-soft);
  text-decoration: none;
}
.toc a:hover { color: var(--accent); border-left-color: var(--accent); }
.rail-author {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1.2rem;
  background: var(--bg-soft);
}
.rail-author-head { display: flex; align-items: center; gap: 0.7rem; }
.author-avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: var(--bg);
}
.author-name { margin: 0; font-weight: 600; font-size: 0.95rem; }
.author-name a { color: var(--ink); text-decoration: none; }
.author-name a:hover { color: var(--accent); }
.author-role { margin: 0.1rem 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.author-bio { margin: 0.6rem 0 0; font-size: 0.875rem; line-height: 1.5; color: var(--ink-soft); }
.prose > *:not(img):not(.hero-image):not(.tags):not(table):not(pre) { max-width: var(--measure); }
.prose p, .prose li { text-wrap: pretty; }
.prose li + li { margin-top: 0.5rem; }
.prose li > ul,
.prose li > ol { margin-block: 0.5rem; }
.prose li > p { margin-block: 0; }
.prose li > p + p { margin-top: 0.6rem; }
.prose li > img,
.prose li > p > img {
  display: block;
  margin-block: 0.75rem;
}
.prose blockquote {
  margin-inline: 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--line);
  color: var(--ink-soft);
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-soft);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}
.prose pre,
.prose pre.shiki {
  background: #303446;
  color: #c6d0f5;
  border: 0;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.6;
  tab-size: 4;
}
.prose pre code {
  background: none;
  padding: 0;
  font-size: inherit;
  white-space: pre;
}
.hero-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-block: 1.5rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 1.5rem;
  font-size: 0.95rem;
}
.prose table { display: block; overflow-x: auto; max-width: 100%; }
.prose.release-notes h2:has(+ p > em:only-child) {
  display: inline-block;
  margin-right: 0.75rem;
  vertical-align: baseline;
}
.prose.release-notes h2:has(+ p > em:only-child) + p {
  display: inline-block;
  margin: 0;
  vertical-align: baseline;
}
.prose.release-notes h2 + p em {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
th, td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { font-weight: 600; }
.button {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
}
.button:hover { filter: brightness(1.08); }
.button-sm { padding: 0.45rem 0.95rem; font-size: 0.95rem; }
main > section.wrap { padding-block: 1rem 3rem; }
main > section.wrap:first-child { padding-top: 0; }
main > section.wrap > h2 { margin-top: 0; }
.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
}
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.card-media { display: block; }
.card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-soft);
}
.card-body { padding: 1rem 1.1rem 1.25rem; }
.card-body :is(h2, h3) { margin-block: 0 0.35rem; font-size: 1.05rem; }
.card-body :is(h2, h3) a { color: var(--ink); text-decoration: none; }
.card-body :is(h2, h3) a:hover { color: var(--accent); }
.card-body p { margin-block: 0.35rem 0; font-size: 0.95rem; color: var(--ink-soft); }
section.related { padding-bottom: 4rem; }
.site-footer {
  background: var(--surface-dark);
  padding-block: 3rem;
  color: #c3c9d4;
  font-size: 1rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 48rem) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-col h2 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.9rem;
  letter-spacing: 0.02em;
}
.footer-blurb {
  margin: 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #8b93a1;
}
.footer-blurb b {
  color: #9ec9ff;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-base {
  border-top: 1px solid #2b2f38;
  padding-top: 1.5rem;
}
.footer-links a {
  color: #e8eaef;
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.site-footer p { margin: 0; }
@media print {
  .site-header, .site-footer, .breadcrumbs, .related { display: none; }
}
.s-sec { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.s-sec + .s-sec { border-top: 1px solid var(--line); }
main > .s-sec:first-child { padding-top: clamp(2rem, 3.5vw, 3rem); }
main > .s-sec:first-child .s-head { margin-bottom: 2.25rem; }
main > .s-sec:first-child:has(.s-prose-center) { padding-bottom: 0; }
main > .s-sec:first-child:has(.s-prose-center) + .s-sec {
  border-top: none;
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}
.s-soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.s-soft:has(+ .s-soft) { border-bottom: none; }
.s-soft + .s-soft { border-top: none; }
.s-head { text-align: center; margin-bottom: 3rem; }
.s-sec h2 { margin-block: 0 0.5rem; font-size: clamp(1.5rem, 2.8vw, 2rem); }
.s-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 0 auto; max-width: 90ch; }
.s-lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); margin: 0 0 1.5rem; max-width: 50ch; }
.s-btns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 0; }
.s-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.65rem 1.2rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 0.12s ease, border-color 0.12s ease;
}
.s-btn-solid { background: var(--accent); color: var(--accent-ink); }
.s-btn-solid:hover { filter: brightness(1.08); text-decoration: none; }
.s-btn-line { color: var(--ink); border-color: var(--line-strong); }
.s-btn-line:hover { border-color: var(--ink); text-decoration: none; }
.s-btn-line.s-on-light { color: #fff; border-color: #3d424b; }
.s-btn-line.s-on-light:hover { border-color: #8b93a1; }
.s-hero { background: var(--hero-base); border-bottom: 1px solid #2b2f38; color: #fff; }
.s-hero.s-hero-soft {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.s-hero.s-hero-soft h1 { color: var(--ink); }
.s-hero.s-hero-soft .s-lede { color: var(--ink-soft); }
.s-hero.s-hero-soft .s-meta { color: var(--ink-soft); }
.s-hero.s-hero-soft .s-meta .dot { background: #c9c9c4; }
.s-hero.s-hero-soft .s-trust { color: var(--ink-soft); }
.s-hero.s-hero-soft .s-hero-pill {
  background: color-mix(in srgb, var(--accent) 9%, var(--bg));
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  color: var(--accent);
}
.s-hero.s-hero-soft .s-hero-watch a { color: var(--ink-soft); }
.s-hero.s-hero-soft .s-hero-watch a:hover { color: var(--accent); }
.s-hero.s-hero-soft .s-hero-media img { border-color: var(--line); }
.s-hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3rem, 5.5vw, 4.5rem);
}
.s-hero:has(.s-hero-pills) .s-hero-grid { padding-bottom: clamp(1.5rem, 2.5vw, 2.25rem); }
@media (min-width: 60rem) {
  .s-hero-grid { grid-template-columns: 1fr 1.05fr; }
}
.s-hero-pill {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgb(26 95 208 / 0.28);
  border: 1px solid rgb(122 167 245 / 0.45);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ec9ff;
}
.s-hero h1 { margin-block: 0 0.5em; color: #fff; }
.s-hero .s-lede { color: #c3c9d4; }
.s-trust { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin: 1.2rem 0 0; font-size: 0.92rem; color: #98a0ad; }
.s-stars { color: #e8b84b; letter-spacing: 1px; }
.s-hero-watch { margin: 0.9rem 0 0; text-align: center; font-size: 0.95rem; }
.s-hero-watch a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #c3c9d4;
  text-decoration: none;
  font-weight: 500;
}
.s-hero-watch a:hover { color: #fff; text-decoration: underline; text-underline-offset: 0.25em; }
.s-hero-watch svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-hero-media img,
.s-media-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.45);
}
.s-stats { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.s-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 1.25rem 2rem;
  padding-block: 1.25rem;
  text-align: center;
}
.s-stats-row b { display: block; font-size: 1.5rem; letter-spacing: -0.02em; }
.s-stats-row span { font-size: 0.85rem; color: var(--ink-soft); }
.s-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: 2.75rem 3rem;
}
.s-feature { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.s-feature:nth-child(6n + 1) { --c: #1a5fd0; }
.s-feature:nth-child(6n + 2) { --c: #0d6a41; }
.s-feature:nth-child(6n + 3) { --c: #6b3fa0; }
.s-feature:nth-child(6n + 4) { --c: #a8541b; }
.s-feature:nth-child(6n + 5) { --c: #9d2751; }
.s-feature:nth-child(6n + 6) { --c: #0b6a86; }
.s-feature-link { text-decoration: none; color: inherit; }
.s-feature-link:hover { text-decoration: none; }
.s-feature-link:hover h3 { color: var(--c); text-decoration: underline; text-underline-offset: 0.2em; }
.s-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 24%, var(--line));
}
.s-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-feature h3 { margin: 0 0 0.2rem; font-size: 1.02rem; }
.s-feature p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.s-media { padding-block: clamp(3.5rem, 6vw, 5.5rem); border-top: 1px solid var(--line); }
.s-media.s-dark { background: var(--surface-dark); color: #e8eaef; border-top-color: #2b2f38; }
.s-media.s-dark h2, .s-media.s-dark h3 { color: #fff; }
.s-media.s-dark p { color: #c3c9d4; }
.s-media-grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 60rem) {
  .s-media-grid { grid-template-columns: 1fr 1.15fr; }
  .s-flip .s-media-copy { order: 2; }
  .s-flip .s-media-grid { grid-template-columns: 1.15fr 1fr; }
}
.s-media h2 { margin-block: 0 0.7rem; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.s-media p { margin-block: 0 0.9rem; color: var(--ink-soft); }
.s-points { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 0.45rem; }
.s-points li { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; font-size: 0.95rem; }
.s-points li::before {
  content: "";
  width: 1.45em;
  height: 1.45em;
  margin-top: 0.1em;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 20%, transparent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5fd0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 0.95em no-repeat;
}
.s-dark .s-points li::before {
  background: rgb(158 201 255 / 0.16)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ec9ff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 0.95em no-repeat;
}
.s-shot-zoom { position: relative; display: block; }
.s-shot-zoom-badge {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.8rem;
  line-height: 1;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgb(22 24 29 / 0.82);
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.18);
}
.s-shot-zoom:hover .s-shot-zoom-badge { background: rgb(22 24 29 / 0.95); }
.s-shot-zoom:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.s-shot-crop .s-shot-zoom { position: static; }
.s-shot-crop .s-shot-zoom-badge { position: absolute; }
.s-shot-crop {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--shot-ratio, 1.61);
  border-radius: var(--radius);
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.45);
}
.s-media:not(.s-dark) .s-shot-crop {
  border-color: var(--line);
  box-shadow: 0 12px 34px rgb(0 0 0 / 0.10);
}
.s-shot-crop img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--shot-zoom, 150%);
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.s-dark .s-media-shot img { border-color: rgb(255 255 255 / 0.14); }
.s-media:not(.s-dark) .s-media-shot img {
  border-color: var(--line);
  box-shadow: 0 12px 34px rgb(0 0 0 / 0.10);
}
.s-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 1.5rem 2rem;
  margin-top: 0.5rem;
}
.s-metrics b {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent);
}
.s-metrics span { font-size: 0.9rem; color: var(--ink-soft); }
.s-checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); gap: 0 2.5rem; }
.s-checklist > div {
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px dotted var(--line);
  color: var(--ink-soft);
}
.s-checklist > div::before { content: "+"; font-family: var(--font-mono); color: var(--accent); font-weight: 700; }
.s-checklist b { color: var(--ink); font-weight: 600; }
.s-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); gap: 1.25rem; }
.s-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem;
}
.s-tier-featured { border-color: var(--accent); box-shadow: 0 10px 30px color-mix(in srgb, var(--accent) 14%, transparent); }
.s-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.3rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.s-tier h3 { margin: 0; font-size: 1.05rem; }
.s-price { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.03em; margin: 0.2rem 0 0.6rem; }
.s-tier p { color: var(--ink-soft); font-size: 0.93rem; margin: 0 0 1.2rem; }
.s-tier .s-btn { width: 100%; justify-content: center; margin-top: auto; }
.s-faq { max-width: 52rem; margin-inline: auto; }
.s-qa { border-top: 1px solid var(--line); padding: 1rem 0; }
.s-qa:last-child { border-bottom: 1px solid var(--line); }
.s-qa h3 { margin: 0 0 0.3rem; font-size: 1.02rem; }
.s-qa p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
.s-cta { text-align: center; }
.s-cta h2 { margin-bottom: 1.75rem; }
.s-cta h2:has(+ .s-sub) { margin-bottom: 0.5rem; }
.s-cta .s-sub { margin: 0 auto 1.75rem; }
.s-cta .s-btns { justify-content: center; }
.s-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #98a0ad;
  margin: 0 0 1.5rem;
}
.s-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #3d424b; }
.s-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.s-product {
  flex: 1 1 20rem;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line-card);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgb(22 24 29 / 0.04), 0 6px 18px rgb(22 24 29 / 0.05);
  text-decoration: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}
.s-product:hover {
  text-decoration: none;
  border-color: color-mix(in srgb, var(--c) 45%, var(--line));
  box-shadow: 0 10px 28px color-mix(in srgb, var(--c) 12%, transparent);
  transform: translateY(-2px);
}
.s-product-go { margin-top: auto; padding-top: 0.3rem; }
.s-form-status {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 1rem;
}
.s-form-status:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.s-form-ok {
  background: color-mix(in srgb, var(--tone-ok) 8%, var(--bg));
  border-color: color-mix(in srgb, var(--tone-ok) 25%, var(--line));
  color: var(--tone-ok);
}
.s-form-err {
  background: color-mix(in srgb, var(--tone-err) 8%, var(--bg));
  border-color: color-mix(in srgb, var(--tone-err) 25%, var(--line));
  color: var(--tone-err);
}
.s-bio { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (min-width: 45rem) {
  .s-bio { grid-template-columns: 1fr auto; }
}
.s-bio-copy h2 { margin: 0 0 0.2rem; font-size: 1.35rem; letter-spacing: -0.01em; }
.s-bio-copy h2 a { color: var(--accent); text-decoration: none; }
.s-bio-copy h2 a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.s-bio-role { margin: 0 0 1rem; color: var(--ink-soft); font-size: 0.95rem; }
.s-bio-copy p { margin: 0 0 1rem; color: var(--ink-soft); }
.s-bio-copy p:last-child { margin-bottom: 0; }
.s-bio-photo { display: block; }
.s-bio-photo img {
  width: clamp(7rem, 14vw, 9.5rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}
.s-plist {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.s-plist-row {
  background: var(--surface);
  display: grid;
  grid-template-columns: auto minmax(11rem, auto) 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.12s ease;
}
.s-plist-row:hover { background: var(--surface-hover); }
.s-plist-row:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.s-plist-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 24%, var(--line));
}
.s-plist-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-plist-name b { display: block; font-size: 1.05rem; font-weight: 650; }
.s-plist-name span {
  font-family: var(--font-mono, ui-monospace, Consolas, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.s-plist-row p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.s-plist-go { color: var(--accent); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.s-plist-row.accent-directory { --c: var(--accent); }
.s-plist-row.accent-cloud { --c: #0b6a86; }
.s-plist-row.accent-audit { --c: #7d490d; }
.s-plist-row.accent-reports { --c: #0d6a41; }
.s-plist-row.accent-free { --c: #9d2751; }
@media (max-width: 60rem) {
  .s-plist-row { grid-template-columns: auto 1fr auto; }
  .s-plist-row p { grid-column: 2 / -1; }
}
.s-pshow-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.s-pshow {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--c);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.s-pshow:hover { border-color: var(--c); box-shadow: 0 8px 24px rgb(0 0 0 / 0.07); }
.s-pshow:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.s-pshow-kicker {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c);
}
.s-pshow h2 { margin: 0 0 0.5rem; font-size: 1.4rem; letter-spacing: -0.015em; }
.s-pshow p { margin: 0 0 1.25rem; color: var(--ink-soft); }
.s-pshow-points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.97rem;
}
.s-pshow-points li { position: relative; padding-left: 1.4rem; }
.s-pshow-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--c);
}
.s-pshow-go { margin-top: auto; align-self: flex-start; font-weight: 600; color: var(--c); }
.s-pshow.accent-directory { --c: var(--accent); }
.s-pshow.accent-cloud { --c: #0b6a86; }
.s-pshow.accent-audit { --c: #7d490d; }
.s-pshow.accent-reports { --c: #0d6a41; }
.s-pshow.accent-free { --c: #9d2751; }
.s-prow-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.s-prow {
  background: var(--surface);
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.12s ease;
}
@media (min-width: 52rem) {
  .s-prow { grid-template-columns: 1fr 20rem; }
}
.s-prow:hover { background: var(--surface-hover); }
.s-prow:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.s-prow-cat {
  font-family: var(--font-mono, ui-monospace, Consolas, monospace);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c);
}
.s-prow h2 { margin: 0.25rem 0 0.5rem; font-size: 1.6rem; letter-spacing: -0.015em; }
.s-prow p { margin: 0 0 1rem; color: var(--ink-soft); font-size: 1.1rem; }
.s-prow-go { color: var(--accent); font-weight: 600; font-size: 1.02rem; }
.s-prow-shot {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 1.7;
  background: var(--bg-soft);
}
.s-prow-shot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 165%;
  height: auto;
  max-width: none;
  display: block;
}
.s-prow.accent-directory { --c: var(--accent); }
.s-prow.accent-cloud { --c: #0b6a86; }
.s-prow.accent-audit { --c: #7d490d; }
.s-prow.accent-reports { --c: #0d6a41; }
.s-prow.accent-free { --c: #9d2751; }
.s-product.accent-directory { --c: var(--accent); }
.s-product.accent-cloud { --c: #0b6a86; }
.s-product.accent-audit { --c: #7d490d; }
.s-product.accent-reports { --c: #0d6a41; }
.s-product.accent-free { --c: #9d2751; }
.s-product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 26%, var(--line));
}
.s-product-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-product-name { display: flex; flex-direction: column; gap: 0.15rem; }
.s-product-name b { font-size: 1.12rem; font-weight: 650; color: var(--ink); letter-spacing: -0.01em; }
.s-product-name > span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c);
}
.s-product p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.s-product-go { font-size: 0.88rem; font-weight: 600; white-space: nowrap; color: var(--accent); }
.s-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); gap: 1.2rem; align-items: start; }
.s-shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}
.s-shot img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: top left; }
.s-shot a { display: block; cursor: zoom-in; }
.s-shot figcaption {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 0.5rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.79rem;
  color: var(--ink-soft);
}
.s-panel {
  background: var(--surface-dark);
  border-radius: 10px;
  padding: clamp(1.6rem, 3vw, 2.3rem) clamp(1.4rem, 2.6vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.1rem) clamp(1.6rem, 3vw, 2.6rem);
}
.s-panel:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 55rem) { .s-panel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 35rem) { .s-panel { grid-template-columns: 1fr; } }
.s-panel-item { display: grid; grid-template-columns: auto 1fr; gap: 0.95rem; align-items: start; }
.s-panel-item svg {
  width: 25px;
  height: 25px;
  margin-top: 0.1rem;
  stroke: #9ec9ff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-panel-item b { display: block; color: #fff; font-size: 1.1rem; font-weight: 640; margin-bottom: 0.2rem; }
.s-panel-item span { display: block; color: #8b93a1; font-size: 1.02rem; line-height: 1.5; }
.s-panel-item span a { color: #9ec9ff; text-decoration: none; }
.s-panel-item span a:hover,
.s-panel-item span a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 0.2em; }
.s-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); gap: 1.4rem 2rem; }
.s-quote { margin: 0; border-left: 2px solid var(--line); padding-left: 1.1rem; }
.s-quote blockquote { margin: 0; padding: 0; border: 0; }
.s-quote p { margin: 0 0 0.7rem; font-size: 0.98rem; color: var(--ink-soft); }
.s-quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.s-quote figcaption b { display: block; color: var(--ink); font-weight: 600; }
.s-quote figcaption img {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.s-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 700 / 510;
  container-type: inline-size;
  font-size: clamp(8.5px, 1.75cqw, 13px);
  color: #16181d;
}
.s-fig-card {
  position: absolute;
  display: block;
  overflow: visible;
  background: var(--surface);
  border: 1px solid rgb(22 24 29 / 0.14);
  border-radius: 12px;
  padding: 0.85em 1em 0.95em;
  font-size: 1em;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.06), 0 14px 34px rgb(0 0 0 / 0.5);
}
.s-fig-pill {
  position: absolute;
  top: -0.9em;
  left: 1.1em;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.24em 0.7em;
  border-radius: 999px;
  white-space: nowrap;
}
.s-fig-title { margin: 0.35em 0 0.7em; font-size: 1.15em; font-weight: 660; line-height: 1.25; }
.s-fig-sub { font-family: var(--font-mono); font-size: 0.72em; color: #6b7280; font-weight: 600; float: right; }
.fig-a { left: 0; top: 12%; width: 47%; }
.fig-a .s-fig-pill { background: #7d490d; }
.fig-a .s-fig-gauge { display: grid; grid-template-columns: auto 1fr; gap: 0.9em; align-items: center; }
.s-fig-dial { position: relative; width: 5.4em; height: 5.4em; }
.s-fig-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.s-fig-dial .track { fill: none; stroke: #eceae6; stroke-width: 6; }
.s-fig-dial .value { fill: none; stroke: #7d490d; stroke-width: 6; }
.s-fig-dial .n { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.9em; font-weight: 700; letter-spacing: -0.03em; }
.fig-a .s-fig-rows div {
  display: flex;
  justify-content: space-between;
  gap: 0.6em;
  background: var(--bg-soft);
  border-radius: 5px;
  padding: 0.3em 0.55em;
  font-size: 0.82em;
  color: #3d424b;
}
.fig-a .s-fig-rows { display: grid; gap: 0.3em; }
.fig-a .s-fig-rows b { font-weight: 700; }
.s-fig-tag {
  margin-top: 0.7em;
  display: inline-block;
  background: #7d490d;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  border-radius: 4px;
}
.fig-b { left: 53%; top: 4%; width: 47%; }
.fig-b .s-fig-pill { background: #1a5fd0; }
.s-fig-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6em;
  align-items: start;
  padding: 0.42em 0;
  border-top: 1px solid var(--line-card);
}
.s-fig-row:first-child { border-top: none; }
.s-fig-row .dot { width: 0.5em; height: 0.5em; border-radius: 50%; margin-top: 0.45em; }
.s-fig-row .who { font-size: 0.86em; font-weight: 650; line-height: 1.35; }
.s-fig-row .who > span { display: block; font-weight: 400; color: #6b7280; font-size: 0.88em; }
.s-fig-row .what { display: block; font-size: 0.93em; font-weight: 400; color: #3d424b; margin-top: 0.15em; }
.s-fig-row .sev {
  font-family: var(--font-mono);
  font-size: 0.64em;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  color: #fff;
  align-self: center;
}
.sev-high .dot, .sev-high .sev { background: #c0392b; }
.sev-med .dot, .sev-med .sev { background: #b8791b; }
.sev-low .dot, .sev-low .sev { background: #0d6a41; }
.fig-c { left: 14%; top: 62%; width: 56%; }
.fig-c .s-fig-pill { background: #0d6a41; }
.s-fig-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7em; margin-bottom: 0.7em; }
.s-fig-nums .v { font-size: 1.55em; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.s-fig-nums .k {
  font-family: var(--font-mono);
  font-size: 0.66em;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.25em;
}
.s-fig-legend { display: grid; gap: 0.28em; }
.s-fig-legend > div { display: grid; grid-template-columns: auto 1fr auto; gap: 0.5em; align-items: center; font-size: 0.8em; color: #3d424b; }
.s-fig-legend .sw { width: 0.55em; height: 0.55em; border-radius: 2px; }
.s-fig-legend .track { height: 0.3em; border-radius: 99px; background: var(--bg-soft); overflow: hidden; }
.s-fig-legend .fill { display: block; height: 100%; border-radius: 99px; }
.s-fig-legend b { font-weight: 700; color: #16181d; min-width: 2.2em; text-align: right; }
.tone-good .v, .tone-good .sw, .tone-good .fill { color: #0d6a41; background-color: currentcolor; }
.tone-warn .v, .tone-warn .sw, .tone-warn .fill { color: #b8791b; background-color: currentcolor; }
.tone-bad .v, .tone-bad .sw, .tone-bad .fill { color: #c0392b; background-color: currentcolor; }
.s-fig-nums .v { background: none !important; }
@media (max-width: 60rem) {
  .s-figure { aspect-ratio: auto; font-size: 13px; display: grid; gap: 1.6rem; }
  .s-fig-card {
    position: static;
    width: 100%;
    border: 1px solid var(--line-card);
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.28), 0 12px 28px rgb(0 0 0 / 0.22);
  }
  .s-fig-pill { position: static; display: inline-block; margin-bottom: 0.3em; }
}
@media (prefers-reduced-motion: reduce) {
  .s-btn { transition: none !important; }
}
.author-page { padding-block: 1rem 4rem; }
.author-intro {
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.author-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-photo {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: var(--bg-soft);
}
.author-head h1 { margin-block: 0; }
.author-title {
  margin-block: 1rem 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.author-intro > p { color: var(--ink-soft); }
.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}
.author-link-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
}
.author-link-icon svg { width: 1.05rem; height: 1.05rem; display: block; }
.author-link-icon:hover { border-color: var(--accent); color: var(--accent); }
.author-links a:not(.author-link-icon) {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-soft);
}
.author-links a:not(.author-link-icon):hover { border-color: var(--accent); color: var(--accent); }
.author-page h2 { margin-block: 0 1.5rem; }
.author-more { margin-block: 2rem 0; font-weight: 600; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-block: 3rem 1rem;
}
.listing { padding-bottom: clamp(3rem, 5vw, 4.5rem); }
.listing .section-label:first-of-type { margin-top: 2rem; }
.cat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.cat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}
.cat-card:hover {
  text-decoration: none;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 12%, transparent);
  transform: translateY(-2px);
}
.cat-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
}
.cat-card-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cat-card h3 { margin: 0; font-size: 1.1rem; color: var(--ink); }
.cat-card-count {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cat-card p { margin: 0.4rem 0 0; font-size: 0.94rem; color: var(--ink-soft); }
.cat-card-go {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
.s-contact-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 60rem) {
  .s-contact-grid { grid-template-columns: minmax(0, 1fr) 22rem; gap: 2rem; }
}
.s-contact-form,
.s-direct {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.s-contact-form h2,
.s-direct h2 { margin-block: 0 1.25rem; font-size: 1.35rem; }
.s-contact-intro { margin-block: -0.75rem 1.25rem; color: var(--ink-soft); }
.s-field-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
@media (min-width: 34rem) {
  .s-field-row { grid-template-columns: 1fr 1fr; }
}
.s-field { margin-block: 0 1rem; }
.s-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.s-field label span { color: #c0392b; }
.s-field input,
.s-field textarea {
  width: 100%;
  font: inherit;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
}
.s-field textarea { resize: vertical; }
.s-field input:focus-visible,
.s-field textarea:focus-visible { border-color: var(--accent); }
.s-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.s-contact-form button {
  font: inherit;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
}
.s-contact-form button:hover { filter: brightness(1.08); }
.s-contact-docs { margin-block: 1.5rem 0; color: var(--ink-soft); font-size: 0.95rem; }
.s-contact-side { display: grid; gap: 1.5rem; align-content: start; }
.s-direct ul { list-style: none; margin: 0; padding: 0; }
.s-direct li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
}
.s-direct svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: var(--ink-soft);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-direct a { color: var(--ink); text-decoration: none; }
.s-direct a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 0.2em; }
.s-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem !important;
  padding-top: 1.25rem !important;
  border-top: 1px solid var(--line);
}
.s-social li { padding: 0; }
.s-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.s-social .s-brand { display: block; color: var(--brand, var(--ink-soft)); }
.s-social svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
  stroke: none;
}
.brand-x { --brand: #16181d; }
.brand-linkedin { --brand: #0a66c2; }
.brand-youtube { --brand: #f0282d; }
.s-social-icon {
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 50%;
  color: var(--ink-soft);
}
.s-social-icon svg { width: 1.05rem; height: 1.05rem; }
.s-social-icon .s-brand { color: inherit; }
.s-social-icon:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.s-more { margin: 2rem 0 0; text-align: center; }
.s-more a { font-weight: 600; text-decoration: none; }
.s-more a:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.s-docs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.s-doc {
  flex: 1 1 20rem;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.s-doc.accent-directory { --c: var(--accent); }
.s-doc.accent-cloud { --c: #0b6a86; }
.s-doc.accent-audit { --c: #7d490d; }
.s-doc.accent-reports { --c: #0d6a41; }
.s-doc.accent-free { --c: #9d2751; }
.s-doc-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.s-doc-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 26%, var(--line));
}
.s-doc-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-doc h2,
.s-doc h3 { margin: 0; font-size: 1.12rem; font-weight: 650; letter-spacing: -0.01em; }
.s-doc > p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.s-doc ul {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.s-doc li { border-bottom: 1px solid var(--line); }
.s-doc li a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.s-doc li a:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.s-doc-all {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--c);
}
.s-doc-all:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.prose-page {
  padding-block: clamp(2rem, 3.5vw, 3rem) 0;
  max-width: 52rem;
  margin-inline: auto;
}
.prose-page h1 { margin-block: 0 0.3em; text-align: center; text-wrap: balance; }
.prose-page .meta { margin: 0; text-align: center; }
.prose-page .prose > *:not(img):not(.hero-image):not(.tags):not(table):not(pre) {
  max-width: none;
}
.prose-page .prose > :first-child { margin-top: 1.5rem; }
.s-team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
}
.s-member {
  flex: 0 1 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}
.s-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.s-member b { font-size: 1.02rem; font-weight: 650; letter-spacing: -0.01em; }
.s-member > span { font-size: 0.9rem; color: var(--ink-soft); }
.s-member a { font-size: 0.88rem; font-weight: 500; }
.s-prose { max-width: 52rem; margin-inline: auto; }
.s-prose h1,
.s-prose h2 { margin-block: 0 0.6rem; text-align: center; text-wrap: balance; }
.s-prose p { color: var(--ink-soft); font-size: 1.05rem; text-wrap: pretty; }
.s-prose p:last-child { margin-bottom: 0; }
.s-prose-center { text-align: center; }
.s-prose-center p { margin-inline: auto; max-width: 62ch; }
.s-resources {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 60rem) {
  .s-resources { grid-template-columns: 1fr 1.1fr; }
  .s-resources-copy { padding-top: 0.35rem; }
}
.s-resources-copy h2 { margin-block: 0 0.6rem; }
.s-resources-copy p { color: var(--ink-soft); margin: 0 0 0.8rem; text-wrap: pretty; }
.s-resources-copy p:last-child { margin-bottom: 0; }
.s-resource-list { display: flex; flex-direction: column; gap: 0.75rem; }
.s-resource {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}
.s-resource:hover {
  text-decoration: none;
  border-color: color-mix(in srgb, var(--c) 45%, var(--line));
  box-shadow: 0 8px 22px color-mix(in srgb, var(--c) 12%, transparent);
  transform: translateY(-1px);
}
.s-resource.accent-directory { --c: var(--accent); }
.s-resource.accent-cloud { --c: #0b6a86; }
.s-resource.accent-audit { --c: #7d490d; }
.s-resource.accent-reports { --c: #0d6a41; }
.s-resource.accent-free { --c: #9d2751; }
.s-resource-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 26%, var(--line));
}
.s-resource-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-resource-label { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.s-resource-label b { font-size: 1rem; font-weight: 600; color: var(--ink); }
.s-resource-label > span { font-size: 0.9rem; color: var(--ink-soft); }
.s-resource-go { margin-left: auto; padding-left: 0.75rem; color: var(--c); font-weight: 600; }
.s-cmp-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 66rem;
  margin-inline: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgb(22 24 29 / 0.04), 0 8px 24px rgb(22 24 29 / 0.05);
}
.s-cmp {
  width: 100%;
  min-width: 44rem;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.s-cmp col.cmp-capability { width: 26%; }
.s-cmp col.cmp-value { width: 37%; }
.s-cmp:has(col.cmp-value:nth-of-type(4)) col.cmp-value { width: 24.6%; }
.s-cmp:has(col.cmp-value:nth-of-type(4)) { min-width: 52rem; }
.s-cmp th,
.s-cmp td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  vertical-align: top;
}
.s-cmp thead th {
  padding-block: 0.85rem;
  background: var(--surface-head);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.s-cmp thead th.s-cmp-ours {
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--accent);
}
.s-cmp tbody .s-cmp-ours { background: color-mix(in srgb, var(--accent) 5%, var(--bg)); }
.s-cmp tbody th { font-weight: 600; color: var(--ink); }
.s-cmp tbody td,
.s-cmp tbody th { border-bottom: 1px solid var(--line); }
.s-cmp tbody tr:last-child td,
.s-cmp tbody tr:last-child th { border-bottom: 0; }
.s-cmp-cell { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--ink-soft); }
.s-cmp-ours .s-cmp-cell { color: var(--ink); }
.s-cmp-mark {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 0.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: currentColor;
}
.s-cmp-mark svg {
  width: 11px;
  height: 11px;
  stroke: var(--bg);
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tone-good .s-cmp-mark { color: var(--tone-good); }
.tone-warn .s-cmp-mark { color: var(--tone-warn); }
.tone-bad .s-cmp-mark { color: var(--tone-bad); }
.s-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 62rem;
  margin-inline: auto;
}
.s-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.4rem;
}
.s-step-rail { display: flex; flex-direction: column; align-items: center; }
.s-step-num {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.s-step:not(:last-child) .s-step-rail::after {
  content: "";
  flex: 1;
  width: 1px;
  margin-top: 0.6rem;
  background: var(--line);
}
.s-step-body { padding-bottom: 2.75rem; }
.s-step:last-child .s-step-body { padding-bottom: 0; }
.s-step-body h3 { margin-block: 0.35rem 0.3rem; }
.s-step-body > p { margin: 0; color: var(--ink-soft); }
.s-step-shot { margin: 1.1rem 0 0; }
.s-step-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
@media (max-width: 35rem) {
  .s-step { gap: 0 1rem; }
  .s-step-num { width: 2rem; height: 2rem; font-size: 0.78rem; }
}
.s-dl-scroll { overflow-x: auto; }
.s-dl {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
  background: var(--bg);
  font-size: 0.95rem;
}
.s-dl th,
.s-dl td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.s-dl thead th {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-soft);
}
.s-dl tbody tr:last-child th,
.s-dl tbody tr:last-child td { border-bottom: none; }
.s-dl tbody th { font-weight: 400; }
.s-dl tbody th b { display: block; font-size: 1.02rem; font-weight: 650; color: var(--ink); }
.s-dl tbody th span { display: block; font-size: 0.88rem; color: var(--ink-soft); }
.s-dl-mono { font-family: var(--font-mono); font-size: 0.88rem; white-space: nowrap; }
.s-dl-links { display: flex; flex-direction: column; gap: 0.2rem; }
.s-dl-links a { font-size: 0.88rem; text-decoration: none; white-space: nowrap; }
.s-dl-links a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.s-btn-sm { padding: 0.45rem 0.85rem; font-size: 0.88rem; gap: 0.4rem; }
.s-btn-sm svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.s-dl-file {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-soft);
}
.s-dlcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.25rem;
}
.s-dlcard {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.4rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.s-dlcard.accent-directory { --c: var(--accent); }
.s-dlcard.accent-cloud { --c: #0b6a86; }
.s-dlcard.accent-audit { --c: #7d490d; }
.s-dlcard.accent-reports { --c: #0d6a41; }
.s-dlcard.accent-free { --c: #9d2751; }
.s-dlcard-head { display: flex; align-items: center; gap: 0.8rem; }
.s-dlcard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 26%, var(--line));
}
.s-dlcard-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-dlcard h2,
.s-dlcard h3 { margin: 0; font-size: 1.1rem; }
.s-dlcard-body { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.s-dlcard-get { display: grid; gap: 0.5rem; justify-items: start; padding-top: 1rem; }
.s-dlcard-btn { gap: 0.45rem; padding-inline: 2rem; }
.s-dlcard-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-dlcard-meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.s-dlcard-docs {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.s-dlcard-docs a { font-size: 0.85rem; text-decoration: none; }
.s-dlcard-docs a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.s-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin: 0.5rem 0 2.75rem;
}
.s-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--c) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 22%, var(--line));
}
.s-pill:nth-child(6n + 1) { --c: #1a5fd0; }
.s-pill:nth-child(6n + 2) { --c: #6b3fa0; }
.s-pill:nth-child(6n + 3) { --c: #0d6a41; }
.s-pill:nth-child(6n + 4) { --c: #a8541b; }
.s-pill:nth-child(6n + 5) { --c: #9d2751; }
.s-pill:nth-child(6n + 6) { --c: #0b6a86; }
.s-pill-icon { display: grid; place-items: center; }
.s-pill-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-pill b {
  font-size: 1.35rem;
  font-weight: 680;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.s-pill > span { font-size: 0.95rem; color: var(--ink-soft); }
@media (max-width: 30rem) {
  .s-pill b { font-size: 1.15rem; }
  .s-pill > span { font-size: 0.88rem; }
}
.s-intro {
  max-width: 62rem;
  margin: -1.5rem auto 1.75rem;
  text-align: center;
}
.s-intro p { margin: 0 0 0.8rem; color: var(--ink-soft); text-wrap: pretty; }
.s-intro p:last-child { margin-bottom: 0; }
.s-callout {
  position: relative;
  max-width: 62rem;
  margin: 0 auto 2.75rem;
  padding: 1.4rem 1.6rem 1.4rem 4rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 5%, var(--bg-soft));
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
}
.s-callout::before {
  content: "\201C";
  position: absolute;
  left: 1.1rem;
  top: 0.15rem;
  font-size: 3.6rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 32%, transparent);
}
.s-callout p { margin: 0; font-size: 1.05rem; color: var(--ink-soft); text-wrap: pretty; }
.s-callout b { color: var(--accent); font-weight: 650; }
@media (max-width: 35rem) {
  .s-callout { padding: 1.2rem 1.2rem 1.2rem 1.2rem; }
  .s-callout::before { display: none; }
}
.s-jump {
  position: sticky;
  top: 3.75rem;
  z-index: 4;
  background: var(--surface-bar);
  border-block: 1px solid var(--surface-bar-line);
}
.s-jump-row {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  overflow-x: auto;
  padding-block: 0.55rem;
  scrollbar-width: none;
}
.s-jump-row::-webkit-scrollbar { display: none; }
@media (max-width: 62rem) { .s-jump-row { justify-content: flex-start; } }
.s-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}
.s-jump a:hover {
  color: var(--ink);
  background: var(--bg-soft);
  border-color: var(--line);
}
.s-jump svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-media[id] { scroll-margin-top: 7rem; }
.s-fsplit {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 58rem) {
  .s-fsplit { grid-template-columns: 1.15fr 1fr; }
}
.s-fsplit h2 { margin-block: 0 0.7rem; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.s-fsplit > div > p { margin: 0 0 0.8rem; color: var(--ink-soft); text-wrap: pretty; }
.s-fsplit > div > p:last-child { margin-bottom: 0; }
.s-claim {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}
.s-claim p { margin: 0 0 0.7rem; color: var(--ink-soft); text-wrap: pretty; }
.s-claim p:last-child { margin-bottom: 0; }
.s-claim b { color: var(--accent); font-weight: 650; }
.s-fsplit + .s-pills { margin-top: 2.25rem; justify-content: flex-start; }
.s-points-rich { gap: 1.35rem; margin-top: 1.6rem; }
.s-points-rich li { grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; }
.s-points-rich li::before { content: none; }
.s-point-icon { display: grid; place-items: center; margin-top: 0.15rem; }
.s-point-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-points-rich b {
  display: block;
  font-size: 1.05rem;
  font-weight: 640;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-bottom: 0.1rem;
}
.s-points-rich span { display: block; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
.s-dark .s-point-icon svg { stroke: #9ec9ff; }
.s-dark .s-points-rich b { color: #9ec9ff; }
.s-dark .s-points-rich span { color: #c3c9d4; }
.s-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
  border-top: 1px solid #2b2f38;
  padding-top: 1.6rem;
}
.s-hero-pill-stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.05rem;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.1);
}
.s-hero-pill-stat:nth-child(6n + 1) { --c: #9ec9ff; }
.s-hero-pill-stat:nth-child(6n + 2) { --c: #7fd7ae; }
.s-hero-pill-stat:nth-child(6n + 3) { --c: #c4b0f0; }
.s-hero-pill-stat:nth-child(6n + 4) { --c: #f0b478; }
.s-hero-pill-stat:nth-child(6n + 5) { --c: #f2a2bd; }
.s-hero-pill-stat:nth-child(6n + 6) { --c: #7fd0e8; }
.s-hero-pill-stat svg {
  width: 19px;
  height: 19px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-hero-pill-stat b {
  font-size: 1.25rem;
  font-weight: 680;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.s-hero-pill-stat > span:last-child { font-size: 0.92rem; color: #98a0ad; }
.s-hero-grid:has(+ .s-hero-pills) { padding-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.s-media-label {
  margin: 0 0 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.s-dark .s-media-label { color: #9ec9ff; }
.s-hero-navy { background: var(--hero-navy); }
.s-hero-petrol { background: var(--hero-petrol); }
.s-hero-plum { background: var(--hero-plum); }
.s-hero-forest { background: var(--hero-forest); }
.s-hero-slate { background: var(--hero-slate); }
.s-hero-indigo { background: var(--hero-indigo); }
.s-hero-steel { background: var(--hero-steel); }
.s-hero-ink { background: var(--hero-ink); }
.s-tier-points {
  list-style: none;
  margin: 0.4rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  text-align: left;
  width: 100%;
}
.s-tier-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.s-tier-points li::before {
  content: "";
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.15em;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, transparent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5fd0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 0.8em no-repeat;
}
.s-tier-points b { color: var(--ink); font-weight: 640; }
.s-tier-note {
  margin: 1.75rem auto 0;
  max-width: 60ch;
  text-align: center;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.s-res-eyebrow {
  margin: 1.5rem 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.s-latest {
  display: block;
  padding: 1.05rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.s-latest:hover {
  text-decoration: none;
  box-shadow: 0 6px 18px rgb(22 24 29 / 0.06);
}
.s-latest:hover h3 { color: var(--accent); }
.s-latest-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.s-latest h3 {
  margin: 0.3rem 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 640;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.s-latest time { font-size: 0.86rem; color: var(--ink-soft); }
.s-hero-centre { text-align: center; }
.s-hero-centre .wrap { padding-block: clamp(3rem, 5.5vw, 4.5rem); }
.s-hero-centre h1 {
  margin: 0 0 0.6rem;
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 56rem) {
  .s-hero-centre h1 { white-space: nowrap; max-width: none; }
}
.s-hero-centre h1 em { font-style: normal; color: #9ec9ff; }
.s-hero-has-facts .s-lede { max-width: none; }
@media (min-width: 60rem) {
  .s-hero-has-facts .s-hero-grid > :first-child { padding-top: 2rem; }
}
.s-hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.s-hero-fact { background: var(--surface); padding: 1.4rem 1.25rem; }
.s-hero-fact b {
  display: block;
  font-size: 1.7rem;
  font-weight: 660;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.s-hero-fact span { color: var(--ink-soft); font-size: 0.9rem; }
.s-hero-centre .s-lede { max-width: 52rem; margin: 0 auto 1.75rem; }
.s-hero-centre .s-lede-left { text-align: left; }
.s-hero-centre .s-btns { justify-content: center; }
.s-hero-centre .s-trust { justify-content: center; }
.s-caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.75rem 2rem;
  margin: 2.25rem 0;
}
@media (min-width: 52rem) { .s-caps { grid-template-columns: repeat(4, 1fr); } }
.s-cap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  padding-left: 1rem;
  border-left: 1px solid #2b2f38;
}
.s-cap > span svg {
  width: 30px;
  height: 30px;
  stroke: #9ec9ff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-cap div span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #98a0ad;
}
.s-cap b {
  display: block;
  font-size: 1.12rem;
  font-weight: 620;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.s-cap-link { text-decoration: none; transition: border-color 0.12s ease; }
.s-cap-link:hover { text-decoration: none; border-left-color: #9ec9ff; }
.s-cap-link:hover b { color: #9ec9ff; text-decoration: underline; text-underline-offset: 0.2em; }
.s-hero-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0;
  margin: 0 0 2rem;
  font-size: 1rem;
  color: #c3c9d4;
}
.s-hero-more > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  border-right: 1px solid #2b2f38;
}
.s-hero-more > span:last-child { border-right: 0; }
.s-hero-more svg {
  width: 18px;
  height: 18px;
  stroke: #98a0ad;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-checkcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 44rem) { .s-checkcards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .s-checkcards { grid-template-columns: repeat(3, 1fr); } }
.s-checkcard {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line-card);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgb(22 24 29 / 0.04), 0 6px 18px rgb(22 24 29 / 0.05);
}
.s-checkcard:nth-child(6n + 1) { --c: #1a5fd0; }
.s-checkcard:nth-child(6n + 2) { --c: #0d6a41; }
.s-checkcard:nth-child(6n + 3) { --c: #6b3fa0; }
.s-checkcard:nth-child(6n + 4) { --c: #a8541b; }
.s-checkcard:nth-child(6n + 5) { --c: #9d2751; }
.s-checkcard:nth-child(6n + 6) { --c: #0b6a86; }
.s-checkcard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 24%, var(--line));
}
.s-checkcard-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-checkcard b {
  font-size: 1.05rem;
  font-weight: 640;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.s-checkcard p {
  grid-column: 1 / -1;
  margin: 0.85rem 0 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.s-media .s-media-cta { margin: 2rem 0 0; }
.s-media-cta a { font-weight: 600; text-decoration: none; }
.s-media-cta a:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.s-dark .s-media-cta a { color: #9ec9ff; }
.s-reveal { display: none; }
form:has(#reason option[value="demo"]:checked) .s-reveal {
  display: grid;
  gap: 0 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  form:has(#reason option[value="demo"]:checked) .s-reveal { grid-template-columns: 1fr 1fr; }
}
.s-hint { display: block; margin-top: 0.3rem; font-size: 0.85rem; color: var(--ink-soft); }
.s-field select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong, var(--line-strong));
  border-radius: 8px;
}
.s-field select:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.s-checks { border: 0; margin: 0; padding: 0; }
.s-checks legend {
  padding: 0;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.s-checks label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.2rem 0;
  cursor: pointer;
}
.s-checks input { width: 1.05em; height: 1.05em; accent-color: var(--accent); }
.s-member-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.6rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 1.9rem;
  font-weight: 620;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.s-table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 66rem;
  margin-inline: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgb(22 24 29 / 0.04), 0 8px 24px rgb(22 24 29 / 0.05);
}
.s-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.s-table th,
.s-table td {
  padding: 0.8rem 1.2rem;
  text-align: left;
  vertical-align: top;
}
.s-table thead th {
  padding-block: 0.8rem;
  background: var(--surface-head);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.s-table tbody th { font-weight: 600; color: var(--ink); }
.s-table tbody td { color: var(--ink-soft); }
.s-table tbody td,
.s-table tbody th { border-bottom: 1px solid var(--line); }
.s-table tbody tr:last-child td,
.s-table tbody tr:last-child th { border-bottom: 0; }
.rail-links ul { list-style: none; margin: 0; padding: 0; display: grid; }
.rail-links li { border-bottom: 1px solid var(--line); }
.rail-links li:first-child { border-top: 1px solid var(--line); }
.rail-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.rail-links a:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.post-head .lede {
  margin: 0.2rem 0 0;
  padding-bottom: 1.5rem;
  font-size: 1.08rem;
  max-width: none;
  color: var(--ink);
}
.s-linkgroups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 66rem;
  margin-inline: auto;
}
@media (min-width: 44rem) { .s-linkgroups { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .s-linkgroups { grid-template-columns: repeat(3, 1fr); } }
.s-linkgroup h2,
.s-linkgroup h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.s-linkgroup ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.s-linkgroup li { border-bottom: 1px solid var(--line); }
.s-linkgroup a,
.s-linkgroup span {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.97rem;
  font-weight: 500;
  text-decoration: none;
}
.s-linkgroup a:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.s-linkgroup span { color: var(--ink-soft); font-weight: 400; }
.s-linkgroup span::after { content: " (coming soon)"; font-size: 0.85em; }
.link-columns ul {
  columns: 1;
  column-gap: 2.5rem;
}
@media (min-width: 44rem) { .link-columns ul { columns: 2; } }
@media (min-width: 64rem) { .link-columns ul { columns: 3; } }
.link-columns, .link-columns ul { max-width: none; width: 100%; }
.post-grid .prose > h2:first-child { margin-top: 1.75rem; }
.link-columns li { break-inside: avoid; }
.diagram {
  margin: 1.75rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.diagram svg {
  display: block;
  width: 100%;
  min-width: 44rem;
  height: auto;
}
.s-notecard {
  --c: var(--accent);
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.6rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.s-notecard.accent-directory { --c: var(--accent); }
.s-notecard.accent-cloud { --c: #0b6a86; }
.s-notecard.accent-audit { --c: #7d490d; }
.s-notecard.accent-reports { --c: #0d6a41; }
.s-notecard.accent-free { --c: #9d2751; }
.s-notecard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
  background: color-mix(in srgb, var(--c) 9%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--c) 26%, var(--line));
}
.s-notecard-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-notecard-text > * { margin: 0; }
.s-notecard-text h2 { font-size: 1.35rem; margin-bottom: 0.45rem; }
.s-notecard-text p { color: var(--ink-soft); font-size: 0.97rem; }
@media (max-width: 34rem) {
  .s-notecard { flex-direction: column; gap: 0.9rem; }
}
.s-notecard.s-dark {
  background: var(--surface-dark);
  border-color: #2b2f38;
}
.s-notecard.s-dark .s-notecard-text h2 { color: #fff; }
.s-notecard.s-dark .s-notecard-text p { color: #c3c9d4; }
.s-notecard.s-dark { --c: #7fd7ae; }
.s-notecard.s-dark .s-notecard-icon {
  background: color-mix(in srgb, var(--c) 13%, var(--surface-dark));
  border-color: color-mix(in srgb, var(--c) 34%, #2b2f38);
}
.s-notecard.s-dark .s-notecard-icon svg { stroke: var(--c); }
.s-vid:not([open]) { display: none; }
.s-vid {
  width: min(92vw, 64rem);
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: #000;
  color: #fff;
  overflow: visible;
}
.s-vid::backdrop { background: rgb(12 14 18 / 0.78); }
.s-vid-frame { aspect-ratio: 16 / 9; }
.s-vid-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.s-vid-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.6rem);
  padding: 0.35rem 0.8rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: 8px;
  cursor: pointer;
}
.s-vid-close:hover { background: rgb(255 255 255 / 0.12); }
.s-vid-close:focus-visible { outline: 2px solid #9ec9ff; outline-offset: 2px; }
:root {
  --d-bg: #14161a;
  --d-bg-soft: #1f232b;
  --d-ink: #e6e9ee;
  --d-ink-soft: #a3abb8;
  --d-line: #2e333c;
  --d-accent: #7fa9ff;
  --d-accent-ink: #10131a;
  --d-surface: #262b34;
  --d-surface-dark: #1b1e24;
  --d-surface-bar: #1c2027;
  --d-surface-bar-line: #333842;
  --d-surface-hover: #232830;
  --d-surface-head: #232830;
  --d-line-card: #2f343d;
  --d-line-strong: #3d434d;
  --d-tone-good: #18a465;
  --d-tone-warn: #d87621;
  --d-tone-bad: #d76e8c;
  --d-tone-ok: #14a464;
  --d-tone-err: #da6b92;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: var(--d-bg);
    --bg-soft: var(--d-bg-soft);
    --ink: var(--d-ink);
    --ink-soft: var(--d-ink-soft);
    --line: var(--d-line);
    --accent: var(--d-accent);
    --accent-ink: var(--d-accent-ink);
    --surface: var(--d-surface);
    --surface-dark: var(--d-surface-dark);
    --surface-bar: var(--d-surface-bar);
    --surface-bar-line: var(--d-surface-bar-line);
    --surface-hover: var(--d-surface-hover);
    --surface-head: var(--d-surface-head);
    --line-card: var(--d-line-card);
    --line-strong: var(--d-line-strong);
    --tone-good: var(--d-tone-good);
    --tone-warn: var(--d-tone-warn);
    --tone-bad: var(--d-tone-bad);
    --tone-ok: var(--d-tone-ok);
    --tone-err: var(--d-tone-err);
    --hero-base: var(--d-surface-dark);
    --hero-navy: var(--d-surface-dark);
    --hero-petrol: var(--d-surface-dark);
    --hero-plum: var(--d-surface-dark);
    --hero-forest: var(--d-surface-dark);
    --hero-slate: var(--d-surface-dark);
    --hero-indigo: var(--d-surface-dark);
    --hero-steel: var(--d-surface-dark);
    --hero-ink: var(--d-surface-dark);
  }
  :root:not([data-theme="light"]) .prose img { filter: brightness(0.92); }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: var(--d-bg);
  --bg-soft: var(--d-bg-soft);
  --ink: var(--d-ink);
  --ink-soft: var(--d-ink-soft);
  --line: var(--d-line);
  --accent: var(--d-accent);
  --accent-ink: var(--d-accent-ink);
  --surface: var(--d-surface);
  --surface-dark: var(--d-surface-dark);
  --surface-bar: var(--d-surface-bar);
  --surface-bar-line: var(--d-surface-bar-line);
  --surface-hover: var(--d-surface-hover);
  --surface-head: var(--d-surface-head);
  --line-card: var(--d-line-card);
  --line-strong: var(--d-line-strong);
  --tone-good: var(--d-tone-good);
  --tone-warn: var(--d-tone-warn);
  --tone-bad: var(--d-tone-bad);
  --tone-ok: var(--d-tone-ok);
  --tone-err: var(--d-tone-err);
  --hero-base: var(--d-surface-dark);
  --hero-navy: var(--d-surface-dark);
  --hero-petrol: var(--d-surface-dark);
  --hero-plum: var(--d-surface-dark);
  --hero-forest: var(--d-surface-dark);
  --hero-slate: var(--d-surface-dark);
  --hero-indigo: var(--d-surface-dark);
  --hero-steel: var(--d-surface-dark);
  --hero-ink: var(--d-surface-dark);
}
:root[data-theme="dark"] .prose img { filter: brightness(0.92); }
.theme-toggle[hidden] { display: none; }
.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink-soft); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.theme-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  grid-area: 1 / 1;
}
.theme-toggle .icon-dark { display: block; }
.theme-toggle .icon-light { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-dark { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-light { display: block; }
}
:root[data-theme="dark"] .theme-toggle .icon-dark { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-light { display: block; }
:root[data-theme="light"] .theme-toggle .icon-dark { display: block; }
:root[data-theme="light"] .theme-toggle .icon-light { display: none; }
.brand .logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand .logo-light { display: none; }
  :root:not([data-theme="light"]) .brand .logo-dark { display: block; }
}
:root[data-theme="dark"] .brand .logo-light { display: none; }
:root[data-theme="dark"] .brand .logo-dark { display: block; }
:root[data-theme="light"] .brand .logo-light { display: block; }
:root[data-theme="light"] .brand .logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) main:has(> section.s-hero:first-of-type) > section[class^="s-"]:nth-of-type(odd) { background: var(--bg-soft); }
  :root:not([data-theme="light"]) main:has(> section.s-hero:first-of-type) > section[class^="s-"]:nth-of-type(even) { background: var(--bg); }
  :root:not([data-theme="light"]) main > section.s-jump { background: var(--surface-bar); }
}
:root[data-theme="dark"] main:has(> section.s-hero:first-of-type) > section[class^="s-"]:nth-of-type(odd) { background: var(--bg-soft); }
:root[data-theme="dark"] main:has(> section.s-hero:first-of-type) > section[class^="s-"]:nth-of-type(even) { background: var(--bg); }
:root[data-theme="dark"] main > section.s-jump { background: var(--surface-bar); }
