@font-face {
  font-family: "Bricolage Grotesque Variable";
  src: url("/assets/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans Variable";
  src: url("/assets/instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --header-height: 88px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.7 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  touch-action: manipulation;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
button {
  border: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.16;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.75rem, 4.5vw, 4.4rem);
}
h2 {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}
h3 {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
em {
  font-family: var(--font-display);
  font-weight: inherit;
  font-style: normal;
}
img {
  max-width: 100%;
}
small {
  font-size: 0.8125rem;
}
strong {
  font-weight: 650;
}
ul,
ol {
  padding-left: 1.3em;
}
li + li {
  margin-top: 10px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1192px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 94px;
}
.section-tight {
  padding-block: 28px 70px;
}
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.number {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 23px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-small);
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.5;
  min-height: 48px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: var(--panel-dark);
  transform: translateY(-2px);
}
.button.secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.button.secondary:hover {
  background: var(--paper);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  font-weight: 650;
  padding-block: 10px;
}
.text-link:hover,
.prose a:hover {
  color: var(--accent-ink);
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 15px;
  background: var(--surface);
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.announcement {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--paper);
  padding: 9px 20px;
  font-size: 0.75rem;
  color: var(--muted);
}
.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
}
.brand-art {
  display: block;
  width: 185px;
}
.brand-art img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.site-header nav > a:not(.button):hover,
.site-header nav > a.current {
  color: var(--accent-ink);
}
.menu-toggle {
  display: none;
  background: transparent;
  padding: 12px;
}
.nav-dropdown > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}
.dropdown-panel {
  position: absolute;
  top: 100%;
  max-height: calc(100dvh - var(--header-height) - 16px);
  overflow-y: auto;
  left: auto;
  right: 0;
  width: min(640px, 100%);
  background: var(--surface);
  box-shadow: var(--shadow-menu);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: 26px;
}
.dropdown-panel > a:first-child {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 20px;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}
.dropdown-grid a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.dropdown-foot {
  display: block;
  margin-top: 20px;
  color: var(--ink);
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 12px;
}
.breadcrumbs [aria-current] {
  max-width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-hero {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 58px;
}
.home-hero h1 {
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}
.home-hero h1 em {
  color: var(--ink);
}
.home-hero > p {
  max-width: 700px;
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-top: 25px;
}
.home-hero .actions {
  justify-content: center;
}
.hero-footnote {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 23px;
}
.play {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-soft);
  font-size: 0.75rem;
}
.dashboard-stage {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-soft),
    var(--paper) 60%,
    var(--surface-soft)
  );
  padding: 30px 45px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  isolation: isolate;
}
.dashboard {
  display: grid;
  grid-template-columns: 205px 1fr;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  overflow: hidden;
  text-align: left;
}
.dashboard aside {
  background: var(--paper);
  padding: 26px 19px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.small-logo {
  display: block;
  width: 108px;
  max-width: 100%;
}
.small-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.office {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0 18px;
  font-size: 0.875rem;
  font-weight: 650;
}
.office small {
  display: block;
  font-weight: 400;
  color: var(--muted);
}
.avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--surface-soft);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}
.side-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.side-item {
  padding: 9px;
  font-size: 0.75rem;
  display: block;
  border-radius: var(--radius-small);
}
.side-item.selected {
  background: var(--accent-soft);
  font-weight: 650;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 32px;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.dashboard-content {
  min-width: 0;
}
.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}
.pill {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
  background: var(--paper);
}
.dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 25px;
}
.dashboard-heading .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.dashboard-heading h3 {
  font-size: 1.7rem;
}
.dashboard-heading p {
  font-size: 0.75rem;
  margin-top: 7px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 25px;
}
.metrics > div {
  position: relative;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  min-height: 110px;
  background: var(--surface);
}
.metrics > div > span:first-child {
  display: block;
  font-size: 0.75rem;
}
.metrics strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1.5;
}
.metrics strong small {
  font-size: 0.75rem;
  font-weight: 400;
}
.metric-note {
  font-size: 0.75rem !important;
  color: var(--muted);
}
.mini-bars {
  position: absolute;
  right: 15px;
  bottom: 18px;
  display: flex;
  gap: 3px;
  align-items: end;
  height: 27px;
}
.mini-bars i {
  width: 7px;
  height: 40%;
  background: var(--accent);
}
.mini-bars i:nth-child(2) {
  height: 58%;
}
.mini-bars i:nth-child(3) {
  height: 72%;
}
.mini-bars i:nth-child(4) {
  height: 60%;
}
.mini-bars i:nth-child(5) {
  height: 95%;
}
.dashboard-list {
  padding: 21px 25px 12px;
}
.list-heading {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding-bottom: 14px;
}
.list-heading > span {
  font-size: 0.75rem;
  color: var(--muted);
}
.dossier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  font-size: 0.75rem;
}
.dossier-row > div {
  flex: 1;
}
.dossier-row small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.dossier-row .pill {
  font-size: 0.75rem;
}
.floating-note {
  position: absolute;
  bottom: 36px;
  right: -22px;
  display: flex;
  gap: 13px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-small);
  padding: 17px 22px;
  transform: rotate(-3deg);
  font-size: 0.8125rem;
}
.floating-note small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}
.check {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  height: 29px;
  width: 29px;
  background: var(--surface-soft);
  color: var(--ink);
  flex-shrink: 0;
}
.audience-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.audience-strip > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-block: 26px;
  font-size: 0.875rem;
}
.audience-strip span {
  font-size: 0.75rem;
  color: var(--muted);
}
.section-heading {
  max-width: 620px;
  margin-bottom: 38px;
}
.section-heading p {
  margin-top: 20px;
  max-width: 560px;
}
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading-row .section-heading {
  margin-bottom: 0;
}
.bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
}
.bento > a {
  border-radius: var(--radius);
  padding: 34px;
}
.bento h3 {
  font-size: 1.85rem;
  margin-bottom: 18px;
}
.bento p {
  font-size: 0.9375rem;
}
.bento-main {
  grid-row: span 2;
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
}
.bento-small {
  background: var(--paper);
  display: block;
}
.bento-small.sage {
  background: var(--surface-tint);
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: auto;
  padding-top: 28px;
}
.reconciliation {
  background: var(--surface-glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 20px;
  margin: 28px 0;
  box-shadow: var(--shadow-card);
}
.reconciliation > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  font-size: 0.8125rem;
}
.reconciliation > div + div {
  border-top: 1px solid var(--line);
}
.reconciliation small {
  font-size: 0.75rem;
  color: var(--muted);
}
.reconciliation .difference {
  color: var(--ink);
}
.mini-check {
  display: grid;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.8125rem;
}
.mini-check span {
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.tinted {
  background: var(--paper);
}
.module-list {
  display: grid;
  gap: 0;
}
.module-list a {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 25px;
}
.module-list a strong {
  flex: 1;
  font-size: 1.125rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: 26px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.card h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: -0.035em;
  margin: 16px 0;
}
.card p {
  font-size: 0.875rem;
  line-height: 1.8;
}
.card-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.faqs details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faqs details:first-child {
  padding-top: 0;
}
.faqs summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs details[open] summary > span {
  transform: rotate(45deg);
}
.faqs p {
  font-size: 0.9375rem;
  margin-top: 18px;
}
.faqs p a {
  text-decoration: underline;
}
.cta {
  background: var(--surface-soft);
  padding: 54px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: var(--radius-medium);
  margin-top: 40px;
  margin-bottom: 80px;
}
.cta p {
  max-width: 540px;
  margin-top: 20px;
  font-size: 0.9375rem;
}
.cta > div:last-child {
  display: grid;
  justify-items: center;
  flex-shrink: 0;
}
.footer {
  background: var(--surface);
  padding-top: 65px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 60px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer-grid h2 {
  font-size: 0.875rem;
  font-weight: 750;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer-grid a:not(.brand) {
  font-size: 0.8125rem;
  color: var(--muted);
  padding-block: 5px;
}
.footer-grid a:hover {
  text-decoration: underline;
}
.footer-grid p {
  color: var(--ink);
  margin: 22px 0 14px;
}
.footer-grid small {
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  color: var(--muted);
}
.page-hero {
  padding-block: 60px 50px;
}
.page-hero.compact {
  max-width: 1192px;
}
.page-hero.compact > div {
  max-width: 800px;
}
.page-hero.compact h1 {
  max-width: 850px;
}
.lead {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-top: 24px;
  max-width: 760px;
}
.page-hero.split {
  gap: 55px;
}
.page-hero h1 {
  font-size: clamp(2.75rem, 4vw, 4rem);
}
.page-hero .actions {
  gap: 17px;
}
.page-hero .text-link {
  font-size: 0.8125rem;
}
.workflow {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-menu);
  overflow: hidden;
}
.workflow-body {
  padding: 25px;
}
.visual-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.visual-heading .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.visual-heading h3 {
  font-size: 1.5rem;
}
.round-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 8px solid var(--accent-soft);
  border-right-color: transparent;
  border-radius: 50%;
  font-size: 0;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin: 30px 0;
}
.process-track > div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.process-track > div:after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  width: calc(100% - 33px);
  border-top: 1px solid var(--line);
}
.process-track > div:last-child:after {
  display: none;
}
.process-track span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.75rem;
  z-index: 1;
  background: var(--surface);
}
.process-track .done span {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.process-track small {
  font-size: 0.75rem;
}
.document-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
  font-size: 0.8125rem;
}
.document-row > div {
  flex: 1;
}
.document-row small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.file-icon {
  font-size: 1.5rem;
  padding: 0 8px;
  color: var(--accent-ink);
}
.review-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  padding: 16px;
  border-radius: var(--radius-small);
  font-size: 0.75rem;
  margin-top: 15px;
}
.review-note p {
  font-size: 0.75rem;
  margin-top: 4px;
}
.visual-bottom {
  padding: 12px 20px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  background: var(--paper);
  font-size: 0.75rem;
  color: var(--muted);
}
.notice {
  display: flex;
  align-items: start;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 17px 20px;
  border-radius: var(--radius-small);
  font-size: 0.8125rem;
}
.notice > span {
  font-size: 1.1rem;
  line-height: 1.5;
}
.notice p {
  color: var(--muted);
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.feature-strip > div {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.feature-strip h2 {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  margin-top: 16px;
}
.editorial-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.3fr;
  gap: 35px;
  padding-block: 35px;
  border-top: 1px solid var(--line);
}
.editorial-row h2 {
  font-size: 1.75rem;
}
.editorial-row p {
  font-size: 0.9375rem;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  padding: 17px;
  border-radius: var(--radius-small);
  font-size: 0.875rem;
  line-height: 1.5;
  background: var(--surface-half);
}
.link-grid a:hover {
  background: var(--paper);
}
.link-grid a span:first-child {
  overflow-wrap: anywhere;
}
.related .section-heading h2 {
  font-size: 2rem;
}
.article-hero {
  padding-block: 62px 45px;
  max-width: 980px;
}
.article-hero h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.3rem);
  max-width: 960px;
}
.article-hero .lead {
  font-size: 1.1rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 30px;
  font-size: 0.75rem;
  color: var(--muted);
}
.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 80px;
  max-width: 1090px;
}
.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  display: grid;
  padding-top: 6px;
}
.article-aside .eyebrow {
  font-size: 0.75rem;
}
.article-aside > a {
  font-size: 0.8125rem;
  padding: 8px 0;
}
.aside-note {
  background: var(--paper);
  border-radius: var(--radius-small);
  padding: 22px;
  margin-top: 28px;
}
.aside-note .eyebrow {
  font-size: 0.75rem;
}
.aside-note p {
  font-size: 1.1rem;
  color: var(--ink);
}
.aside-note a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 650;
  margin-top: 15px;
}
.prose section {
  margin-bottom: 38px;
  scroll-margin-top: 30px;
}
.prose h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
  letter-spacing: -0.035em;
}
.prose p {
  line-height: 1.95;
}
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 17px 0 17px 52px;
  border-bottom: 1px solid var(--line);
  margin: 0;
  color: var(--muted);
}
.steps li:before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8125rem;
}
.example {
  padding: 30px;
  background: var(--surface-soft);
  border-radius: var(--radius-medium);
}
.example .button {
  margin-top: 24px;
}
.example > small {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}
.sources {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 35px;
}
.sources h2 {
  font-size: 1.3rem;
}
.sources p,
.sources li {
  font-size: 0.875rem;
}
.sources p {
  margin-top: 15px;
}
.sources a,
.prose a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.directory {
  padding-bottom: 50px;
}
.search-form {
  max-width: 720px;
}
.search-form > label {
  display: block;
  font-size: 0.875rem;
  font-weight: 650;
  margin-bottom: 10px;
}
.search-input {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  overflow: hidden;
}
.search-input > span {
  font-size: 1.7rem;
  padding-left: 17px;
}
.search-input input {
  padding: 15px;
  width: 100%;
  border: 0;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
}
.search-input button {
  padding: 16px;
  background: transparent;
  font-size: 0.8125rem;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0;
}
.filter-chips button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
}
.filter-chips button.active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
#search-status {
  font-size: 0.8125rem;
  margin: 25px 0;
}
.directory .notice {
  margin-top: 25px;
}
.empty-state {
  padding: 70px 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}
