@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}

:root {
  --bg: #eceff2;
  --surface: #ffffff;
  --surface-2: #f5f7f9;
  --ink: #131a20;
  --ink-2: #343f4a;
  --muted: #5e6a76;
  --line: #d6dce2;
  --line-2: #e5eaee;
  --accent: #2f6690;
  --accent-ink: #22496a;
  --accent-wash: #e9f0f6;
  --good: #2f7a52;
  --good-wash: #e8f2ec;
  --warn: #8a6420;
  --warn-wash: #f6f0e2;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shell: 1140px;
  --pad: 20px;
  --r: 4px;
  --ease: cubic-bezier(0.2, 0.6, 0.25, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

main { display: block; overflow-x: clip; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.011em;
  color: var(--ink);
  overflow-wrap: anywhere;
}

h1 { font-size: 30px; }
h2 { font-size: 23px; }
h3 { font-size: 18px; }
h4 { font-size: 15px; }

p { margin: 0 0 16px; overflow-wrap: anywhere; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 102, 144, 0.32);
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
a:hover { color: var(--accent-ink); border-bottom-color: var(--accent-ink); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

figure { margin: 0; }
blockquote { margin: 0; }
ul, ol { margin: 0 0 16px; padding-left: 20px; }
li { margin-bottom: 7px; overflow-wrap: anywhere; }
li:last-child { margin-bottom: 0; }

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

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.num { font-family: var(--mono); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.muted { color: var(--muted); }
.tight { max-width: 68ch; }
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(236, 239, 242, 0.97);
  border-bottom: 1px solid var(--line);
}
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  padding: 9px 0;
}
.brand:hover { color: var(--accent-ink); }
.brand .mark {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  background: var(--accent);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.brand .word { white-space: nowrap; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  font: 500 13px/1 var(--sans);
  padding: 12px 13px;
  min-height: 44px;
  cursor: pointer;
}
.nav-toggle .ico { width: 16px; height: 16px; }
.nav-toggle:hover { border-color: #bcc6cf; }

.nav-panel {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: calc(100% + 8px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 12px 28px rgba(19, 26, 32, 0.13);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 170ms var(--ease), transform 170ms var(--ease), visibility 0s linear 170ms;
}
.nav-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 170ms var(--ease), transform 170ms var(--ease), visibility 0s;
}
.nav-panel a {
  display: block;
  padding: 10px 12px;
  border: 0;
  border-radius: 3px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
  transition: transform 170ms var(--ease), color 170ms var(--ease), background-color 170ms var(--ease);
}
.nav-panel a:hover { color: var(--accent-ink); transform: translateX(4px); }
.nav-panel a[aria-current='page'] { color: var(--accent); background: var(--accent-wash); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .nav-panel a { padding: 7px 11px; font-size: 14px; }
  .nav-panel a:hover { transform: none; background: var(--surface); }
}

.hero { padding: 46px 0 40px; }
.hero .eyebrow { margin-bottom: 14px; }
.hero h1 { font-size: 31px; max-width: 20ch; }
.hero .lede { margin-top: 16px; font-size: 17px; color: var(--ink-2); max-width: 58ch; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: center; }

.page-head { padding: 40px 0 8px; }
.page-head h1 { max-width: 22ch; }
.page-head .lede { margin-top: 14px; font-size: 17px; color: var(--ink-2); max-width: 66ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.section { padding: 40px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: 24px; }
.section-head h2 { max-width: 26ch; }
.section-head p { margin-top: 10px; color: var(--ink-2); max-width: 66ch; }

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}
.badge.accent { background: var(--accent-wash); border-color: #c9dcea; color: var(--accent-ink); }
.badge.good { background: var(--good-wash); border-color: #c6ddd0; color: var(--good); }
.badge.warn { background: var(--warn-wash); border-color: #e3d5b4; color: var(--warn); }
.badge .ico { width: 12px; height: 12px; flex: 0 0 12px; }

.ico {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 13px 18px;
  min-height: 44px;
  border: 1px solid var(--accent);
  border-radius: var(--r);
  background: var(--accent);
  color: #fff;
  font: 500 15px/1.2 var(--sans);
  cursor: pointer;
  text-align: left;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}
.btn:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn .ico { width: 16px; height: 16px; }
.btn.ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: var(--surface); border-color: var(--accent); color: var(--accent-ink); }
.btn.quiet { background: none; border-color: transparent; color: var(--accent); padding-left: 0; padding-right: 0; }
.btn.quiet:hover { background: none; color: var(--accent-ink); transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 24px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  min-width: 0;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 15px; }

.grid { display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 700px) {
  .grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.split { display: grid; gap: 28px; grid-template-columns: minmax(0, 1fr); align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
  .split.wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .split.wide-right { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .split.top { align-items: start; }
  .split.top > .stick { position: sticky; top: 84px; }
}

.figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  min-width: 0;
}
.figure .svg-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.figure svg { width: 100%; height: auto; display: block; }
.fig-hint { display: none; }
.figure:has(.svg-wrap.scrolls) .fig-hint {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.grid > .figure { align-self: start; }
.figure figcaption {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.line { stroke: var(--ink); stroke-width: 1.2; fill: none; stroke-linejoin: round; stroke-linecap: round; }
.line.thin { stroke: #9aa6b1; stroke-width: 0.9; }
.line.rule { stroke: #b6c0c9; stroke-width: 0.8; }
.line.accent { stroke: var(--accent); stroke-width: 1.4; }
.line.dash { stroke: var(--accent); stroke-width: 1.1; stroke-dasharray: 4 3; }
.line.ghost { stroke: #c6ced6; stroke-width: 0.9; stroke-dasharray: 3 3; }
.fill-part { fill: #f2f5f8; }
.fill-part-b { fill: #e9eff4; }
.fill-accent { fill: var(--accent-wash); }
.fill-waste { fill: #f6ece0; }
.fill-panel { fill: #ffffff; }
.fill-chrome { fill: #f2f5f7; }
.svg-label { font-family: var(--mono); font-size: 7.6px; fill: var(--ink-2); font-weight: 500; }
.svg-label.sm { font-size: 7px; fill: var(--muted); font-weight: 400; }
.svg-label.accent { fill: var(--accent); }
.svg-title { font-family: var(--sans); font-size: 8.6px; fill: var(--ink); font-weight: 600; }

.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-2);
  margin: 0;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list .k { color: var(--ink-2); font-size: 15px; min-width: 0; }
.spec-list .v { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }

.stat-row { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 760px) { .stat-row.wide { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  min-width: 0;
}
.stat .n { font-family: var(--mono); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; display: block; overflow-wrap: anywhere; }
.stat .l { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }
.stat.good .n { color: var(--good); }
.stat.warn .n { color: var(--warn); }

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.step .n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid #c9dcea;
  background: var(--accent-wash);
  border-radius: 3px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
}

.link-list { list-style: none; margin: 0; padding: 0; }
.link-list li { margin: 0; border-bottom: 1px solid var(--line-2); }
.link-list li:last-child { border-bottom: 0; }
.link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 2px;
  border: 0;
  color: var(--ink);
  transition: transform 180ms var(--ease), color 180ms var(--ease);
}
.link-list a:hover { transform: translateX(5px); color: var(--accent-ink); }
.link-list a:hover .ico { color: var(--accent); }
.link-list .t { font-weight: 500; font-size: 16px; min-width: 0; }
.link-list .d { display: block; font-weight: 400; font-size: 14px; color: var(--muted); margin-top: 2px; }
.link-list .ico { color: #aeb8c1; width: 16px; height: 16px; transition: color 180ms var(--ease); }

.card-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 20px;
  color: var(--ink);
  min-width: 0;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}
.card-link:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--ink); }
.card-link h3 { font-size: 17px; }
.card-link p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.card-link .meta { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.card-link .more { margin-top: auto; padding-top: 4px; color: var(--accent); font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.card-link .more .ico { width: 14px; height: 14px; }

.prose { max-width: 70ch; }
.prose h2 { margin-top: 36px; margin-bottom: 12px; }
.prose h3 { margin-top: 26px; margin-bottom: 8px; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { color: var(--ink-2); }
.prose .figure { margin: 26px 0; max-width: 100%; }
.prose blockquote {
  margin: 24px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 15px;
}

.note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  padding: 16px 18px;
  font-size: 15px;
  color: var(--ink-2);
}
.note h3 { font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.note p > a:only-child,
.card p > a:only-child,
.foot-about p > a:only-child {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 0;
  text-decoration: underline;
  text-decoration-color: rgba(47, 102, 144, 0.4);
  text-underline-offset: 3px;
}
.note p > a:only-child:hover,
.card p > a:only-child:hover,
.foot-about p > a:only-child:hover {
  text-decoration-color: currentColor;
}

.price-grid { display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr); align-items: stretch; }
@media (min-width: 980px) {
  .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price .who { min-height: 4.4em; }
}
.price {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  min-width: 0;
}
.price.featured { background: var(--accent-wash); border-color: #bcd3e4; }
.price .flag { display: flex; min-height: 22px; margin-bottom: 10px; }
.price .tier { font-size: 18px; font-weight: 600; }
.price .amount { margin: 14px 0 4px; font-family: var(--mono); font-size: 32px; font-weight: 500; letter-spacing: -0.03em; color: var(--ink); }
.price .amount .per { font-size: 14px; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.price .terms { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.price .who { font-size: 14.5px; color: var(--ink-2); margin-bottom: 16px; }
.price ul { list-style: none; margin: 0 0 22px; padding: 0; flex: 1 1 auto; }
.price ul li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 6px 0;
  margin: 0;
}
.price ul li .ico { width: 14px; height: 14px; margin-top: 4px; color: var(--accent); }
.price ul li.off { color: var(--muted); }
.price ul li.off .ico { color: #b9c2cb; }
.price .btn { width: 100%; justify-content: center; text-align: center; }

.table-plain { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.table-plain th, .table-plain td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.table-plain th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 500; font-family: var(--mono); }
.table-plain td.n { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.release { padding: 22px 0; border-bottom: 1px solid var(--line); }
.release:last-child { border-bottom: 0; }
.release-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin-bottom: 10px; }
.release-head .v { font-family: var(--mono); font-size: 18px; font-weight: 500; color: var(--ink); }
.release-head .d { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.release ul { list-style: none; margin: 0; padding: 0; }
.release ul li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
  padding: 4px 0;
  margin: 0;
}
.release ul li::before { content: ''; width: 5px; height: 1px; background: #aeb8c1; margin-top: 13px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { color: var(--ink-2); font-size: 15px; }

.person { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
.avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: var(--accent-wash);
  color: var(--accent-ink);
  border: 1px solid #c9dcea;
}
.avatar.alt { background: var(--surface-2); color: var(--ink-2); border-color: var(--line); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.field .help { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.field input[type='text'],
.field input[type='email'],
.field textarea {
  width: 100%;
  max-width: 100%;
  font: 400 15px/1.5 var(--sans);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 10px 12px;
  transition: border-color 160ms var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 150px; resize: vertical; }
.field.invalid input, .field.invalid textarea { border-color: #a4442f; }
.err { display: none; margin-top: 6px; font-size: 13px; color: #a4442f; }
.field.invalid .err { display: block; }

.pillset { display: flex; flex-wrap: wrap; gap: 8px; }
.pillset input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
}
.pillset label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms var(--ease), background-color 160ms var(--ease), color 160ms var(--ease);
}
.pillset label:hover { border-color: #b6c2cd; }
.pillset input:checked + label { background: var(--accent-wash); border-color: var(--accent); color: var(--accent-ink); }
.pillset input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }

.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #c6ddd0;
  background: var(--good-wash);
  border-radius: var(--r);
  color: var(--good);
  font-size: 14.5px;
}
.form-status.show { display: block; }

.next {
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  padding: 40px 0 44px;
}
.next h2 { font-size: 19px; margin-bottom: 6px; }
.next .sub { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.next .grid { gap: 14px; }

.site-foot {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 40px 0 30px;
  overflow-x: clip;
}
.foot-grid { display: grid; gap: 26px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .foot-grid { grid-template-columns: minmax(0, 1.3fr) repeat(4, minmax(0, 1fr)); gap: 30px; } }
.foot-about p { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 34ch; }
.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 2px; }
.foot-col a {
  border: 0;
  color: var(--ink-2);
  font-size: 14px;
  display: inline-block;
  padding: 7px 0;
  transition: transform 170ms var(--ease), color 170ms var(--ease);
}
.foot-col a:hover { color: var(--accent-ink); transform: translateX(3px); }
.foot-base {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.foot-base .mono { font-size: 12.5px; }

@media (scripting: enabled) {
  .reveal { opacity: 0; transform: translateY(12px); }
}
.reveal.in { opacity: 1; transform: none; transition: opacity 520ms var(--ease), transform 520ms var(--ease); }

@media (max-width: 899px) {
  .foot-col a { padding: 11px 0; }
  .btn { padding: 14px 18px; }
}

@media (max-width: 1099px) {
  .figure .svg-wrap svg { min-width: 500px; }
}



@media (min-width: 760px) {
  :root { --pad: 28px; }
  h1 { font-size: 38px; }
  h2 { font-size: 26px; }
  h3 { font-size: 19px; }
  .hero { padding: 68px 0 60px; }
  .hero h1 { font-size: 42px; }
  .hero .lede { font-size: 18px; }
  .page-head { padding: 58px 0 10px; }
  .section { padding: 56px 0; }
  .next { padding: 56px 0 60px; }
  .site-foot { padding: 56px 0 34px; }
}

@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 48px; }
  .hero h1 { font-size: 46px; }
}

@media print {
  .site-head, .nav-panel, .next, .btn-row, .skip, .site-foot { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .shell { max-width: none; padding: 0; }
  .section { padding: 14pt 0; }
  .section + .section { border-top: 1px solid #ccc; }
  .card, .note, .figure, .stat, .price { border: 1px solid #ccc; background: #fff; }
  .figure, .card, .note, .stat, .release, .faq-item, table { break-inside: avoid; }
  h1, h2, h3 { break-after: avoid; }
  .split, .grid, .price-grid, .stat-row { display: block; }
  .split > * + *, .grid > * + *, .stat-row > * + * { margin-top: 12pt; }
  a { color: #000; border-bottom: 0; }
  .prose a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .prose a[href^="mailto"]::after, .prose a[href^="#"]::after { content: ""; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .nav-panel { transition: none; }
  .btn:hover, .card-link:hover, .link-list a:hover, .foot-col a:hover, .nav-panel a:hover { transform: none; }
}