.empty-state p {
  margin: 18px 0;
}
.tool-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
  padding-block: 10px 40px;
}
.tool-preview p {
  margin: 20px 0;
}
.tool-preview .notice {
  margin: 25px 0;
}
.tool-preview .notice p {
  margin: 0;
}
.tool-schema {
  background: var(--surface-soft);
  padding: 35px;
  border-radius: var(--radius-medium);
}
.tool-schema h3 {
  margin: 25px 0;
}
.tool-schema ol {
  padding-left: 20px;
  color: var(--muted);
}
.tool-schema li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.tool-output {
  display: grid;
  gap: 15px;
  margin-top: 30px;
  font-size: 0.9375rem;
}
.tool-output > span {
  font-size: 2rem;
}
.info-card {
  border-top: 1px solid var(--line);
  padding: 24px 5px;
}
.info-card h3 {
  font-size: 1.4rem;
  margin: 17px 0;
}
.info-card p {
  font-size: 0.9375rem;
}
.info-card p a {
  text-decoration: underline;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  margin: 25px 0;
}
.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.875rem;
  min-width: 580px;
  text-align: left;
}
.table-scroll th,
.table-scroll td {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table-scroll thead {
  background: var(--paper);
}
.table-scroll tbody th {
  font-weight: 600;
  width: 30%;
}
.table-scroll a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.table-scroll tr:last-child td,
.table-scroll tr:last-child th {
  border-bottom: 0;
}
.status-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 25px 0;
  font-size: 0.8125rem;
  align-items: center;
}
.fineprint {
  font-size: 0.75rem;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  padding-block: 15px 50px;
  align-items: center;
}
.price-card {
  padding: 40px;
  border-radius: var(--radius-medium);
  background: var(--surface-soft);
}
.price-card h2 {
  font-size: 2.5rem;
}
.price-placeholder {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.price-card > p {
  font-size: 0.9375rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--muted);
  font-size: 0.9375rem;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
}
.cost-stack {
  margin: 30px 0;
}
.cost-stack > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
}
.cost-stack span {
  color: var(--muted);
  text-align: right;
}
.pilot-form {
  padding: 35px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-medium);
  display: grid;
}
.pilot-form h2 {
  font-size: 1.75rem;
}
.pilot-form > p {
  font-size: 0.875rem;
  margin: 18px 0;
}
.pilot-form label {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 18px 0 8px;
}
.pilot-form select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--surface);
  padding: 12px;
  min-height: 48px;
  color: var(--ink);
}
.pilot-form .button {
  margin-top: 28px;
}
#pilot-status {
  font-size: 0.75rem;
  margin-bottom: 0;
}
.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.journey > div {
  border-top: 2px solid var(--line-strong);
  padding-top: 20px;
}
.journey h2 {
  font-size: 1.2rem;
  margin: 20px 0;
}
.journey p {
  font-size: 0.875rem;
}
.audience-visual {
  padding-block: 20px 55px;
}
.audience-visual .text-link {
  margin-top: 20px;
}
.demo-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 30px 0;
  border-bottom: 1px solid var(--line);
}
.demo-tabs button {
  background: transparent;
  padding: 18px 12px;
  border-bottom: 3px solid transparent;
  font-size: 0.875rem;
}
.demo-tabs button[aria-selected="true"] {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 750;
}
.demo-panel {
  padding-block: 25px 40px;
}
.demo-panel p {
  margin: 22px 0;
}
.demo-panel .workflow p {
  margin: 4px 0 0;
}
.demo-section > .notice {
  margin-bottom: 30px;
}
@media (min-width: 1500px) {
  .home-hero {
    padding-top: 80px;
  }
}
@media (max-width: 1100px) {
  .site-header nav {
    gap: 2px;
  }
  .brand-art {
    width: 163px;
  }
  .site-header .button {
    padding-inline: 16px;
  }
  .split,
  .pricing-layout,
  .tool-preview {
    gap: 35px;
  }
  .dashboard-stage {
    padding: 25px 25px 0;
  }
  .floating-note {
    right: -10px;
  }
  .metrics {
    gap: 7px;
  }
  .metrics > div {
    padding: 12px;
  }
  .mini-bars {
    display: none;
  }
  .article-layout {
    gap: 40px;
    grid-template-columns: 200px 1fr;
  }
  .journey {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    gap: 25px;
  }
  .faq-section {
    gap: 40px;
  }
}
@media (max-width: 850px) {
  :root {
    --header-height: 76px;
  }
  html:not(.js) .header-shell {
    position: static;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 76px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    max-height: calc(100dvh - var(--header-height) - 12px);
    overflow-y: auto;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 20px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-menu);
    align-items: stretch;
    gap: 8px;
  }
  .site-header nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .site-header nav > a:not(.button) {
    padding: 12px 0;
  }
  .dropdown-panel {
    max-height: none;
    overflow: visible;
    position: static;
    box-shadow: none;
    border: 0;
    padding: 15px 0;
  }
  .dropdown-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-header nav .button {
    margin-top: 12px;
  }
  .home-hero {
    padding-top: 45px;
  }
  .home-hero h1 {
    font-size: clamp(2rem, 5.4vw, 2.85rem);
  }
  .dashboard {
    grid-template-columns: 155px 1fr;
  }
  .dashboard aside {
    padding: 20px 12px;
  }
  .dashboard-content .visual-top {
    padding: 12px;
  }
  .dashboard-heading {
    padding: 20px 15px;
  }
  .dashboard-heading h3 {
    font-size: 1.4rem;
  }
  .metrics {
    padding: 0 15px;
    grid-template-columns: 1fr 1fr;
  }
  .metrics > div:last-child {
    display: none;
  }
  .dashboard-list {
    padding: 20px 15px 10px;
  }
  .floating-note {
    display: none;
  }
  .audience-strip > .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 30px;
  }
  .audience-strip span {
    width: 100%;
    text-align: center;
  }
  .section {
    padding-block: 65px;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .pricing-layout,
  .tool-preview {
    grid-template-columns: 1fr;
  }
  .page-hero.split {
    grid-template-columns: 1.1fr 1fr;
    gap: 25px;
  }
  .page-hero.split .workflow {
    align-self: center;
  }
  .page-hero.split .workflow-body {
    padding: 17px;
  }
  .page-hero.split .workflow .visual-top {
    padding: 12px;
    flex-wrap: wrap;
  }
  .page-hero h1 {
    font-size: 2.7rem;
  }
  .visual-heading h3 {
    font-size: 1.3rem;
  }
  .document-row {
    font-size: 0.75rem;
  }
  .page-hero .actions {
    align-items: start;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cta {
    padding: 38px;
    gap: 25px;
  }
  .cta h2 {
    font-size: 2.4rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .editorial-row {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .editorial-row p {
    grid-column: 2;
  }
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .article-aside > .eyebrow {
    width: 100%;
    margin-bottom: 0;
  }
  .aside-note {
    display: none;
  }
  .article-hero {
    padding-top: 45px;
  }
  .prose {
    max-width: 720px;
  }
  .pricing-layout {
    gap: 45px;
  }
  .price-card {
    max-width: 620px;
  }
  .audience-visual {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .audience-visual .workflow-body {
    padding: 15px;
  }
  .demo-panel {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .demo-tabs {
    gap: 4px;
  }
  .demo-tabs button {
    font-size: 0.75rem;
    padding: 16px 8px;
  }
}
@media (max-width: 600px) {
  .announcement {
    font-size: 0.75rem;
    gap: 4px;
    padding: 8px 15px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .brand-art {
    width: 162px;
  }
  .home-hero {
    padding-top: 36px;
    padding-bottom: 35px;
  }
  .home-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.65rem);
    letter-spacing: -0.04em;
  }

  .home-hero > p {
    font-size: 0.9375rem;
  }
  .home-hero > p br {
    display: none;
  }
  .actions {
    gap: 16px;
    justify-content: start;
  }
  .home-hero .actions {
    gap: 15px;
  }
  .button {
    padding: 13px 17px;
    gap: 15px;
  }
  .hero-footnote {
    font-size: 0.75rem;
    max-width: 290px;
    margin-inline: auto;
  }
  .dashboard-stage {
    padding: 13px 12px 0;
    border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  }
  .dashboard {
    display: block;
  }
  .dashboard aside {
    display: none;
  }
  .dashboard-heading {
    padding: 18px 14px;
  }
  .dashboard .visual-top {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  .dashboard .visual-top .pill {
    font-size: 0.75rem;
  }
  .dashboard-heading h3 {
    font-size: 1.75rem;
  }
  .metrics strong {
    font-size: 1.7rem;
  }
  .metrics > div {
    min-height: 95px;
  }
  .metrics > div:first-child {
    background: var(--paper);
  }
  .metric-note {
    font-size: 0.75rem !important;
  }
  .dashboard-list {
    padding: 18px 14px 0;
  }
  .dossier-row {
    font-size: 0.75rem;
    gap: 8px;
  }
  .dossier-row .pill {
    font-size: 0.75rem;
    padding: 3px 5px;
    max-width: 88px;
  }
  .dossier-row .avatar {
    width: 27px;
    height: 27px;
    font-size: 0.75rem;
  }
  .dossier-row:last-child {
    display: none;
  }
  .audience-strip > .wrap {
    font-size: 0.75rem;
    gap: 10px 20px;
    padding-block: 20px;
  }
  .audience-strip strong:last-child {
    width: 100%;
    text-align: center;
  }
  .section {
    padding-block: 50px;
  }
  .section-heading {
    margin-bottom: 27px;
  }
  .section-heading .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }
  .section-heading p {
    font-size: 0.9375rem;
  }
  .section-heading-row {
    align-items: start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 27px;
  }
  .bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bento > a {
    padding: 26px;
  }
  .bento-main {
    grid-row: auto;
  }
  .bento h3 {
    font-size: 1.7rem;
  }
  .reconciliation {
    margin: 20px 0 5px;
    padding: 17px;
  }
  .bento-small .card-link {
    padding-top: 20px;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card {
    padding: 25px;
  }
  .card h3 {
    font-size: 1.4rem;
  }
  .card p {
    font-size: 0.9375rem;
  }
  .card-kicker {
    font-size: 0.75rem;
  }
  .card-link {
    font-size: 0.875rem;
  }
  .cta {
    padding: 30px 25px;
    flex-direction: column;
    align-items: start;
    margin-bottom: 45px;
    margin-top: 20px;
  }
  .cta > div:last-child {
    align-items: start;
    justify-items: start;
  }
  .cta h2 {
    font-size: 2.45rem;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-grid {
    gap: 32px 20px;
    padding-bottom: 35px;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .footer-grid > div:first-child small {
    max-width: 260px;
  }
  .footer-grid h2 {
    font-size: 0.875rem;
  }
  .footer-grid a:not(.brand) {
    font-size: 0.875rem;
    padding-block: 7px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 0.75rem;
  }
  .page-hero {
    padding-block: 38px 30px;
  }
  .page-hero.split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .page-hero h1 {
    font-size: 2.75rem;
  }
  .lead {
    font-size: 1rem;
    margin-top: 20px;
  }
  .page-hero .actions {
    gap: 12px;
  }
  .page-hero .workflow {
    width: 100%;
  }
  .workflow-body {
    padding: 22px;
  }
  .workflow .visual-top .pill {
    font-size: 0.75rem;
  }
  .workflow .visual-top {
    padding: 14px 18px;
  }
  .page-hero.split .workflow-body {
    padding: 23px 20px;
  }
  .feature-strip {
    gap: 22px;
  }
  .feature-strip h2 {
    font-size: 1.1rem;
  }
  .editorial-row {
    grid-template-columns: 30px 1fr;
    gap: 16px;
    padding-block: 25px;
  }
  .editorial-row h2 {
    font-size: 1.55rem;
  }
  .editorial-row p {
    font-size: 1rem;
  }
  .link-grid {
    grid-template-columns: 1fr;
  }
  .link-grid a {
    font-size: 0.9375rem;
    padding: 16px;
  }
  .article-hero h1 {
    font-size: 2.55rem;
  }
  .article-hero .lead {
    font-size: 1rem;
  }
  .article-meta {
    gap: 8px 18px;
    font-size: 0.75rem;
  }
  .article-aside {
    gap: 2px 20px;
  }
  .article-aside > a {
    font-size: 0.875rem;
  }
  .article-layout {
    gap: 30px;
  }
  .prose h2 {
    font-size: 1.75rem;
  }
  .prose p {
    font-size: 1rem;
    line-height: 1.85;
  }
  .example {
    padding: 25px 22px;
  }
  .steps li {
    padding-left: 40px;
  }
  .breadcrumbs {
    font-size: 0.75rem;
  }
  .filter-chips {
    gap: 8px;
  }
  .filter-chips button {
    font-size: 0.8125rem;
    padding: 8px 13px;
  }
  .search-input input {
    font-size: 0.875rem;
    padding: 15px 10px;
  }
  .search-input > span {
    padding-left: 12px;
  }
  .search-input button {
    padding: 12px;
  }
  .tool-preview {
    gap: 30px;
  }
  .tool-schema {
    padding: 27px;
  }
  .price-card {
    padding: 28px;
  }
  .price-card h2 {
    font-size: 2.3rem;
  }
  .cost-stack > div {
    font-size: 0.8125rem;
  }
  .pilot-form {
    padding: 25px;
  }
  .journey {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .journey > div {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 5px 16px;
  }
  .journey h2 {
    margin: 0;
    font-size: 1.3rem;
  }
  .journey p {
    grid-column: 2;
    font-size: 0.9375rem;
  }
  .status-legend {
    gap: 12px;
  }
  .audience-visual,
  .demo-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .demo-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .demo-tabs button {
    font-size: 0.8125rem;
  }
  .demo-panel {
    padding-top: 10px;
  }
  .table-scroll th,
  .table-scroll td {
    padding: 17px;
  }
  .sources p {
    overflow-wrap: anywhere;
  }
  .notice {
    padding: 15px;
    font-size: 0.875rem;
  }
  .faqs summary {
    font-size: 1rem;
  }
  .faqs p {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .header-shell,
  .site-header,
  .announcement,
  .footer,
  .cta,
  .related,
  .article-aside,
  .breadcrumbs {
    display: none;
  }
  .wrap {
    width: 100%;
    max-width: none;
  }
  .article-layout {
    display: block;
  }
  .article-hero {
    padding-top: 0;
  }
  .prose section {
    break-inside: avoid;
  }
  body {
    background: var(--surface);
    color: var(--ink);
    font-size: 11pt;
  }
  .button {
    display: none;
  }
  a {
    text-decoration: underline;
  }
}
/* Let enlarged text reflow inside grid and flex layouts without hiding content. */
body {
  overflow-wrap: anywhere;
}
.split > *,
.pricing-layout > *,
.tool-preview > *,
.footer-grid > *,
.metrics > *,
.process-track > *,
.dashboard-heading > *,
.visual-heading > *,
.dossier-row > *,
.cta > *,
.article-layout > * {
  min-width: 0;
}
.button {
  max-width: 100%;
}
.cta > div:last-child {
  max-width: 100%;
}
.round-icon {
  flex-shrink: 0;
}
.visual-bottom {
  flex-wrap: wrap;
}
.process-track small {
  text-align: center;
}
.document-row > div,
.review-note > div {
  min-width: 0;
}
.related-group + .related-group {
  margin-top: 30px;
}
.related-group > h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.topic-section {
  padding-top: 25px;
  margin-bottom: 45px;
  scroll-margin-top: 25px;
}
.topic-section > h2 {
  font-size: 1.65rem;
  margin-bottom: 22px;
}
.prose .context-link {
  margin-top: 18px;
}
.context-link a {
  font-weight: 600;
}
@media (max-width: 850px) {
  html:not(.js) .site-header {
    flex-wrap: wrap;
    padding-block: 20px;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
  html:not(.js) .site-header nav {
    display: flex;
    position: static;
    box-shadow: none;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .aside-note {
    display: block;
    width: 100%;
    margin-top: 12px;
  }
  .aside-note p {
    font-size: 1rem;
  }
  .aside-note .eyebrow {
    margin-bottom: 10px;
  }
}
/* Keep the short reset action legible beside the flexible search input. */
.search-input button {
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 54px;
}
/* Shared offer and package components: modules, pricing and comparison pages. */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.package-card {
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  scroll-margin-top: 24px;
}
.package-card.featured {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 31px 25px;
}
.package-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.package-card > p {
  font-size: 0.9375rem;
}
.package-price {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  line-height: 1.15;
  margin-block: 28px 16px;
  letter-spacing: -0.04em;
}
.package-price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 0.8125rem;
  letter-spacing: 0;
  margin-top: 12px;
  color: var(--muted);
}
.reference-price {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.reference-price strong {
  color: var(--ink);
  font-weight: 650;
}
.package-card .check-list {
  font-size: 0.875rem;
  margin: 20px 0 28px;
}
.package-card .check-list a {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}
.package-card .button {
  margin-top: auto;
  padding-inline: 14px;
  gap: 12px;
}
.offer-features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.offer-features .info-card {
  display: flex;
  flex-direction: column;
}
.offer-features .card-link {
  margin-top: auto;
  padding-top: 24px;
}
.module-scope {
  border-left: 3px solid var(--ink);
  padding: 22px 28px;
  background: var(--paper);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}
.module-scope .eyebrow {
  margin-bottom: 8px;
}
.module-scope p {
  font-size: 1.0625rem;
  max-width: 850px;
  color: var(--ink);
}
.module-journey {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
}
.module-journey h2 {
  max-width: 800px;
}
.module-journey > p {
  max-width: 750px;
  margin-top: 24px;
}
.journey-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.journey-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}
.journey-links a > span:last-child {
  margin-left: auto;
}
.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cost-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cost-form label {
  font-weight: 650;
  margin-top: 10px;
}
.cost-form input,
.cost-form select {
  min-width: 0;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}
.cost-form input:disabled {
  background: var(--surface-soft);
  color: var(--muted);
}
.cost-form small {
  color: var(--muted);
}
.cost-form .button {
  margin-top: 16px;
}
.quote-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--ink);
  color: var(--surface);
  padding: 36px;
  border-radius: var(--radius);
}
.quote-panel .eyebrow,
.quote-panel p {
  color: var(--muted-on-dark);
}
.quote-panel small {
  color: var(--muted-on-dark);
}
.quote-panel .text-link {
  margin-top: auto;
  color: var(--surface);
}
#quote-result > strong {
  display: block;
  font: 750 clamp(2.5rem, 4vw, 3.5rem) / 1.2 var(--font-display);
  margin-block: 10px 24px;
}
.quote-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-on-dark);
  padding-block: 16px;
}
#quote-detail,
#quote-status {
  font-size: 0.875rem;
}
.article-product-link {
  border-left: 3px solid var(--ink);
  padding: 16px 20px;
  background: var(--paper);
  margin-top: 24px;
}
#credits {
  margin-top: 36px;
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .offer-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .package-card {
    padding: 26px 20px;
  }
  .package-card.featured {
    padding: 25px 19px;
  }
}
@media (max-width: 850px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-price {
    font-size: 2.7rem;
  }
  .package-card .button {
    align-self: flex-start;
  }
  .calculator-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .offer-features,
  .journey-links {
    grid-template-columns: 1fr;
  }
  .cost-form,
  .quote-panel,
  .module-journey {
    padding: 24px 20px;
  }
  .module-scope {
    padding: 20px;
  }
  .package-price {
    font-size: 2.5rem;
  }
  .journey-links a {
    padding: 16px 12px;
    gap: 10px;
  }
}

/* Composition: neutral surfaces, strong dark panels and deliberate orange accents. */
.button {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.button:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
  border-color: var(--accent-hover);
}
.button.secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.button.secondary:hover {
  background: var(--surface-soft);
  border-color: var(--ink);
}
.announcement {
  background: var(--panel-dark);
  color: var(--on-dark);
}
.announcement a {
  color: var(--on-dark);
}
.header-shell {
  background: var(--surface);
}
.home-hero {
  padding-bottom: 72px;
}

.home-hero h1 em {
  color: var(--ink);
}

.dashboard-stage {
  background: var(--panel-dark);
  padding: 34px 34px 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
.dashboard {
  box-shadow: var(--shadow-card);
}
.dashboard aside {
  background: var(--surface-soft);
}
.side-item.selected {
  background: var(--accent);
  color: var(--on-accent);
}
.mini-bars i {
  background: var(--chart-muted);
}
.mini-bars i:last-child {
  background: var(--accent);
}
.floating-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}
.audience-strip {
  background: var(--surface);
}
.bento-main {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-small);
}
.bento-small {
  background: var(--surface-soft);
}
.bento-small.sage {
  background: var(--surface-tint);
}
.check {
  background: var(--accent-soft);
  color: var(--ink);
}
.tinted {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.card,
.info-card {
  border-radius: var(--radius);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-small);
}
.cta {
  background: var(--panel-dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 48px;
}
.cta p,
.cta .eyebrow,
.cta .text-link {
  color: var(--muted-on-dark);
}
.cta .button.secondary {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.cta .button.secondary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.footer {
  background: var(--surface);
}
.process-track .done > span,
.filter-chips button.active,
.demo-tabs button[aria-selected="true"] {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.package-card {
  box-shadow: var(--shadow-small);
}
.package-card.featured {
  background: var(--surface);
  border-color: var(--accent);
}
.package-card.featured > .eyebrow {
  color: var(--accent-ink);
}
.module-scope,
.article-product-link {
  border-left-color: var(--accent);
  background: var(--surface);
}
.module-journey {
  background: var(--surface-soft);
}
.quote-panel {
  background: var(--panel-dark);
  color: var(--on-dark);
}
@media (max-width: 850px) {
  .home-hero {
    padding-bottom: 48px;
  }
  .dashboard-stage {
    padding: 22px 22px 0;
  }
}
@media (max-width: 600px) {
  .dashboard-stage {
    padding: 14px 12px 0;
  }
  .cta {
    padding: 30px 24px;
  }
}

/* Paired homepage actions with equal height and distinct priority. */
.home-hero .actions {
  gap: 14px;
  align-items: stretch;
  margin-top: 32px;
}
.home-hero .button {
  min-height: 58px;
  padding: 16px 24px;
  gap: 22px;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: var(--radius-medium);
}
.home-hero .hero-primary {
  box-shadow: var(--shadow-small);
}
.home-hero .hero-secondary {
  background: var(--surface);
  border-color: var(--line-strong);
  gap: 12px;
}
.action-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-primary .action-icon {
  transition: transform 0.18s ease;
}
.hero-primary:hover .action-icon {
  transform: translateX(3px);
}
@media (max-width: 600px) {
  .home-hero .actions {
    flex-direction: column;
    width: min(100%, 340px);
    margin-inline: auto;
    gap: 12px;
  }
  .home-hero .button {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    padding: 15px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-primary .action-icon {
    transition: none;
  }
}

/* Navigation: compact brand, consistent 44px targets, restrained type. */
.site-header .brand-art {
  width: 174px;
}
.site-header nav > a:not(.button),
.nav-dropdown > summary {
  padding: 10px 13px;
  min-height: 44px;
  line-height: 24px;
  border-radius: 10px;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.site-header nav > a:not(.button):hover,
.site-header nav > a.current,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: var(--surface-soft);
  color: var(--ink);
}
.site-header nav > .button {
  min-height: 48px;
  padding: 11px 20px;
  margin-left: 14px;
  border-radius: 14px;
  font-size: 0.9375rem;
  line-height: 24px;
  gap: 18px;
  white-space: nowrap;
}
.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}
.nav-dropdown[open] .nav-chevron {
  transform: rotate(180deg);
}
.dropdown-panel {
  top: calc(100% - 4px);
  padding: 24px;
}
.dropdown-panel > a:first-child {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
.dropdown-grid {
  gap: 4px 16px;
}
.dropdown-grid a {
  padding: 11px 12px;
  border: 0;
  border-radius: 8px;
}
.dropdown-grid a:hover {
  background: var(--surface-soft);
}
.dropdown-foot {
  border-top: 1px solid var(--line);
  padding: 18px 12px 0;
  margin-top: 14px;
}
.menu-toggle {
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 20px;
}
.menu-icon {
  width: 18px;
  height: 18px;
}
.menu-toggle[aria-expanded="true"] {
  background: var(--surface-soft);
}
@media (min-width: 851px) and (max-width: 1100px) {
  .site-header {
    gap: 12px;
  }
  .site-header .brand-art {
    width: 154px;
  }
  .site-header nav > a:not(.button),
  .nav-dropdown > summary {
    padding-inline: 9px;
  }
  .site-header nav > .button {
    padding-inline: 15px;
    margin-left: 6px;
    gap: 10px;
  }
}
@media (max-width: 850px) {
  .site-header .brand-art {
    width: 158px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .site-header nav {
    padding: 12px;
    font-size: 1rem;
    top: calc(100% - 2px);
  }
  .site-header nav > a:not(.button),
  .nav-dropdown > summary {
    padding: 12px;
    min-height: 48px;
  }
  .nav-dropdown > summary {
    justify-content: space-between;
  }
  .dropdown-panel {
    width: 100%;
    padding: 12px 0;
  }
  .dropdown-panel > a:first-child {
    padding-inline: 12px;
  }
  .site-header nav > .button {
    margin: 8px 0 0;
    justify-content: space-between;
  }
  .dropdown-grid {
    gap: 4px;
  }
}
@media (max-width: 380px) {
  .dropdown-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header nav > a:not(.button),
  .nav-dropdown > summary,
  .nav-chevron {
    transition: none;
  }
}

/* Show the work: distinct dossier examples and task-based entry points. */
.product-explorer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
  padding: 38px;
  background: var(--panel-dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.explorer-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 16px 0;
}
.explorer-copy p {
  color: var(--muted-on-dark);
  font-size: 0.9375rem;
}
.explorer-copy > .eyebrow {
  color: var(--muted-on-dark);
}
.explorer-copy > .text-link {
  color: var(--on-dark);
  font-size: 0.875rem;
}
.explorer-choices {
  display: grid;
  gap: 6px;
  margin: 24px 0;
}
.explorer-choices button {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 13px 15px;
  gap: 14px;
  border-radius: 10px;
  background: transparent;
  color: var(--on-dark);
  font-weight: 600;
}
.explorer-choices button > span:first-child {
  font-size: 0.75rem;
  opacity: 0.7;
}
.explorer-choices button > span:last-child {
  margin-left: auto;
}
.explorer-choices button[aria-pressed="true"] {
  background: var(--accent);
  color: var(--on-accent);
}
.workbench {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  min-width: 0;
}
.wb-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--surface-soft);
}
.wb-mark {
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  height: 27px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: 700 23px/1 var(--font-display);
}
.wb-demo {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 400;
}
.wb-heading {
  padding: 24px 22px 18px;
}
.wb-heading > .eyebrow {
  display: block;
  font-size: 0.75rem;
  line-height: 1.6;
}
.wb-switch {
  display: flex;
  padding: 4px;
  background: var(--surface-soft);
  border-radius: 11px;
  margin-top: 16px;
  gap: 3px;
}
.wb-switch button {
  flex: 1;
  padding: 8px;
  min-height: 40px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
}
.wb-switch button[aria-pressed="true"] {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 4px var(--line);
}
.wb-content {
  padding: 0 22px 24px;
  min-height: 220px;
}
.wb-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
}
.wb-row strong {
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.5;
}
.wb-index {
  display: none;
}
.wb-emphasis {
  background: var(--accent-soft);
  border: 0;
  border-radius: 10px;
}
.wb-ledger .wb-row strong {
  font-variant-numeric: tabular-nums;
}
.wb-document .wb-row {
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  grid-template-columns: 25px minmax(0, 1fr) minmax(0, 1fr);
}
.wb-document .wb-index {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
}
.wb-timeline .wb-row {
  border: 0;
  border-left: 2px solid var(--line);
  margin-left: 12px;
  border-radius: 0;
  position: relative;
}
.wb-timeline .wb-row::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.wb-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.wb-board .wb-row {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 16px 12px;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}
.wb-board .wb-row strong {
  text-align: left;
  margin-top: 20px;
  font-size: 1rem;
}
.workbench figcaption {
  border-top: 1px solid var(--line);
  padding: 12px 22px;
  color: var(--muted);
  font-size: 0.6875rem;
}
.scene-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.scene-split > div > h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 15px 0;
}
.scene-split > div > p {
  color: var(--muted);
}
.feature-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-path-grid > div {
  padding: 26px;
  border-top: 2px solid var(--accent);
  background: var(--surface);
  border-radius: 0 0 16px 16px;
}
.feature-path-grid h3 {
  font-size: 1.2rem;
  margin: 20px 0 12px;
}
.feature-path-grid p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}
.start-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
}
.start-steps li {
  border-top: 1px solid var(--line-strong);
  padding: 24px 0;
  margin: 0;
}
.start-steps li > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
}
.start-steps h3 {
  font-size: 1.4rem;
  margin: 18px 0 12px;
}
.start-steps p {
  color: var(--muted);
  max-width: 32ch;
  font-size: 0.9375rem;
}
.directory-start {
  padding-bottom: 45px;
}
.task-entries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.task-entries > a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.task-entries > a:hover {
  border-color: var(--accent);
}
.task-entries h2 {
  font-size: 1.35rem;
  margin: 22px 0 12px;
}
.task-entries p {
  font-size: 0.9375rem;
  color: var(--muted);
}
.task-entries > a > span:last-child {
  font-size: 0.875rem;
  font-weight: 600;
}
.article-checklist {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 24px;
}
.article-checklist .checklist-status {
  margin: 0 0 15px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}
.article-checklist label {
  display: flex;
  align-items: start;
  gap: 13px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.9375rem;
}
.article-checklist input {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 4px;
}
.article-checklist input:checked + span {
  text-decoration: line-through;
  color: var(--muted);
}
.article-checklist > button {
  background: transparent;
  font-size: 0.8125rem;
  padding: 10px 0;
}
.article-checklist > small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}
.cta-reading {
  background: var(--surface-soft);
  color: var(--ink);
}
.cta-reading p,
.cta-reading .eyebrow,
.cta-reading .text-link {
  color: var(--muted);
}
.tool-preview > div {
  min-width: 0;
}
.tool-preview details.tool-schema {
  margin-top: 20px;
  padding: 20px;
}
.tool-schema summary {
  font-size: 0.9375rem;
  font-weight: 600;
}
.package-card > .text-link {
  font-size: 0.8125rem;
  margin-top: 12px;
}
@media (max-width: 1100px) {
  .product-explorer {
    gap: 28px;
    padding: 28px;
  }
  .scene-split {
    gap: 32px;
  }
  .site-header nav > .button {
    font-size: 0.8125rem;
    padding-inline: 12px;
    gap: 8px;
  }
  .feature-path-grid {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  .product-explorer,
  .scene-split {
    grid-template-columns: 1fr;
  }
  .product-explorer {
    gap: 28px;
  }
  .explorer-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .explorer-choices button {
    font-size: 0.8125rem;
    padding: 12px;
    gap: 8px;
  }
  .start-steps,
  .feature-path-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .start-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 18px;
    padding: 20px 0;
  }
  .start-steps h3 {
    margin: 6px 0 10px;
  }
  .start-steps p {
    grid-column: 2;
    max-width: none;
    margin: 0;
  }
  .feature-path-grid > div {
    padding: 24px;
  }
  .task-entries {
    grid-template-columns: 1fr;
  }
  .task-entries > a {
    padding: 24px;
  }
  .task-entries h2 {
    margin-top: 12px;
  }
  .site-header nav > .button {
    font-size: 0.9375rem;
  }
}
@media (max-width: 600px) {
  .product-explorer {
    padding: 20px 14px;
    border-radius: 20px;
  }
  .explorer-copy {
    padding: 0 8px;
  }
  .explorer-copy h2 {
    font-size: 1.75rem;
  }
  .explorer-choices {
    gap: 5px;
  }
  .explorer-choices button > span:first-child {
    display: none;
  }
  .wb-bar {
    padding: 14px;
    font-size: 0.75rem;
    gap: 7px;
  }
  .wb-demo {
    display: none;
  }
  .wb-heading {
    padding: 20px 14px 14px;
  }
  .wb-content {
    padding: 0 14px 20px;
  }
  .wb-row {
    padding: 15px 10px;
    font-size: 0.75rem;
  }
  .wb-row strong {
    font-size: 0.75rem;
  }
  .wb-board {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .wb-board .wb-row {
    min-height: 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
  .wb-board .wb-row strong {
    margin: 0;
    font-size: 0.8125rem;
  }
  .wb-document .wb-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .wb-document .wb-index {
    display: none;
  }
  .workbench figcaption {
    padding: 12px 14px;
  }
  .article-checklist {
    padding: 18px;
  }
}
.auth-page {
  background: var(--surface);
}
.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 28px;
  gap: 20px;
}
.auth-header .brand-art {
  width: 174px;
}
.auth-header > .text-link {
  font-size: 0.9375rem;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 30px 0 60px;
}
.auth-story {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
}
.auth-story > h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 18px 0;
}
.auth-story > p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 30px;
}
.auth-story .wb-board {
  grid-template-columns: 1fr;
}
.auth-story .wb-board .wb-row {
  min-height: 0;
  flex-direction: row;
  justify-content: space-between;
}
.auth-story .wb-board .wb-row strong {
  margin: 0;
  font-size: 0.875rem;
}
.auth-story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.8125rem;
  margin-top: 24px;
}
.auth-form-wrap {
  padding: 20px 0;
  max-width: 440px;
}
.auth-form-wrap h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin: 18px 0;
  letter-spacing: -0.04em;
}
.auth-form-wrap > p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.auth-form fieldset {
  border: 0;
  padding: 0;
  margin: 26px 0 18px;
  display: grid;
  gap: 9px;
  min-width: 0;
}
.auth-form label {
  font-size: 0.875rem;
  font-weight: 600;
}
.auth-form input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9375rem;
}
.auth-form .button {
  justify-content: center;
  border-radius: 12px;
  margin-top: 8px;
}
.auth-form fieldset:disabled {
  opacity: 0.75;
}
.auth-form button:disabled {
  cursor: not-allowed;
}
.auth-form-wrap .auth-preview {
  font-size: 0.75rem;
  line-height: 1.6;
  background: var(--surface-soft);
  padding: 12px 15px;
  border-radius: 10px;
}
.auth-switch {
  margin-top: 22px;
}
.auth-switch a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.auth-form-wrap .auth-small {
  font-size: 0.75rem;
  margin-top: 30px;
}
.auth-footer {
  padding: 20px 0 30px;
  font-size: 0.75rem;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .auth-layout {
    gap: 36px;
  }
  .auth-story {
    padding: 24px;
  }
}
@media (max-width: 850px) {
  .auth-layout {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }
  .auth-form-wrap {
    order: -1;
    width: 100%;
    margin: auto;
  }
  .auth-story {
    max-width: 540px;
    width: 100%;
    margin: auto;
  }
  .auth-header {
    padding-block: 22px;
  }
}

/* Product stories: editorial context alongside clearly labelled example dossiers. */
.product-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-block: 22px;
  border-block: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 600;
}
.product-nav a {
  text-decoration: none;
  padding-block: 8px;
}
.product-nav a:hover {
  color: var(--accent-ink);
}
.product-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.product-story h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 20px 0;
}
.product-story-copy > p {
  color: var(--muted);
  line-height: 1.8;
}
.product-metric {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.product-metric strong {
  font: 600 clamp(2.5rem, 4vw, 4rem) / 1 var(--font-display);
  letter-spacing: -0.05em;
}
.product-metric span {
  max-width: 150px;
  color: var(--muted);
  font-size: 0.875rem;
}
.product-caption {
  font-size: 0.75rem;
}
.product-screen {
  min-width: 0;
  margin: 0;
  background: var(--panel-dark);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px;
  box-shadow: var(--shadow-card);
}
.product-screen figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 10px 20px;
  color: var(--on-dark);
  font-size: 0.75rem;
  flex-wrap: wrap;
}
.product-screen-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.product-example {
  margin-left: auto;
  color: var(--muted-on-dark);
  border: 1px solid var(--line-on-dark);
  border-radius: 30px;
  padding: 4px 8px;
}
.product-screen-body {
  background: var(--surface);
  border-radius: 14px;
  padding: 26px 22px 20px;
}
.product-screen-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}
.product-screen-heading strong {
  font: 600 1.5rem/1.2 var(--font-display);
}
.product-table-scroll {
  overflow-x: auto;
}
.product-screen table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}
.product-screen th,
.product-screen td {
  text-align: left;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.product-screen thead th {
  font-weight: 500;
  color: var(--muted);
  background: var(--paper);
}
.product-screen tbody th {
  font-weight: 600;
}
.product-state {
  display: inline-block;
  padding: 5px 8px;
  background: var(--surface-soft);
  border-radius: 6px;
}
.product-state.attention {
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.product-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--surface-tint);
  border-radius: 10px;
  margin-top: 20px;
}
.product-note > span {
  color: var(--accent-ink);
  font-size: 1.5rem;
}
.product-note p {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
}
.product-progress {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.6875rem;
}
.product-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.product-capabilities article {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
}
.product-index {
  font: 500 1rem var(--font-display);
  color: var(--accent-ink);
}
.product-capabilities h3 {
  font: 600 1.5rem/1.2 var(--font-display);
  margin: 25px 0 14px;
}
.product-capabilities p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.product-availability {
  margin-top: 24px;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--surface-soft);
  border-radius: 0 12px 12px 0;
}
.product-availability p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.product-availability a {
  font-size: 0.875rem;
  font-weight: 600;
}
.product-io {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.product-io article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 22px;
  height: 100%;
}
.product-io article:last-child {
  background: var(--panel-dark);
  color: var(--on-dark);
}
.product-io article:last-child .eyebrow {
  color: var(--muted-on-dark);
}
.product-io h3 {
  font: 600 1.7rem/1.2 var(--font-display);
  margin: 20px 0;
}
.product-io ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-io li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.product-io article:last-child li {
  border-color: var(--line-on-dark);
}
.product-io-arrow {
  font-size: 2rem;
  color: var(--accent-ink);
}
.product-price {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
  border-radius: 28px;
  background: var(--surface-tint);
  padding: 48px;
}
.product-price h2 {
  font: 600 clamp(2rem, 3vw, 3rem) / 1.1 var(--font-display);
  margin: 20px 0;
  letter-spacing: -0.035em;
}
.product-price p {
  line-height: 1.7;
}
.product-price .button {
  margin-top: 14px;
}
.product-price-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.product-price-card > strong {
  display: block;
  font: 600 2.8rem/1.1 var(--font-display);
  margin: 18px 0 8px;
  letter-spacing: -0.04em;
}
.product-price-card small,
.product-price-card p {
  color: var(--muted);
  font-size: 0.8125rem;
}
.product-price-card a {
  font-weight: 600;
}
.product-next {
  border-block: 1px solid var(--line);
  padding-block: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.product-next > div {
  max-width: 700px;
}
.product-next h2 {
  font: 600 2rem/1.2 var(--font-display);
  margin: 15px 0;
}
.product-next p {
  color: var(--muted);
  line-height: 1.7;
}
.product-next .button {
  flex-shrink: 0;
}
#praktijk,
#mogelijkheden,
#gegevens,
#moduleprijs,
#productvragen {
  scroll-margin-top: 125px;
}
@media (max-width: 1000px) {
  .product-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-story-copy {
    max-width: 650px;
  }
  .product-price {
    gap: 24px;
    padding: 30px;
  }
  .product-next {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .product-nav {
    gap: 4px 20px;
    font-size: 0.75rem;
  }
  .product-capabilities,
  .product-price,
  .product-io {
    grid-template-columns: 1fr;
  }
  .product-capabilities article,
  .product-io article,
  .product-price-card {
    padding: 24px;
  }
  .product-price {
    padding: 24px 18px;
  }
  .product-screen-body {
    padding: 20px 10px 16px;
  }
  .product-screen th,
  .product-screen td {
    padding: 12px 5px;
    font-size: 0.6875rem;
    overflow-wrap: anywhere;
  }
  .product-screen figcaption {
    font-size: 0.6875rem;
  }
  .product-example {
    margin-left: 0;
  }
  .product-io-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
  .product-next .button {
    white-space: normal;
  }
}
