/* Proto marketing site
   Visual thesis: The Operating Trace
   Application-owned Proto palette, typography, and component rules */

/* ========================================================================== */
/* Proto-owned content design system — chrome, full-bleed layout, and sections   */
/* ========================================================================== */

html {
  overscroll-behavior: none;
}

/* The document canvas must share the fixed footer's complete backdrop. The
   footer stylesheet is layered, while this standalone page's legacy body
   background is not, so keep this bridge unlayered as well. */
body.has-site-footer,
body:has(.site-footer) {
  background-color: var(--site-footer-bg);
  background-image: var(--site-footer-backdrop);
}

.page-shell {
  --footer-underlap: clamp(2.5rem, 5vw, 5rem);
  --site-main-seam-radius: clamp(1.25rem, 2.2vw, 2rem);
  --site-main-seam-surface: var(--proto-surface-dim);

  position: relative;
  z-index: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  isolation: isolate;
  background: var(--site-footer-backdrop, var(--proto-background));
}

#main {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  flex: 1;
  overflow: visible;
  border-bottom-right-radius: var(--site-main-seam-radius);
  border-bottom-left-radius: var(--site-main-seam-radius);
  background: var(--proto-background);
  transition-property: none;
}

/* Cookie dismissal moves focus to the main landmark so focus never remains in
   hidden UI. The landmark itself is not an interactive control, so suppress
   the page-spanning ring while preserving focus indication on its children. */
#main:focus {
  outline: none;
}

/* The final section owns the rounded edge and reaches the footer without
   a separate solid-colored seam band. */
#main::after {
  display: none;
}

#main > section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.page-shell[data-site-footer-layout='reveal'] > #main {
  margin-bottom: var(--footer-height, 0px);
}

.page-shell[data-site-footer-layout='flow'] > #main {
  margin-bottom: 0;
}

.page-shell[data-site-footer-layout='reveal'] > .site-footer {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
}

.page-shell[data-site-footer-layout='reveal'] > .site-footer::before {
  position: absolute;
  inset: calc(-1 * var(--site-main-seam-radius)) 0 auto;
  z-index: 0;
  height: calc(3 * var(--site-main-seam-radius));
  background: linear-gradient(
    to bottom,
    var(--site-footer-seam-surface) 0 66.666%,
    transparent 100%
  );
  content: '';
  pointer-events: none;
}

.page-shell[data-site-footer-layout='flow'] > .site-footer {
  position: relative;
  inset: auto;
  z-index: 0;
}

/* Keep the static navigation usable and visibly part of the Proto surface when
   scripting is unavailable. This mirrors the app-local fallback treatment
   without loading the unrelated legacy component bundle. */
.proto-nav-noscript {
  position: relative;
  z-index: 79;
  display: flex;
  flex-wrap: wrap;
  gap: var(--proto-space-2) var(--proto-space-4);
  align-items: center;
  justify-content: center;
  padding-block: calc(var(--chrome-height, 5rem) + var(--proto-space-3)) var(--proto-space-4);
  padding-left: max(var(--proto-space-4), var(--proto-viewport-safe-left));
  padding-right: max(var(--proto-space-4), var(--proto-viewport-safe-right));
  border-bottom: 1px solid var(--proto-border);
  background: var(--proto-background);
}

.proto-nav-noscript a {
  color: var(--proto-foreground);
  font-family: var(--proto-font-body);
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Exact Web Proto navigation geometry, adapted only to the retained anchors. */
.proto-nav {
  --tacet-nav-bg: url('../images/proto/gradient-navbar-bg.webp');
  --tacet-nav-ink: var(--proto-foreground);
  --tacet-nav-muted: var(--proto-text-m);
  --tacet-nav-border: color-mix(in oklch, var(--proto-foreground), transparent 82%);
  --tacet-nav-width: var(--proto-navigation-rest-width);
  --tacet-nav-width-scrolled: var(--proto-navigation-sticky-width);
  --tacet-nav-panel-rest: color-mix(in oklch, var(--proto-background), transparent 80%);
  --tacet-nav-panel-scrolled: color-mix(in oklch, var(--proto-background), transparent 40%);
  --tacet-nav-border-rest: color-mix(in oklch, white, transparent 34%);
  --tacet-nav-border-scrolled: color-mix(in oklch, var(--proto-foreground), transparent 80%);
  --tacet-nav-shadow-scrolled: 0 8px 20px -5px rgb(0 0 0 / 10%), 0 4px 10px -5px rgb(0 0 0 / 8%);
  --tacet-nav-inset-top: var(--proto-space-4);

  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: var(--tacet-nav-inset-top) 0;
  padding-left: max(1rem, var(--proto-viewport-safe-left));
  padding-right: max(1rem, var(--proto-viewport-safe-right));
  pointer-events: none;
}

.js .proto-nav.home-nav-shell[data-cinematic-nav='resting'] {
  position: absolute;
}

.js .page-shell > .home-nav-shell[data-cinematic-nav='resting'] {
  top: 100dvh;
}

.js .proto-nav.home-nav-shell[data-cinematic-nav='sticky'] {
  position: fixed;
}

.proto-nav__wash {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 38rem;
  background: var(--tacet-nav-bg) top center / cover no-repeat;
  opacity: 0;
  pointer-events: none;
}

.proto-nav__bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) auto minmax(8rem, 1fr);
  width: var(--tacet-nav-width);
  min-height: 4rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  overflow: visible;
  border: 1px solid var(--tacet-nav-border-rest);
  border-radius: 0.625rem;
  background: var(--tacet-nav-panel-rest);
  color: var(--tacet-nav-ink);
  box-shadow: none;
  pointer-events: auto;
  backdrop-filter: none;
  transition:
    width 500ms var(--proto-ease-standard),
    background 500ms var(--proto-ease-standard),
    border-color 500ms var(--proto-ease-standard),
    box-shadow 500ms var(--proto-ease-standard),
    backdrop-filter 500ms var(--proto-ease-standard);
}

.home-nav-shell[data-cinematic-nav='sticky'] .proto-nav__bar,
.proto-nav[data-scrolled='true'] .proto-nav__bar {
  border-color: var(--tacet-nav-border-scrolled);
  background: var(--tacet-nav-panel-scrolled);
  box-shadow: var(--tacet-nav-shadow-scrolled);
  backdrop-filter: blur(16px) grayscale(1%) saturate(180%);
}

.proto-nav[data-scrolled='true'] .proto-nav__bar {
  width: var(--tacet-nav-width-scrolled);
}

.proto-nav__bar-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: inherit;
  background: var(--tacet-nav-bg) top center / cover no-repeat;
  opacity: 0;
  transition: opacity var(--proto-duration-normal) var(--proto-ease-standard);
}

.home-nav-shell[data-cinematic-nav='sticky'] .proto-nav__bar-wash,
.proto-nav[data-scrolled='true'] .proto-nav__bar-wash {
  opacity: 0.58;
}

.proto-nav__brand,
.proto-nav__actions {
  position: relative;
  z-index: 4;
}

.proto-nav__brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  color: var(--tacet-nav-ink);
  text-decoration: none;
}

.proto-nav__brand img {
  display: block;
  width: 6.875rem;
  height: auto;
}

html.dark .proto-nav__brand img {
  filter: invert(1) brightness(1.08);
}

.proto-nav__desktop {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.proto-nav__item {
  position: relative;
}

.proto-nav__item::after {
  position: absolute;
  top: 100%;
  right: -0.75rem;
  left: -0.75rem;
  display: none;
  height: 1rem;
  content: '';
}

.proto-nav__item[data-open='true']::after {
  display: block;
}

.proto-nav__item-control {
  display: flex;
  align-items: center;
}

.proto-nav__item-control > .proto-nav__link {
  padding-right: 0.375rem;
}

.proto-nav__link {
  position: relative;
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  padding: 0 0.75rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--tacet-nav-ink);
  font-family: var(--proto-font-body);
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition:
    background var(--proto-duration-fast) var(--proto-ease-standard),
    color var(--proto-duration-fast) var(--proto-ease-standard);
}

.proto-nav__link:hover,
.proto-nav__link:focus-visible {
  background: color-mix(in oklch, var(--proto-foreground), transparent 92%);
}

.proto-nav__link--current {
  font-weight: 700;
}

.proto-nav__link--current::before {
  position: absolute;
  right: 0;
  bottom: calc(-0.75rem - 1px);
  left: 0;
  height: 3px;
  border-radius: var(--proto-radius-full) var(--proto-radius-full) 0 0;
  background: var(--proto-org-on-light);
  content: '';
}

.proto-nav__disclosure-toggle {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--tacet-nav-ink);
  cursor: pointer;
  transition:
    background var(--proto-duration-fast) var(--proto-ease-standard),
    color var(--proto-duration-fast) var(--proto-ease-standard);
}

.proto-nav__disclosure-toggle:hover,
.proto-nav__disclosure-toggle:focus-visible,
.proto-nav__disclosure-toggle[aria-expanded='true'] {
  background: color-mix(in oklch, var(--proto-foreground), transparent 92%);
  color: var(--proto-org-on-light);
}

.proto-nav__disclosure-toggle:focus-visible {
  outline: 2px solid var(--proto-ring);
  outline-offset: -2px;
}

.proto-nav__caret {
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  transition: transform var(--proto-duration-normal) var(--proto-ease-standard);
}

.proto-nav__disclosure-toggle[aria-expanded='true'] .proto-nav__caret,
.proto-mobile__disclosure-toggle[aria-expanded='true'] .proto-nav__caret {
  transform: rotate(180deg);
}

.proto-nav__menu-arrow {
  justify-self: end;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition:
    opacity 220ms var(--proto-ease-standard),
    transform 220ms var(--proto-ease-standard);
}

.proto-nav__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) 17.25rem;
  gap: 0.75rem;
  min-width: 40rem;
  max-width: calc(100vw - 2rem);
  padding: 0.875rem;
  border: 1px solid var(--tacet-nav-border);
  border-radius: 0.875rem;
  background: color-mix(in oklch, var(--proto-background), transparent 3%);
  box-shadow: 0 18px 44px -24px rgb(0 0 0 / 40%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -0.5rem, 0) scale(0.96);
  transform-origin: center top;
  filter: blur(8px);
  visibility: hidden;
  transition:
    opacity var(--duration-menu) var(--ease-menu),
    transform var(--duration-menu) var(--ease-menu),
    filter var(--duration-menu) var(--ease-menu),
    visibility 0s linear var(--duration-menu);
}

.proto-nav__item[data-open='true'] .proto-nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
  filter: blur(0);
  visibility: visible;
  transition-delay: 0s;
}

.proto-nav__menu-list,
.proto-nav__menu-preview {
  opacity: 0;
  transform: translateY(0.25rem) scale(0.99);
  transition:
    opacity var(--duration-menu-content) var(--ease-menu),
    transform var(--duration-menu-content) var(--ease-menu);
}

.proto-nav__item[data-open='true'] :is(.proto-nav__menu-list, .proto-nav__menu-preview) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--delay-menu-content);
}

.proto-nav__menu-list {
  display: grid;
  gap: 0.375rem;
}

.proto-nav__menu-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  min-height: 4rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.625rem;
  color: var(--tacet-nav-ink);
  text-decoration: none;
  transition:
    background 220ms var(--proto-ease-standard),
    color 220ms var(--proto-ease-standard),
    transform 220ms var(--proto-ease-standard);
}

.proto-nav__menu-link:hover,
.proto-nav__menu-link:focus-visible,
.proto-nav__menu-link[data-active='true'],
.proto-nav__menu-link--current {
  background: color-mix(in oklch, var(--proto-foreground), transparent 92%);
  transform: translateX(0.125rem);
}

.proto-nav__menu-copy {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
}

.proto-nav__menu-title {
  display: block;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.2;
}

.proto-nav__menu-desc {
  display: block;
  min-width: 0;
  color: var(--tacet-nav-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.proto-nav__menu-link:hover .proto-nav__menu-arrow,
.proto-nav__menu-link:focus-visible .proto-nav__menu-arrow,
.proto-nav__menu-link[data-active='true'] .proto-nav__menu-arrow,
.proto-nav__menu-link--current .proto-nav__menu-arrow {
  opacity: 1;
  transform: translateX(0);
}

.proto-nav__menu-preview {
  position: relative;
  display: block;
  min-height: 11rem;
  overflow: hidden;
  border-radius: 0.625rem;
  background: linear-gradient(to top, rgb(0 0 0 / 20%), transparent 72%), var(--tacet-nav-bg);
  background-position: center;
  background-size: cover;
  color: var(--proto-beige-50);
  font-size: 0.875rem;
  font-weight: 700;
  isolation: isolate;
}

.proto-nav__menu-preview::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%);
  content: '';
  pointer-events: none;
}

.proto-nav__menu-preview-placeholder,
.proto-nav__menu-preview-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 1rem;
}

.proto-nav__menu-preview-placeholder {
  z-index: 1;
  background:
    linear-gradient(to top, rgb(0 0 0 / 30%), transparent 66%),
    radial-gradient(circle at 22% 18%, rgb(135 112 255 / 48%), transparent 34%),
    radial-gradient(circle at 84% 14%, rgb(255 104 142 / 40%), transparent 32%),
    linear-gradient(135deg, rgb(245 244 238), rgb(184 181 171));
  opacity: 1;
  transition:
    opacity 240ms var(--proto-ease-standard),
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.proto-nav__menu-preview-layer {
  z-index: 2;
  opacity: 0;
  transform: translateY(1rem) scale(0.985);
  transition:
    opacity 260ms var(--proto-ease-standard),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proto-nav__menu-preview-layer span,
.proto-nav__menu-preview-placeholder span {
  position: relative;
  z-index: 3;
}

.proto-nav__menu-preview-layer::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to top, rgb(0 0 0 / 34%), transparent 68%),
    radial-gradient(circle at 22% 20%, var(--preview-a), transparent 35%),
    radial-gradient(circle at 82% 18%, var(--preview-b), transparent 38%),
    linear-gradient(140deg, var(--preview-c), var(--preview-d));
  content: '';
  transform: scale(1.035);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proto-nav__menu-preview-layer[data-active='true'] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proto-nav__menu-preview-layer[data-active='true']::before {
  transform: scale(1);
}

.proto-nav__menu-preview:has(.proto-nav__menu-preview-layer[data-active='true'])
  .proto-nav__menu-preview-placeholder {
  opacity: 0;
  transform: translateY(-0.5rem) scale(1.01);
}

.proto-nav__menu-preview-layer--0 {
  --preview-a: rgb(115 92 255 / 72%);
  --preview-b: rgb(255 100 128 / 66%);
  --preview-c: rgb(244 239 229);
  --preview-d: rgb(162 158 148);
}

.proto-nav__menu-preview-layer--1 {
  --preview-a: rgb(255 101 36 / 68%);
  --preview-b: rgb(255 208 88 / 62%);
  --preview-c: rgb(255 244 218);
  --preview-d: rgb(167 132 102);
}

.proto-nav__menu-preview-layer--2 {
  --preview-a: rgb(76 168 255 / 68%);
  --preview-b: rgb(124 96 255 / 62%);
  --preview-c: rgb(231 241 252);
  --preview-d: rgb(126 136 159);
}

.proto-nav__desktop .menu-download {
  display: none;
}

.proto-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--proto-space-2);
}

.proto-nav__action {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.875rem;
  border-radius: 0.5rem;
  font-family: var(--proto-font-body);
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition:
    background var(--proto-duration-fast) var(--proto-ease-standard),
    border-color var(--proto-duration-fast) var(--proto-ease-standard),
    color var(--proto-duration-fast) var(--proto-ease-standard),
    transform var(--proto-duration-fast) var(--proto-ease-standard);
}

.proto-nav__action--solid {
  border: 1px solid var(--proto-foreground);
  background: var(--proto-foreground);
  color: var(--proto-background);
  box-shadow: 0 0 0 2px var(--proto-org-on-light);
}

.proto-nav__action--solid:hover,
.proto-nav__action--solid:focus-visible {
  border-color: var(--proto-org-on-light);
  background: var(--proto-org-on-light);
  color: var(--proto-beige-50);
  transform: translateY(-1px);
}

.proto-nav__menu-button {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--tacet-nav-ink);
  cursor: pointer;
}

.proto-nav__menu-button:hover,
.proto-nav__menu-button:focus-visible {
  background: color-mix(in oklch, var(--proto-foreground), transparent 92%);
}

.menu-toggle-lines {
  width: 1.35rem;
  display: grid;
  gap: 0.32rem;
}

.menu-toggle-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform var(--proto-duration-normal) var(--proto-ease-signature);
}

.proto-nav__menu-button[aria-expanded='true'] .menu-toggle-lines i:first-child {
  transform: translateY(0.18rem) rotate(45deg);
}

.proto-nav__menu-button[aria-expanded='true'] .menu-toggle-lines i:last-child {
  transform: translateY(-0.18rem) rotate(-45deg);
}

html.dark .proto-nav {
  --tacet-nav-panel-rest: color-mix(in oklch, var(--proto-beige-900), transparent 0%);
  --tacet-nav-panel-scrolled: color-mix(in oklch, var(--proto-beige-950), transparent 60%);
  --tacet-nav-border-rest: color-mix(in oklch, black, transparent 0%);
  --tacet-nav-border-scrolled: color-mix(in oklch, white, transparent 60%);
  --tacet-nav-ink: var(--proto-beige-100);
}

@media (max-width: 63.99rem) {
  .proto-nav__bar {
    grid-template-columns: 1fr auto;
    min-height: 3.75rem;
  }

  .proto-nav__action {
    display: none;
  }

  .proto-nav__menu-button {
    display: inline-flex;
  }

  .proto-nav__desktop {
    display: none;
  }
}

@media (max-width: 39.99rem) {
  .proto-nav {
    padding-left: max(0.75rem, var(--proto-viewport-safe-left));
    padding-right: max(0.75rem, var(--proto-viewport-safe-right));
  }
}

.proto-mobile {
  --duration-menu: 300ms;
  --duration-menu-content: 200ms;
  --delay-menu-content: 80ms;
  --ease-menu: cubic-bezier(0.32, 0.72, 0, 1);
  --proto-mobile-separator: color-mix(in oklch, var(--proto-foreground), transparent 86%);

  position: fixed;
  inset: 0;
  z-index: 90;
  display: block;
  overflow: hidden;
  background: rgb(0 0 0 / 0%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    background var(--duration-menu) var(--ease-menu),
    opacity var(--duration-menu) var(--ease-menu),
    visibility 0s linear var(--duration-menu);
}

.proto-mobile[data-open='true'] {
  background: rgb(0 0 0 / 42%);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.proto-mobile__shell {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  width: min(100%, 32rem);
  height: 100%;
  flex-direction: column;
  background:
    linear-gradient(
      to bottom,
      color-mix(in oklch, var(--proto-background), transparent 3%),
      color-mix(in oklch, var(--proto-background), transparent 0%) 14rem
    ),
    var(--proto-background);
  color: var(--proto-foreground);
  box-shadow: -1.5rem 0 3rem rgb(0 0 0 / 18%);
  opacity: 0;
  transform: translate3d(2rem, 0, 0) scale(0.985);
  transform-origin: right top;
  filter: blur(8px);
  transition:
    opacity var(--duration-menu) var(--ease-menu),
    transform var(--duration-menu) var(--ease-menu),
    filter var(--duration-menu) var(--ease-menu);
}

.proto-mobile[data-open='true'] .proto-mobile__shell {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.proto-mobile__header,
.proto-mobile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.25rem;
  padding-left: max(1.25rem, var(--proto-viewport-safe-left));
  padding-right: max(1.25rem, var(--proto-viewport-safe-right));
  border-bottom: 1px solid var(--proto-mobile-separator);
}

.proto-mobile__header,
.proto-mobile__body,
.proto-mobile__footer {
  opacity: 0;
  transform: translateX(0.25rem);
  transition:
    opacity var(--duration-menu-content) var(--ease-menu),
    transform var(--duration-menu-content) var(--ease-menu);
}

.proto-mobile[data-open='true']
  :is(.proto-mobile__header, .proto-mobile__body, .proto-mobile__footer) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: var(--delay-menu-content);
}

.proto-mobile__footer {
  border-top: 1px solid var(--proto-mobile-separator);
  border-bottom: 0;
}

.proto-mobile__brand {
  display: inline-flex;
}

.proto-mobile__brand img {
  display: block;
  width: 6.875rem;
  height: auto;
}

.proto-mobile__close {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.5rem;
  background: color-mix(in oklch, var(--proto-foreground), transparent 92%);
  color: var(--proto-foreground);
  cursor: pointer;
}

.proto-mobile__close-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.75;
}

.proto-mobile__body {
  flex: 1;
  overflow-y: auto;
  padding-block: 1rem;
  padding-left: max(1rem, var(--proto-viewport-safe-left));
  padding-right: max(1rem, var(--proto-viewport-safe-right));
}

.proto-mobile__link {
  display: flex;
  width: 100%;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0.5rem;
  border-bottom: 1px solid var(--proto-mobile-separator);
  background: transparent;
  color: var(--proto-foreground);
  font-family: var(--proto-font-body);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.proto-mobile__link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.5rem;
  align-items: center;
  border-bottom: 1px solid var(--proto-mobile-separator);
}

.proto-mobile__link-row > .proto-mobile__link {
  min-width: 0;
  border-bottom: 0;
}

.proto-mobile__disclosure-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  align-self: center;
  justify-content: center;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--proto-foreground);
  cursor: pointer;
}

.proto-mobile__disclosure-toggle:hover,
.proto-mobile__disclosure-toggle:focus-visible,
.proto-mobile__disclosure-toggle[aria-expanded='true'] {
  background: color-mix(in oklch, var(--proto-foreground), transparent 92%);
  color: var(--proto-org-on-light);
}

.proto-mobile__submenu {
  display: grid;
  margin: 0 0 0.5rem 1rem;
  border-left: 0;
}

.proto-mobile__submenu[hidden] {
  display: none;
}

.proto-mobile__sublink {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.625rem 1rem;
  color: var(--proto-foreground);
  font-family: var(--proto-font-body);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
  text-decoration: none;
  text-transform: none;
  transition:
    background var(--proto-duration-fast) var(--proto-ease-standard),
    color var(--proto-duration-fast) var(--proto-ease-standard);
}

.proto-mobile__sublink:hover,
.proto-mobile__sublink:focus-visible,
.proto-mobile__sublink--current {
  background: color-mix(in oklch, var(--proto-background), var(--proto-org-on-light) 5%);
  color: var(--proto-org-on-light);
}

.proto-mobile__link:hover,
.proto-mobile__link:focus-visible,
.proto-mobile__link--current {
  color: var(--proto-org-on-light);
}

.proto-mobile__cta {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-family: var(--proto-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}

.proto-mobile__cta--solid {
  width: 100%;
  border: 1px solid var(--proto-foreground);
  background: var(--proto-foreground);
  color: var(--proto-background);
  box-shadow: 0 0 0 2px var(--proto-org-on-light);
}

.proto-mobile :is(a, button):focus-visible {
  outline: 2px solid var(--proto-ring);
  outline-offset: 3px;
}

html.dark .proto-mobile__brand img {
  filter: invert(1) brightness(1.08);
}

/* Canonical Tacet underline eyebrow: one normal-case label per section. */
.proto-section-eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: flex-end;
  margin-bottom: 0.9rem;
  color: var(--proto-text-m);
  font-family: var(--proto-font-body);
  font-size: 0.8125rem;
  line-height: 1;
  text-transform: none;
}

.proto-section-eyebrow__rail {
  display: none;
}

.proto-section-eyebrow__copy {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 0;
  row-gap: var(--proto-space-2);
}

.proto-section-eyebrow__name {
  padding: 0 var(--proto-space-2) var(--proto-space-2) 0;
  border-bottom: 2px solid var(--proto-border-strong);
  color: var(--proto-foreground);
  font-weight: 700;
  line-height: 1;
}

.proto-section-eyebrow__context {
  padding-bottom: var(--proto-space-2);
  border-bottom: 1px solid var(--proto-border);
  color: var(--proto-text-m);
  font-weight: 500;
  line-height: 1;
}

.proto-section-eyebrow__context:empty {
  display: none;
}

.proto-section-eyebrow + .display-title {
  margin-top: clamp(0.9rem, 1.5vw, 1.4rem);
}

/* Full-bleed surfaces; only these inner rails are width-capped. */
.section,
.tacet-section,
.wf-section,
.proto-signature-artifact,
.tacet-stat-section {
  width: 100%;
  max-width: none;
}

.product-introduction.tacet-page-hero {
  display: block;
  padding: 0;
  background-color: var(--proto-background);
  background-image:
    radial-gradient(at 78% 22%, oklch(0.69 0.19 56 / 20%), transparent 34%),
    radial-gradient(at 52% 56%, oklch(0.66 0.18 287 / 9%), transparent 36%),
    radial-gradient(at 92% 66%, oklch(0.73 0.196 148 / 7%), transparent 34%);
}

.product-introduction__inner {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(15.625rem, 3fr);
  gap: clamp(3rem, 5vw, 4.5rem);
  padding-top: clamp(9rem, 12vw, 11rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.product-introduction .hero-copy {
  max-width: 65rem;
}

.product-introduction .hero-aside {
  align-self: end;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--proto-border-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-aside-head {
  padding-inline: 0;
  background: transparent;
}

.hero-aside dl > div {
  padding-inline: 0;
  background: transparent;
}

.hero-aside > p {
  padding-inline: 0;
}

.intro {
  display: block;
}

.intro__inner {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(0, 3fr);
  gap: 3.5rem;
}

.section:nth-of-type(even):not(.control),
.section:nth-of-type(odd),
.intro,
.jobs,
.solutions,
.faq {
  background: var(--proto-background);
}

.proto-content-page :is(.process, .control, .reach, .local-first, .download),
.tacet-section--shaded,
.wf-section--soft {
  background: var(--proto-surface-dim);
}

.control {
  color: var(--proto-foreground);
}

.control::before {
  content: none;
}

.proto-content-page :is(.product-story, .skills-band) {
  background: color-mix(in oklch, var(--proto-darker), var(--proto-tacet-orange) 2%);
}

.site-footer.proto-footer .site-footer__inner {
  width: var(--site-footer-visible-rail);
  max-width: calc(var(--site-footer-section-max) - (2 * var(--site-footer-section-pad-x)));
}

.process-heading,
.jobs .section-head-wide,
.solutions-head > div:first-child {
  display: block;
  max-width: 72rem;
}

.process-heading .display-title,
.jobs .section-head-wide .display-title,
.solutions-head .display-title {
  max-width: 16ch;
  font-size: clamp(2.35rem, 4.9vw, 4.85rem);
}

.process-icon {
  width: clamp(2.75rem, 3.5vw, 3.5rem);
  height: clamp(2.75rem, 3.5vw, 3.5rem);
  margin: 1.75rem 0 2.5rem;
  color: var(--proto-foreground);
  transition: color var(--proto-duration-normal) var(--proto-ease-standard);
}

.process-step.is-current .process-icon {
  color: var(--proto-tacet-orange-on-light);
}

html.dark .process-step.is-current .process-icon {
  color: var(--proto-tacet-orange);
}

.page-shell > .site-footer {
  border-top: 0;
}

.page-shell > #main > .tacet-footer-seam:last-of-type {
  overflow: clip;
  border-block-end: 0;
  border-bottom-right-radius: var(--site-main-seam-radius);
  border-bottom-left-radius: var(--site-main-seam-radius);
  background: var(--site-main-seam-surface);
}

@media (max-width: 63.99rem) {
  .product-introduction__inner {
    grid-template-columns: 1fr;
    padding-top: 8rem;
  }

  .hero-aside {
    width: min(100%, 34rem);
  }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 39.99rem) {
  .product-introduction__inner {
    padding-top: 7.5rem;
  }

  .proto-section-eyebrow__name,
  .proto-section-eyebrow__context {
    width: fit-content;
  }

  .job-row.tacet-ledger__row {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .job-row.tacet-ledger__row p {
    grid-column: 2;
  }

  .job-row .job-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .solution-card .solution-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero-proof .hero-image-wrap img {
    width: calc(780px + (var(--hero-proof-image-crop) * 2));
  }

  .process-step.tacet-timeline__step,
  .process-step.tacet-timeline__step + .process-step.tacet-timeline__step,
  .process-step.tacet-timeline__step:nth-child(3) {
    min-height: auto;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: var(--proto-space-4);
    row-gap: var(--proto-space-3);
    padding: var(--proto-space-6);
  }

  .process-icon {
    width: 2.25rem;
    height: 2.25rem;
    grid-row: 1;
    margin: 0;
  }

  .process-step h3 {
    grid-row: 1;
    grid-column: 2;
  }

  .process-step p {
    grid-row: 2;
    grid-column: 2;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proto-nav,
  .proto-nav__bar,
  .proto-nav__bar-wash,
  .proto-nav__desktop,
  .proto-nav__link,
  .proto-nav__disclosure-toggle,
  .proto-nav__caret,
  .proto-nav__menu,
  .proto-nav__menu-list,
  .proto-nav__menu-preview,
  .proto-nav__menu-link,
  .proto-nav__action,
  .proto-mobile,
  .proto-mobile__shell,
  .proto-mobile__header,
  .proto-mobile__body,
  .proto-mobile__footer,
  .proto-mobile__sublink,
  .menu-toggle-lines i {
    transition: none;
  }
}

/* Proto-owned visual foundations. */

html.theme-changing *,
html.theme-changing *::before,
html.theme-changing *::after {
  transition: none !important;
}

body {
  background: var(--proto-background);
  color: var(--proto-foreground);
  font-family: var(--proto-font-body);
}

[id] {
  scroll-margin-top: 5.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: var(--proto-font-heading);
  font-weight: var(--proto-font-heading-weight);
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

code,
pre,
.mono {
  font-family: var(--proto-font-mono);
}

::selection {
  background: var(--proto-tacet-orange);
  color: var(--proto-beige-50);
}

:focus-visible {
  outline-color: var(--proto-tacet-orange);
}

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

.page-progress span {
  background: var(--proto-tacet-orange);
}

.skip-link {
  border-radius: 0;
  background: var(--proto-foreground);
  color: var(--proto-background);
  font-family: var(--proto-font-body);
  font-weight: 650;
}

.button,
.download-button,
.button-small {
  position: relative;
  border-radius: 0;
  border-color: var(--proto-foreground);
  background: var(--proto-foreground);
  color: var(--proto-background);
  font-family: var(--proto-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -3px 0 var(--proto-tacet-orange);
}

.button:hover,
.download-button:hover {
  box-shadow: inset 0 -5px 0 var(--proto-tacet-orange);
}

.eyebrow,
.kicker,
.section-index,
.proof-topline,
.fine-print {
  font-family: var(--proto-font-body);
}

.eyebrow,
.kicker {
  color: var(--proto-muted-foreground);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: none;
}

.section-index {
  color: var(--proto-muted-foreground);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-index::after {
  background: var(--proto-border-strong);
}

.section-index span,
.proof-item span {
  color: var(--proto-tacet-orange-on-light);
}

html.dark .section-index span,
html.dark .proof-item span {
  color: var(--proto-tacet-orange);
}

.hero h2 {
  max-width: 1000px;
  margin-top: 1.5rem;
  font-family: var(--proto-font-heading);
  font-size: clamp(3.4rem, 7vw, 7.1rem);
  font-weight: var(--proto-font-heading-weight);
  letter-spacing: -0.025em;
  line-height: 0.92;
}

.hero h2 span {
  display: block;
  color: var(--proto-tacet-orange-on-light);
}

html.dark .hero h2 span {
  color: var(--proto-tacet-orange);
}

.hero-summary,
.section-summary,
.intro-columns,
.process-step p,
.job-row p,
.solution-card p,
.faq-list p,
.download-summary {
  color: var(--proto-ink-soft);
}

.hero-aside dl > div,
.hero-aside-head,
.proof-topline {
  border-color: var(--proto-border);
}

.signal {
  background: var(--proto-tacet-orange);
  box-shadow: 0 0 0 0.45rem color-mix(in oklch, var(--proto-tacet-orange), transparent 86%);
}

.hero-image-wrap,
.window-crop,
.download-window-image {
  background: var(--proto-beige-100);
}

.hero-image-wrap img,
.window-crop img,
.download-window-image img {
  outline: 1px solid color-mix(in oklch, var(--proto-ink-deep), transparent 84%);
}

.intro-columns {
  max-width: 66rem;
}

/* Full Tacet process port: ruled ledger with scroll-activated signal rail. */
.process-list {
  border-top: 1px solid var(--proto-border-strong);
}

.process-step {
  position: relative;
  min-height: 12rem;
  border-color: var(--proto-border-strong);
  background: transparent;
  transition: background-color var(--proto-duration-normal) var(--proto-ease-standard);
}

.process-step::after {
  position: absolute;
  inset: auto 0 0;
  height: 0.24rem;
  background: var(--proto-tacet-orange);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--proto-duration-signature) var(--proto-ease-signature);
}

.process-step.is-current {
  background: color-mix(in oklch, var(--proto-tacet-orange), transparent 91%);
}

.process-step.is-current::after {
  transform: scaleX(1);
}

.process-list[data-process-sequence] {
  --process-step-timer-duration: calc(var(--proto-duration-cinema) * 2.5);
}

.process-list.is-sequenced .process-step::after {
  transition: none;
}

.process-list.is-sequenced .process-step.is-current::after {
  animation: proto-process-step-timer var(--process-step-timer-duration) linear forwards;
}

.process-list.is-sequenced:not(.is-sequence-running) .process-step.is-current::after {
  animation-play-state: paused;
}

@keyframes proto-process-step-timer {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Product-story evidence-stack exception. */
.product-story {
  overflow: clip;
}

.story-ledger > div {
  border-color: var(--proto-border-strong);
}

.story-ledger span {
  color: var(--proto-tacet-orange-on-light);
}

.story-quote {
  border-inline-start: 0.25rem solid var(--proto-tacet-orange);
  color: var(--proto-foreground);
  font-family: var(--proto-font-body);
  font-style: italic;
}

/* Ruled Tacet-compatible grids retain their authored structure. */
.jobs-list,
.job-row,
.solution-grid,
.solution-card {
  border-color: var(--proto-border-strong);
}

.solution-card {
  min-height: 29rem;
  background: transparent;
}

.solution-card li::before {
  background: var(--proto-tacet-orange);
}

/* Connected-work topology: structural rules, no decorative capsules. */
.reach-map {
  border: 1px solid var(--proto-border-strong);
  background-color: var(--proto-background);
  background-image:
    linear-gradient(var(--proto-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--proto-border) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}

.reach-core {
  border-radius: 0;
  border-color: var(--proto-tacet-orange);
  background: var(--proto-foreground);
  color: var(--proto-background);
  box-shadow: 0 0 0 0.5rem color-mix(in oklch, var(--proto-tacet-orange), transparent 86%);
}

.reach-map li {
  border-radius: 0;
  border-color: var(--proto-border-strong);
  background: var(--proto-background);
}

.reach-map li::before {
  background: var(--proto-tacet-orange);
}

.skills-band {
  border-block: 1px solid var(--proto-border-strong);
  background: var(--proto-foreground);
  color: var(--proto-background);
}

.skill-sheet {
  border: 1px solid color-mix(in oklch, var(--proto-background), transparent 62%);
  background: color-mix(in oklch, var(--proto-background), transparent 94%);
  box-shadow: 0.8rem 0.8rem 0 color-mix(in oklch, var(--proto-tacet-orange), transparent 20%);
}

.skill-sheet-head,
.skill-sheet-foot {
  border-color: color-mix(in oklch, var(--proto-background), transparent 72%);
}

.skill-sheet-head span,
.skill-sheet-foot span:first-child {
  color: var(--proto-tacet-orange);
}

.skills-band .section-summary,
.skills-band .kicker,
.skills-band .section-index {
  color: color-mix(in oklch, var(--proto-background), transparent 30%);
}

.skills-band .section-index span {
  color: var(--proto-tacet-orange);
}

.local-first {
  background: var(--proto-secondary);
}

.boundary-diagram {
  border: 1px solid var(--proto-border-strong);
  background: var(--proto-background);
}

.boundary-local,
.boundary-external,
.boundary-local li,
.boundary-external > div {
  border-color: var(--proto-border-strong);
  border-radius: 0;
}

.boundary-proto {
  border-radius: 0;
  background: var(--proto-foreground);
  color: var(--proto-background);
  box-shadow: inset 0 -0.25rem 0 var(--proto-tacet-orange);
}

.boundary-path i {
  background: var(--proto-tacet-orange);
}

.faq-list {
  border-top: 1px solid var(--proto-border-strong);
}

.faq-list details {
  border-color: var(--proto-border-strong);
}

.faq-list summary {
  min-height: 4.75rem;
  font-family: var(--proto-font-heading);
  font-weight: var(--proto-font-heading-weight);
}

.faq-list summary span {
  color: var(--proto-tacet-orange-on-light);
}

.faq-list details[open] {
  background: var(--proto-surface-container);
}

.download {
  background: var(--proto-secondary);
}

.download-window,
.download-panel {
  border: 1px solid var(--proto-border-strong);
  background: var(--proto-background);
  box-shadow: none;
}

.download-window {
  box-shadow: 0.8rem 0.8rem 0 var(--proto-border);
}

.download-button {
  border-color: var(--proto-border-strong);
  background: transparent;
  color: var(--proto-foreground);
  box-shadow: inset 0 -0.18rem 0 var(--proto-tacet-orange);
}

.download-button:hover {
  background: var(--proto-foreground);
  color: var(--proto-background);
}

/* Donor footer rules are layered; these unlayered bridges defeat legacy CSS. */
.site-footer.proto-footer {
  width: 100%;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--site-footer-ink);
  background-color: var(--site-footer-bg);
  background-image: var(--site-footer-backdrop);
}

.site-footer__inner {
  width: min(calc(100% - 2rem), 84rem);
}

.site-footer__logo img,
.site-footer__maker-wordmark {
  filter: var(--site-footer-logo-filter);
}

.site-footer__bottom {
  border: 0;
  padding: 0;
}

.footer-disclaimer {
  max-width: 44rem;
}

.site-footer__nav-group h2 {
  margin: 0 0 0.8rem;
  color: var(--site-footer-ink-strong);
  font-family: var(--proto-font-heading);
  font-size: 0.7rem;
  font-weight: var(--proto-font-heading-weight);
  letter-spacing: 0.045em;
}

.footer-link-button {
  min-height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--site-footer-ink-muted);
  font-family: var(--proto-font-body);
  font-size: clamp(0.82rem, 0.78rem + 0.12vw, 0.92rem);
  font-weight: 650;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--site-footer-ink-strong);
}

.site-footer__theme-icon {
  position: relative;
  display: inline-flex;
  width: 0.9375rem;
  height: 0.9375rem;
  align-items: center;
  justify-content: center;
}

.site-footer__theme-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.15;
}

/* Web Proto's app-owned consent component, unchanged from its source styles. */
.cookie-consent {
  --cookie-panel-bg: var(--proto-surface-bright);
  --cookie-panel-ink: var(--proto-foreground);
  --cookie-panel-muted: color-mix(in oklch, var(--proto-foreground), transparent 34%);
  --cookie-panel-border: color-mix(in oklch, var(--proto-border), transparent 12%);
  --cookie-panel-strong: color-mix(in oklch, var(--proto-foreground), transparent 4%);
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.5rem);
  bottom: clamp(1rem, 2.2vw, 1.5rem);
  z-index: 80;
  width: min(24rem, calc(100vw - 2rem));
  border: 1px solid var(--cookie-panel-border);
  border-radius: 0.75rem;
  background: var(--cookie-panel-bg);
  color: var(--cookie-panel-ink);
  box-shadow:
    0 1.5rem 3.5rem color-mix(in oklch, black, transparent 82%),
    0 0.25rem 1rem color-mix(in oklch, black, transparent 90%);
  overflow: hidden;
}

html.dark .cookie-consent {
  --cookie-panel-muted: color-mix(in oklch, var(--proto-foreground), transparent 28%);
  box-shadow:
    0 1.5rem 3.5rem color-mix(in oklch, black, transparent 58%),
    0 0.25rem 1rem color-mix(in oklch, black, transparent 68%);
}

.cookie-consent[hidden],
.cookie-consent [hidden] {
  display: none !important;
}

.cookie-consent__view {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.cookie-consent__view--banner {
  gap: 0.65rem;
  padding: 0.875rem;
}

.cookie-consent__view--preferences {
  max-height: min(40rem, calc(100dvh - 2rem));
  padding: 0;
}

.cookie-consent__heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cookie-consent__heading svg,
.cookie-consent__heading i {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  color: var(--tacet-saas-accent, var(--proto-org-on-light));
}

.cookie-consent__heading h2 {
  margin: 0;
  color: var(--cookie-panel-strong);
  font-family: var(--proto-font-body);
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.16rem);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: 0;
}

.cookie-consent p {
  margin: 0;
  color: var(--cookie-panel-muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.cookie-consent__learn-more {
  justify-self: start;
  color: var(--cookie-panel-strong);
  font-size: 0.84rem;
  font-weight: 620;
  text-decoration: none;
}

.cookie-consent__learn-more:hover,
.cookie-consent__learn-more:focus-visible {
  color: var(--tacet-saas-accent, var(--proto-org-on-light));
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-consent__summary .cookie-consent__learn-more {
  white-space: nowrap;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-consent__actions--preferences {
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid var(--cookie-panel-border);
  background: color-mix(in oklch, var(--cookie-panel-bg), transparent 6%);
}

.cookie-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 0.42rem;
  font-family: var(--proto-font-body);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  transform: translateY(-1px);
}

.cookie-consent__button--secondary {
  border: 1px solid var(--cookie-panel-border);
  background: color-mix(in oklch, var(--proto-background), transparent 56%);
  color: var(--cookie-panel-strong);
}

.cookie-consent__button--secondary:hover,
.cookie-consent__button--secondary:focus-visible {
  border-color: color-mix(in oklch, var(--proto-foreground), transparent 66%);
  background: color-mix(in oklch, var(--proto-background), transparent 28%);
}

.cookie-consent__button--primary {
  border: 1px solid color-mix(in oklch, var(--proto-foreground), transparent 8%);
  background: color-mix(in oklch, var(--proto-foreground), transparent 8%);
  color: var(--proto-background);
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus-visible {
  border-color: var(--tacet-saas-accent, var(--proto-org-on-light));
  background: var(--tacet-saas-accent, var(--proto-org-on-light));
  color: white;
}

.cookie-consent__preferences-head {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-bottom: 1px solid var(--cookie-panel-border);
}

.cookie-consent__options {
  display: grid;
  gap: 0.65rem;
  max-height: min(22rem, calc(100dvh - 18rem));
  padding: 1rem;
  overflow: auto;
}

.cookie-consent__option {
  border: 1px solid var(--cookie-panel-border);
  border-radius: 0.55rem;
  background: color-mix(in oklch, var(--proto-background), transparent 72%);
  overflow: hidden;
}

.cookie-consent__option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.5rem;
  padding: 0.25rem 0.7rem;
}

.cookie-consent__option-toggle {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.45rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cookie-panel-strong);
  font-family: var(--proto-font-body);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.cookie-consent__option-toggle svg,
.cookie-consent__option-toggle i {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  color: var(--cookie-panel-muted);
  transition: transform 140ms ease;
}

.cookie-consent__option-toggle span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cookie-consent__option-toggle[aria-expanded='true'] svg,
.cookie-consent__option-toggle[aria-expanded='true'] i {
  transform: rotate(180deg);
}

.cookie-consent__option-toggle:hover,
.cookie-consent__option-toggle:focus-visible {
  color: var(--tacet-saas-accent, var(--proto-org-on-light));
}

.cookie-consent__switch {
  position: relative;
  width: 2.5rem;
  height: 1.35rem;
  flex: 0 0 auto;
  border: 1px solid color-mix(in oklch, var(--proto-foreground), transparent 66%);
  border-radius: var(--proto-radius-full);
  background: color-mix(in oklch, var(--proto-foreground), transparent 48%);
  cursor: pointer;
}

.cookie-consent__switch[disabled] {
  opacity: 0.64;
  cursor: not-allowed;
}

.cookie-consent__switch span {
  position: absolute;
  top: 50%;
  left: 0.18rem;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: var(--proto-radius-full);
  background: var(--proto-background);
  transform: translateY(-50%);
  transition:
    left 140ms ease,
    background 140ms ease;
}

.cookie-consent__switch[aria-checked='true'] {
  border-color: color-mix(in oklch, var(--proto-foreground), transparent 10%);
  background: color-mix(in oklch, var(--proto-foreground), transparent 10%);
}

.cookie-consent__switch[aria-checked='true'] span {
  left: calc(100% - 1.1rem);
}

.cookie-consent__switch:not([disabled]):hover,
.cookie-consent__switch:not([disabled]):focus-visible {
  border-color: var(--tacet-saas-accent, var(--proto-org-on-light));
}

.cookie-consent__option-description {
  padding: 0 0.8rem 0.75rem 2.1rem;
  font-size: 0.82rem;
}

@media (max-width: 42rem) {
  .cookie-consent {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-height: calc(100dvh - 1.5rem);
  }

  .cookie-consent__view--preferences {
    max-height: calc(100dvh - 1.5rem);
  }

  .cookie-consent__options {
    max-height: calc(100dvh - 20rem);
  }

  .cookie-consent__actions,
  .cookie-consent__actions--preferences {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero h2 {
    font-size: clamp(3.2rem, 14vw, 6rem);
  }

  .process-step {
    min-height: 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: clamp(4.75rem, 18vw, 6.5rem);
  }

  .display-title {
    font-size: clamp(2.45rem, 12vw, 4.3rem);
  }

  .product-introduction {
    padding-top: 7.5rem;
  }

  .hero h2 {
    font-size: clamp(3.15rem, 15.5vw, 5rem);
    line-height: 0.92;
  }

  .proof-item {
    min-height: 7.5rem;
  }

  .solution-card {
    min-height: 0;
  }

  .site-footer.proto-footer {
    padding: 0.75rem;
  }

  .site-footer__inner {
    width: calc(100% - 1rem);
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .process-step::after {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Tacet 2026.08 section vocabulary.
   All foundation values are owned and namespaced by Web Proto. Cinematic chrome is exempt. */

.proto-content-page {
  overflow-x: clip;
  background: var(--proto-background);
}

.button,
.button-small,
.download-button {
  border-radius: var(--proto-radius-lg);
  box-shadow: inset 0 -2px 0 var(--proto-tacet-orange);
}

.button:hover,
.download-button:hover {
  box-shadow: inset 0 -2px 0 var(--proto-tacet-orange);
}

.section {
  position: relative;
  border-top: 0;
  border-bottom: 1px solid var(--proto-border);
  background: var(--proto-background);
}

.section:nth-of-type(even):not(.control) {
  background: var(--proto-background);
}

.tacet-section--shaded,
.wf-section--soft {
  background: var(--proto-surface-dim);
}

.display-title {
  max-width: 17ch;
  font-family: var(--proto-font-heading);
  font-size: clamp(2.35rem, 4.9vw, 4.85rem);
  font-weight: var(--proto-font-heading-weight);
  letter-spacing: -0.015em;
  line-height: 0.96;
}

.section-index {
  color: var(--proto-text-m);
  letter-spacing: 0;
}

.section-index::after {
  height: 1px;
  background: var(--proto-border);
}

.eyebrow,
.kicker {
  color: var(--proto-text-m);
  letter-spacing: 0;
}

.hero h2 {
  max-width: 18ch;
  font-size: clamp(3rem, 5.4vw, 5.55rem);
  letter-spacing: -0.015em;
  line-height: 0.95;
}

.hero-proof,
.window-crop,
.skill-sheet,
.reach-map,
.boundary-diagram,
.download-window,
.download-panel,
.control-card {
  border-radius: var(--proto-radius-lg);
}

.hero-proof {
  overflow: hidden;
  border: 1px solid var(--proto-border);
  border-color: var(--proto-border);
  background: var(--proto-card);
  box-shadow: var(--proto-tacet-shadow-md);
}

.hero-proof .proof-topline {
  min-height: 2.75rem;
  padding: var(--proto-space-3) var(--proto-space-4);
  border-bottom: 1px solid var(--proto-border);
}

.hero-image-wrap,
.window-crop,
.download-window-image {
  overflow: hidden;
}

.proof-strip.tacet-stat-section {
  border-block: 1px solid var(--proto-border);
  background: var(--proto-surface-dim);
}

.proof-grid.tacet-stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--proto-tacet-visible-rail);
  gap: 1px;
  margin-inline: auto;
  border-inline: 1px solid var(--proto-border);
  background: var(--proto-border);
}

.proof-grid .proof-item {
  display: grid;
  min-width: 0;
  min-height: 9rem;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  align-items: start;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 0;
  background: var(--proto-surface-dim);
}

.proof-grid .proof-item span {
  color: var(--proto-foreground);
  font-family: var(--proto-font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--proto-font-heading-weight);
  letter-spacing: 0;
  line-height: 0.95;
}

.proof-grid .proof-item p {
  color: var(--proto-text-m);
  font-family: var(--proto-font-body);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
}

.intro {
  background: var(--proto-background);
}

.intro .display-title {
  max-width: 15ch;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.process-list.tacet-timeline {
  overflow: hidden;
  border: 1px solid var(--proto-border);
  border-radius: var(--proto-radius-lg);
  background: var(--proto-surface-container);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.process-step.tacet-timeline__step {
  min-height: 14rem;
  padding: clamp(1.25rem, 2.3vw, 2rem);
  border-color: var(--proto-border);
  background: var(--proto-background);
}

.process-step::after {
  height: 2px;
}

.process-step.is-current {
  background: color-mix(in oklch, var(--proto-surface-container), var(--proto-tacet-orange) 5%);
}

.product-story.proto-signature-artifact {
  min-height: 100svh;
  display: grid;
  align-items: center;
  border-bottom: 0;
  background: color-mix(in oklch, var(--proto-darker), var(--proto-tacet-orange) 2%);
}

.product-story .story-grid {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.product-story .display-title {
  max-width: 16ch;
  font-size: clamp(2.5rem, 4.7vw, 4.6rem);
}

.story-ledger.proto-packet-card {
  overflow: hidden;
  border: 1px solid var(--proto-border);
  border-radius: var(--proto-radius-lg);
  background: color-mix(in oklch, var(--proto-surface-container), transparent 18%);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.story-quote {
  border-block: 1px solid var(--proto-border);
  border-inline-start: 0;
  background: transparent;
  padding-inline: 0;
}

.window-crop {
  border: 1px solid var(--proto-border);
  box-shadow: var(--proto-tacet-shadow-md);
}

.control-card {
  overflow: hidden;
  border-color: var(--proto-border);
  background: var(--proto-background);
  box-shadow: var(--proto-tacet-shadow-xs);
}

.control-card-accent {
  border-color: color-mix(in oklch, var(--proto-tacet-orange-on-light), transparent 68%);
  background: color-mix(in oklch, var(--proto-surface-container), var(--proto-tacet-orange) 5%);
}

.control-card header,
.control-card footer {
  border-color: var(--proto-border);
  color: var(--proto-text-m);
}

.control-card header i,
.control-card footer span {
  color: var(--proto-text-m);
}

.control-card footer strong {
  color: var(--proto-foreground);
}

.control-card-accent header span,
.control .section-index span {
  color: var(--proto-tacet-orange-on-light);
}

.control .section-index,
.control .kicker,
.control .section-summary,
.control-note {
  color: var(--proto-text-m);
}

.jobs-list.tacet-ledger {
  border: 0;
  border-top: 1px solid var(--proto-border);
}

.job-row.tacet-ledger__row {
  grid-template-columns: clamp(3.5rem, 5vw, 5rem) minmax(10rem, 0.8fr) minmax(20rem, 2fr);
  border-color: var(--proto-border);
}

.job-icon,
.solution-icon {
  display: block;
  flex: none;
  width: clamp(2.75rem, 3.5vw, 3.5rem);
  height: clamp(2.75rem, 3.5vw, 3.5rem);
  color: var(--proto-foreground);
}

.reach-map {
  overflow: hidden;
  border-color: var(--proto-border);
  border-radius: var(--proto-radius-xl);
  background-color: var(--proto-background);
  background-image:
    linear-gradient(var(--proto-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--proto-border) 1px, transparent 1px);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.reach-core {
  border-radius: var(--proto-radius-lg);
  border-color: var(--proto-foreground);
  background: var(--proto-foreground);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.reach-map li {
  border-radius: var(--proto-radius-md);
  border-color: var(--proto-border);
}

.skills-band.proto-signature-artifact {
  border-block: 1px solid var(--proto-border);
  background: color-mix(in oklch, var(--proto-darker), var(--proto-tacet-orange) 2%);
  color: var(--proto-foreground);
}

.skill-sheet {
  overflow: hidden;
  border-color: var(--proto-border);
  background: var(--proto-background);
  box-shadow: var(--proto-tacet-shadow-md);
}

.skill-sheet-head,
.skill-sheet-foot {
  border-color: var(--proto-border);
}

.skills-band .section-summary,
.skills-band .kicker,
.skills-band .section-index {
  color: var(--proto-text-m);
}

.skill-sheet-head span,
.skill-sheet-foot span:first-child,
.skills-band .section-index span {
  color: var(--proto-tacet-orange-on-light);
}

.solution-grid.tacet-rail {
  overflow: hidden;
  border: 1px solid var(--proto-border);
  border-radius: var(--proto-radius-lg);
  background: var(--proto-border);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.solution-card.tacet-rail__item {
  min-height: 25rem;
  border: 0;
  background: var(--proto-background);
}

.solution-card.tacet-rail__item + .solution-card.tacet-rail__item {
  border-left: 1px solid var(--proto-border);
}

.local-first {
  background: var(--proto-surface-dim);
}

.proto-content-page .local-first.tacet-section--shaded,
.proto-content-page .download.wf-section--soft {
  background: var(--proto-surface-dim);
}

.boundary-diagram.proto-diagram-shell {
  overflow: hidden;
  border-color: var(--proto-border);
  border-radius: var(--proto-radius-lg);
  background: var(--proto-surface-container);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.boundary-local,
.boundary-external,
.boundary-local li,
.boundary-external > div {
  border-color: var(--proto-border);
  border-radius: var(--proto-radius-md);
}

.boundary-proto {
  border-radius: var(--proto-radius-lg);
  box-shadow: inset 0 -2px 0 var(--proto-tacet-orange);
}

.faq-list {
  border-top-color: var(--proto-border);
}

.faq-list details {
  border-color: var(--proto-border);
}

.faq-list summary {
  padding: var(--proto-space-6);
}

.faq-list details p {
  margin: 0;
  padding: 0 var(--proto-space-6) var(--proto-space-6);
}

.faq-list details[open] {
  background: color-mix(in oklch, var(--proto-surface-container), var(--proto-tacet-orange) 3%);
}

.download {
  background: var(--proto-surface-dim);
}

.download-window,
.download-panel {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.download-window {
  box-shadow: none;
}

.download-window-image {
  background: transparent;
}

.download-window-image img {
  outline: 0;
}

.download-button {
  border-color: var(--proto-border);
  background: var(--proto-paper-raised);
  color: var(--proto-foreground);
  box-shadow: var(--proto-tacet-shadow-xs);
}

.download-button:hover {
  border-color: var(--proto-border);
  background: var(--proto-paper-raised);
  color: var(--proto-foreground);
  box-shadow: var(--proto-tacet-shadow-xs);
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .download-button:hover {
    border-color: var(--proto-brand);
    background: var(--proto-paper-raised);
    box-shadow: var(--proto-tacet-shadow-md);
    transform: translateY(calc(var(--proto-space-2) / -2));
  }

  .download-button:hover .download-button__action i {
    background: var(--proto-brand);
    color: var(--proto-background);
    transform: translateY(calc(var(--proto-space-2) / 2));
  }
}

@media (max-width: 900px) {
  .tacet-page-hero {
    padding-top: 9rem;
  }

  .proof-grid.tacet-stat-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-card.tacet-rail__item + .solution-card.tacet-rail__item {
    border-top: 1px solid var(--proto-border);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .tacet-page-hero {
    padding-top: 8rem;
  }

  .display-title {
    font-size: clamp(2.35rem, 11.5vw, 3.75rem);
  }

  .hero h2 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  .proof-grid .proof-item {
    min-height: 7rem;
  }

  .faq-list summary {
    padding: var(--proto-space-4);
  }

  .faq-list details p {
    padding: 0 var(--proto-space-4) var(--proto-space-4);
  }

  .product-story.proto-signature-artifact {
    min-height: auto;
  }
}

@media (max-width: 22rem) {
  .proof-grid.tacet-stat-band {
    grid-template-columns: 1fr;
  }
}

/* Web Proto's native sticky-layer story, expressed through Tacet surfaces. */
.proto-scroll-stack {
  position: relative;
  width: 100%;
  background: var(--proto-background);
}

.proto-scroll-stack > .proto-scroll-panel {
  --neo-layer-y: 0px;
  --neo-layer-inner-y: 0px;
  --proto-scroll-panel-sticky-top: 0px;
  --proto-story-bloom-green: oklch(73% 0.196 148);
  --proto-story-bloom-a: color-mix(in oklch, var(--proto-org), transparent 72%);
  --proto-story-bloom-b: color-mix(in oklch, var(--proto-pur), transparent 87%);
  --proto-story-bloom-c: color-mix(in oklch, var(--proto-story-bloom-green), transparent 90%);
  --proto-story-bloom-line-a: color-mix(in oklch, var(--proto-org), transparent 92%);
  --proto-story-bloom-line-b: color-mix(in oklch, var(--proto-pur), transparent 95%);
  --proto-story-bloom-a-at: 78% 22%;
  --proto-story-bloom-b-at: 52% 56%;
  --proto-story-bloom-c-at: 92% 66%;
  --proto-story-bloom-angle: 104deg;

  position: sticky;
  top: var(--proto-scroll-panel-sticky-top);
  display: flex;
  width: 100%;
  min-height: 100svh;
  border-top: 1px solid var(--proto-border);
  color: var(--proto-foreground);
  isolation: isolate;
}

.proto-scroll-stack > .proto-scroll-panel:first-child {
  border-top: 0;
}

.proto-scroll-stack > .proto-scroll-panel::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse at var(--proto-story-bloom-a-at),
      var(--proto-story-bloom-a),
      transparent 34%
    ),
    radial-gradient(
      ellipse at var(--proto-story-bloom-b-at),
      var(--proto-story-bloom-b),
      transparent 36%
    ),
    radial-gradient(
      ellipse at var(--proto-story-bloom-c-at),
      var(--proto-story-bloom-c),
      transparent 34%
    ),
    linear-gradient(
      var(--proto-story-bloom-angle),
      transparent,
      var(--proto-story-bloom-line-a) 40%,
      var(--proto-story-bloom-line-b) 58%,
      transparent 80%
    );
  background-position:
    72% 16%,
    46% 54%,
    98% 62%,
    50% 38%;
  background-size:
    135% 125%,
    130% 120%,
    140% 130%,
    115% 115%;
  content: '';
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.proto-scroll-panel--apps,
.proto-scroll-panel--tools {
  background: var(--proto-surface-dim);
}

.proto-scroll-stack > .proto-scroll-panel--cases {
  --proto-story-bloom-a: color-mix(in oklch, var(--proto-pur), transparent 78%);
  --proto-story-bloom-b: color-mix(in oklch, var(--proto-org), transparent 86%);
  --proto-story-bloom-c: color-mix(in oklch, var(--proto-story-bloom-green), transparent 91%);
  --proto-story-bloom-line-a: color-mix(in oklch, var(--proto-pur), transparent 93%);
  --proto-story-bloom-line-b: color-mix(in oklch, var(--proto-org), transparent 95%);
  --proto-case-header-surface: color-mix(in oklch, var(--proto-surface-container), transparent 62%);
  --proto-case-header-blend: multiply;
  --proto-story-bloom-a-at: 74% 18%;
  --proto-story-bloom-b-at: 44% 58%;
  --proto-story-bloom-c-at: 94% 72%;
  --proto-story-bloom-angle: 98deg;

  background: var(--proto-background);
}

.proto-scroll-stack > .proto-scroll-panel--tools {
  --proto-story-bloom-a: color-mix(in oklch, var(--proto-org), transparent 76%);
  --proto-story-bloom-b: color-mix(in oklch, var(--proto-story-bloom-green), transparent 86%);
  --proto-story-bloom-c: color-mix(in oklch, var(--proto-pur), transparent 90%);
  --proto-story-bloom-line-a: color-mix(in oklch, var(--proto-org), transparent 94%);
  --proto-story-bloom-line-b: color-mix(in oklch, var(--proto-story-bloom-green), transparent 94%);
  --proto-story-bloom-a-at: 80% 18%;
  --proto-story-bloom-b-at: 62% 60%;
  --proto-story-bloom-c-at: 94% 72%;
  --proto-story-bloom-angle: 116deg;
}

html.dark .proto-scroll-stack > .proto-scroll-panel::before {
  opacity: 0.76;
  mix-blend-mode: screen;
}

html.dark .proto-scroll-stack > .proto-scroll-panel--cases {
  --proto-case-header-surface: color-mix(in oklch, var(--proto-surface-container), transparent 54%);
  --proto-case-header-blend: screen;
}

.proto-scroll-stack[data-layer-motion='on'] > .proto-scroll-panel {
  transform: translate3d(0, var(--neo-layer-y), 0);
}

.proto-scroll-panel > .proto-scroll-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2.5rem, 6vh, 5rem);
  padding-block: clamp(6rem, 11vh, 8.5rem) clamp(2.5rem, 6vh, 5rem);
}

.proto-scroll-stack[data-layer-motion='on'] > .proto-scroll-panel > .proto-scroll-panel__inner {
  transform: translate3d(0, var(--neo-layer-inner-y), 0);
}

.proto-scroll-panel__heading {
  max-width: 72rem;
}

.proto-scroll-panel__heading .display-title {
  max-width: 16ch;
}

.proto-scroll-panel__heading .section-summary {
  max-width: 43rem;
  margin-top: var(--proto-space-6);
  color: var(--proto-text-m);
}

.proto-app-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--proto-space-4);
}

.proto-app-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--proto-border);
  border-radius: var(--proto-radius-lg);
  background: var(--proto-background);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.proto-app-card__bar {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: var(--proto-space-2);
  padding: var(--proto-space-3) var(--proto-space-4);
  border-bottom: 1px solid var(--proto-border);
  color: var(--proto-text-m);
  font-size: 0.6875rem;
}

.proto-app-card__bar span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proto-app-card__body {
  padding: var(--proto-space-4);
}

.proto-app-card__meta,
.proto-app-card__proof {
  color: var(--proto-text-m);
  font-size: 0.6875rem;
  line-height: 1.45;
}

.proto-app-card h3 {
  min-height: 3em;
  margin-top: var(--proto-space-3);
  font-family: var(--proto-font-heading);
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.proto-app-card__summary {
  min-height: 4em;
  margin-top: var(--proto-space-2);
  color: var(--proto-text-m);
  font-size: 0.75rem;
  line-height: 1.5;
}

.proto-app-card__fields {
  margin-top: var(--proto-space-4);
  border-top: 1px solid var(--proto-border);
}

.proto-app-card__fields > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--proto-space-2);
  padding-block: var(--proto-space-2);
  border-bottom: 1px solid var(--proto-border);
  font-size: 0.75rem;
}

.proto-app-card__fields dt {
  color: var(--proto-text-m);
}

.proto-app-card__fields dd {
  font-weight: 650;
}

.proto-app-card__proof {
  min-height: 2.9em;
  margin-top: var(--proto-space-3);
}

.proto-scroll-panel--cases > .proto-scroll-panel__inner {
  gap: clamp(1.5rem, 4vh, 3rem);
  padding-block: clamp(5.5rem, 9vh, 7rem) clamp(2rem, 5vh, 4rem);
}

.proto-scroll-panel--cases .display-title {
  max-width: 20ch;
}

.proto-case-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.proto-case-table thead {
  background: var(--proto-case-header-surface);
  mix-blend-mode: var(--proto-case-header-blend);
}

.proto-case-table th,
.proto-case-table td {
  padding: var(--proto-space-3) var(--proto-space-4);
  border-bottom: 1px solid var(--proto-border);
  text-align: left;
  vertical-align: top;
}

.proto-case-table thead th {
  color: var(--proto-text-m);
  font-size: 0.75rem;
  font-weight: 550;
}

.proto-case-table thead th:first-child {
  width: 18%;
}

.proto-case-table thead th:nth-child(2) {
  width: 36%;
}

.proto-case-table thead th:nth-child(3) {
  width: 31%;
}

.proto-case-table tbody th {
  font-family: var(--proto-font-heading);
  font-size: 0.875rem;
  font-weight: var(--proto-font-heading-weight);
  line-height: 1.45;
}

.proto-case-table tbody td {
  color: var(--proto-text-m);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.proto-case-table tbody td:last-child {
  color: var(--proto-foreground);
  font-weight: 600;
}

.proto-bulletin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--proto-border);
  border-radius: var(--proto-radius-lg);
  box-shadow: var(--proto-tacet-shadow-sm);
}

.proto-bulletin {
  display: flex;
  min-width: 0;
  min-height: 23rem;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--proto-background);
}

.proto-bulletin + .proto-bulletin {
  border-left: 1px solid var(--proto-border);
}

.proto-bulletin__icon {
  display: block;
  width: clamp(2.75rem, 3.5vw, 3.5rem);
  height: clamp(2.75rem, 3.5vw, 3.5rem);
  flex: none;
  color: var(--proto-foreground);
}

.proto-bulletin__type {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--proto-text-m);
  font-size: 0.8125rem;
}

.proto-bulletin h3 {
  margin-top: var(--proto-space-3);
  font-family: var(--proto-font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.proto-bulletin__description {
  margin-top: var(--proto-space-4);
  color: var(--proto-text-m);
  font-size: 0.875rem;
  line-height: 1.6;
}

.proto-bulletin a {
  display: inline-flex;
  align-items: center;
  gap: var(--proto-space-2);
  margin-top: auto;
  padding-top: var(--proto-space-6);
  color: var(--proto-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration-color: var(--proto-border-strong);
  text-underline-offset: 0.25em;
}

.proto-bulletin a:focus-visible {
  outline: 2px solid var(--proto-ring);
  outline-offset: 4px;
}

@media (max-width: 1099px) and (min-width: 761px) {
  .proto-scroll-panel > .proto-scroll-panel__inner {
    gap: clamp(1.25rem, 3vh, 2rem);
    padding-block: clamp(5.25rem, 10vh, 6rem) clamp(1.25rem, 3vh, 2rem);
  }

  .proto-app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--proto-space-3);
  }

  .proto-app-card__bar {
    padding: var(--proto-space-2) var(--proto-space-3);
  }

  .proto-app-card__body {
    padding: var(--proto-space-2);
  }

  .proto-app-card__meta,
  .proto-app-card__proof {
    font-size: 0.625rem;
  }

  .proto-app-card h3 {
    min-height: 2.4em;
    margin-top: var(--proto-space-2);
    font-size: 1rem;
  }

  .proto-app-card__summary {
    min-height: 3em;
    margin-top: 0.375rem;
    font-size: 0.6875rem;
  }

  .proto-app-card__fields {
    margin-top: var(--proto-space-2);
  }

  .proto-app-card__fields > div {
    padding-block: calc(var(--proto-space-2) / 2);
    font-size: 0.6875rem;
  }

  .proto-app-card__proof {
    margin-top: var(--proto-space-2);
  }

  .proto-bulletin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proto-bulletin:nth-child(3) {
    border-left: 0;
  }

  .proto-bulletin:nth-child(n + 3) {
    border-top: 1px solid var(--proto-border);
  }

  .proto-bulletin {
    min-height: 16rem;
    padding: var(--proto-space-4);
  }

  .proto-bulletin__type {
    margin-top: var(--proto-space-4);
  }
}

@media (min-width: 1100px) and (max-height: 820px) {
  .proto-scroll-panel > .proto-scroll-panel__inner {
    gap: var(--proto-space-6);
    padding-block: clamp(5rem, 10vh, 6.5rem) clamp(1.5rem, 4vh, 3rem);
  }

  .proto-bulletin {
    min-height: 19rem;
  }

  .proto-bulletin__type {
    margin-top: var(--proto-space-6);
  }

  .proto-app-card__body {
    padding: var(--proto-space-3);
  }

  .proto-app-card__fields {
    margin-top: var(--proto-space-3);
  }

  .proto-case-table th,
  .proto-case-table td {
    padding-block: var(--proto-space-2);
  }
}

@media (max-width: 760px) {
  .proto-scroll-stack > .proto-scroll-panel {
    position: relative;
    min-height: auto;
  }

  .proto-scroll-panel > .proto-scroll-panel__inner {
    min-height: auto;
    gap: clamp(2rem, 8vw, 4rem);
    padding-block: clamp(6.5rem, 18vw, 7.5rem) clamp(4rem, 12vw, 6rem);
  }

  .proto-scroll-panel--cases > .proto-scroll-panel__inner {
    gap: clamp(2rem, 8vw, 4rem);
    padding-block: clamp(6.5rem, 18vw, 7.5rem) clamp(4rem, 12vw, 6rem);
  }

  .proto-scroll-panel .proto-section-eyebrow__copy {
    display: flex;
  }

  .proto-app-grid,
  .proto-bulletin-grid {
    grid-template-columns: 1fr;
  }

  .proto-app-card h3,
  .proto-app-card__summary,
  .proto-app-card__proof {
    min-height: 0;
  }

  .proto-app-card__body {
    padding: var(--proto-space-6);
  }

  .proto-app-card h3 {
    font-size: 1.35rem;
  }

  .proto-case-table,
  .proto-case-table tbody,
  .proto-case-table tr,
  .proto-case-table th,
  .proto-case-table td {
    display: block;
    width: 100%;
  }

  .proto-case-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .proto-case-table tbody {
    display: grid;
    gap: var(--proto-space-4);
  }

  .proto-case-table tr {
    overflow: hidden;
    border: 1px solid var(--proto-border);
    border-radius: var(--proto-radius-lg);
    background: var(--proto-background);
  }

  .proto-case-table tbody th {
    padding: var(--proto-space-4) var(--proto-space-6);
    background: var(--proto-surface-container);
    font-size: 1rem;
  }

  .proto-case-table tbody td {
    padding: var(--proto-space-3) var(--proto-space-6);
  }

  .proto-case-table tbody td:last-child {
    border-bottom: 0;
  }

  .proto-case-table tbody td::before {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--proto-foreground);
    font-size: 0.6875rem;
    font-weight: 650;
    content: attr(data-label);
  }

  .proto-bulletin {
    min-height: 16rem;
    padding: var(--proto-space-6);
  }

  .proto-bulletin + .proto-bulletin {
    border-top: 1px solid var(--proto-border);
    border-left: 0;
  }

  .proto-bulletin__icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .proto-scroll-stack[data-layer-motion='on'] > .proto-scroll-panel,
  .proto-scroll-stack[data-layer-motion='on'] > .proto-scroll-panel > .proto-scroll-panel__inner {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proto-scroll-stack[data-layer-motion='on'] > .proto-scroll-panel,
  .proto-scroll-stack[data-layer-motion='on'] > .proto-scroll-panel > .proto-scroll-panel__inner {
    transform: none;
  }
}

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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
  }

  body {
    margin: 0;
    background: var(--proto-paper);
    color: var(--proto-ink);
    font-family: var(--proto-font-sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body.menu-open {
    overflow: hidden;
  }

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

  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }

  a {
    color: inherit;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

  h1,
  h2,
  h3,
  p,
  blockquote,
  dl,
  dd,
  figure {
    margin: 0;
  }

  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  ::selection {
    background: var(--proto-brand);
    color: white;
  }

  :focus-visible {
    outline: 2px solid var(--proto-brand);
    outline-offset: 4px;
  }

  .shell {
    width: min(100%, var(--proto-shell));
    margin-inline: auto;
    padding-inline: var(--proto-gutter);
  }

  .section {
    padding-block: var(--proto-section-space);
  }

  .skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: 16px;
    padding: 10px 14px;
    background: var(--proto-ink);
    color: white;
    border-radius: var(--proto-radius-sm);
    transform: translateY(-180%);
    transition: transform 180ms ease;
  }

  .skip-link:focus {
    transform: translateY(0);
  }

  .page-progress {
    position: fixed;
    z-index: 120;
    inset: 0 0 auto;
    height: 3px;
    pointer-events: none;
  }

  .page-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--proto-brand);
    transform-origin: left center;
  }

  .button,
  .download-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--proto-ink);
    border-radius: 12px;
    background: var(--proto-ink);
    color: white;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      background-color 180ms ease;
  }

  .button:hover,
  .download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(29, 28, 26, 0.17);
  }

  .button-small {
    min-height: 40px;
    padding-inline: 15px;
    border-radius: 10px;
  }

  .text-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding-block: 10px;
    border-bottom: 1px solid var(--proto-line-strong);
    color: var(--proto-ink);
    font-size: 14px;
    font-weight: 620;
    text-decoration: none;
    transition: border-color 160ms ease;
  }

  .text-link:hover {
    border-bottom-color: var(--proto-ink);
  }

  .eyebrow,
  .kicker,
  .section-index,
  .proof-topline,
  .fine-print {
    font-family: var(--proto-font-mono);
  }

  .eyebrow,
  .kicker {
    color: var(--proto-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 9fr) minmax(250px, 3fr);
    gap: 72px;
    padding-top: clamp(70px, 8vw, 122px);
    padding-bottom: clamp(78px, 9vw, 132px);
  }

  .hero-copy {
    max-width: 1040px;
  }

  .hero h1 {
    max-width: 1000px;
    margin-top: 24px;
    font-size: clamp(3.65rem, 7vw, 7.3rem);
    font-weight: var(--proto-font-heading-weight);
    letter-spacing: -0.068em;
    line-height: 0.91;
  }

  .hero h1 span {
    display: block;
    color: var(--proto-brand);
  }

  .hero-summary {
    max-width: 760px;
    margin-top: 38px;
    color: var(--proto-ink-soft);
    font-size: clamp(1.07rem, 1.4vw, 1.28rem);
    line-height: 1.58;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
  }

  .hero-aside {
    align-self: end;
    border-top: 1px solid var(--proto-line-strong);
  }

  .hero-aside-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-block: 14px;
    border-bottom: 1px solid var(--proto-line);
    color: var(--proto-muted);
    font-family: var(--proto-font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .signal {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--proto-brand);
    box-shadow: 0 0 0 5px var(--proto-brand-soft);
  }

  .hero-aside dl > div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
    padding-block: 12px;
    border-bottom: 1px solid var(--proto-line);
    font-size: 13px;
  }

  .hero-aside dt {
    color: var(--proto-muted);
  }

  .hero-aside dd {
    font-weight: 630;
    text-align: right;
  }

  .hero-aside > p {
    padding-top: 12px;
    color: var(--proto-faint);
    font-family: var(--proto-font-mono);
    font-size: 10px;
    text-align: right;
    text-transform: uppercase;
  }

  .hero-proof {
    grid-column: 1 / -1;
    margin-top: 28px;
  }

  .proof-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 14px;
    color: var(--proto-muted);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .proof-caption {
    display: flex;
    gap: 16px;
  }

  .proof-caption > span {
    color: var(--proto-ink);
    font-weight: 700;
  }

  .proof-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .proof-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--proto-success);
  }

  .hero-image-wrap {
    overflow: hidden;
    border: 1px solid var(--proto-line);
    border-radius: 28px;
    background: #eee9e5;
    box-shadow: var(--proto-shadow);
  }

  .hero-image-wrap img {
    width: 100%;
    height: auto;
  }

  .product-proof {
    min-width: 0;
    grid-column: 1 / -1;
    margin: 28px 0 0;
  }

  .hero-product-stage {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: clamp(34rem, 55vw, 48rem);
    place-items: center;
    overflow: visible;
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
    background: transparent;
  }

  .hero-product-window {
    position: relative;
    z-index: 1;
    width: min(77%, 67.5rem);
    overflow: hidden;
    border-radius: var(--proto-radius-xl);
    background: var(--proto-paper-raised);
    box-shadow:
      0 var(--proto-space-2) var(--proto-space-6)
        color-mix(in oklch, var(--proto-ink-deep), transparent 91%),
      0 calc(var(--proto-space-6) * 2) calc(var(--proto-space-6) * 4)
        calc(var(--proto-space-4) * -1) color-mix(in oklch, var(--proto-ink-deep), transparent 78%);
  }

  .hero-product-window img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-satellite-rail {
    position: absolute;
    z-index: 2;
    display: grid;
    width: clamp(12rem, 20vw, 17rem);
    grid-template-rows: repeat(5, minmax(0, 1fr));
    gap: var(--proto-space-3);
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
  }

  .hero-satellite-rail--left {
    top: 13%;
    bottom: 3%;
    left: 1.5%;
  }

  .hero-satellite-rail--right {
    top: 3%;
    right: 1.5%;
    bottom: 15%;
  }

  .hero-satellite {
    --satellite-y-start: -0.375rem;
    --satellite-y-end: 0.375rem;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: var(--proto-space-3);
    align-self: center;
    align-items: center;
    width: 100%;
    min-height: 4.25rem;
    padding: var(--proto-space-3);
    border-radius: var(--proto-radius-lg);
    background: color-mix(in oklch, var(--proto-paper-raised), transparent 4%);
    box-shadow:
      0 var(--proto-space-2) var(--proto-space-4)
        color-mix(in oklch, var(--proto-ink-deep), transparent 91%),
      0 var(--proto-space-4) calc(var(--proto-space-6) * 2) calc(var(--proto-space-3) * -1)
        color-mix(in oklch, var(--proto-ink-deep), transparent 82%);
    color: var(--proto-ink);
    animation: proto-satellite-hover calc(var(--proto-duration-cinema) * 2.8) ease-in-out infinite;
    will-change: transform;
  }

  .hero-satellite:nth-child(2) {
    margin-left: 8%;
    animation-delay: calc(var(--proto-duration-cinema) * -0.7);
    animation-duration: calc(var(--proto-duration-cinema) * 3.1);
  }

  .hero-satellite:nth-child(3) {
    width: 92%;
    animation-delay: calc(var(--proto-duration-cinema) * -1.4);
    animation-duration: calc(var(--proto-duration-cinema) * 2.6);
  }

  .hero-satellite:nth-child(4) {
    margin-left: 5%;
    animation-delay: calc(var(--proto-duration-cinema) * -2.1);
    animation-duration: calc(var(--proto-duration-cinema) * 3.3);
  }

  .hero-satellite:nth-child(5) {
    width: 88%;
    animation-delay: calc(var(--proto-duration-cinema) * -2.8);
    animation-duration: calc(var(--proto-duration-cinema) * 2.9);
  }

  .hero-satellite-rail--right .hero-satellite:nth-child(2),
  .hero-satellite-rail--right .hero-satellite:nth-child(4) {
    margin-right: 8%;
    margin-left: 0;
  }

  .hero-satellite-rail--right .hero-satellite:nth-child(3),
  .hero-satellite-rail--right .hero-satellite:nth-child(5) {
    justify-self: end;
  }

  .hero-satellite__glyph {
    display: grid;
    width: 1.75rem;
    height: 1.75rem;
    place-items: center;
    border: 1px solid color-mix(in oklch, var(--proto-brand), transparent 68%);
    border-radius: var(--proto-radius-md);
    background: var(--proto-brand-soft);
    color: var(--proto-brand);
    font-family: var(--proto-font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .hero-satellite__copy {
    display: grid;
    min-width: 0;
    gap: 0.15rem;
  }

  .hero-satellite__copy strong,
  .hero-satellite__copy span,
  .hero-satellite__meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-satellite__copy strong {
    font-size: 0.75rem;
    font-weight: 680;
    line-height: 1.2;
  }

  .hero-satellite__copy span,
  .hero-satellite__meta {
    color: var(--proto-muted);
    font-family: var(--proto-font-mono);
    font-size: 0.55rem;
    line-height: 1.35;
  }

  .hero-satellite__meta {
    align-self: start;
    padding-top: 0.1rem;
  }

  @keyframes proto-satellite-hover {
    0%,
    100% {
      transform: translate3d(0, var(--satellite-y-start), 0);
    }

    50% {
      transform: translate3d(0, var(--satellite-y-end), 0);
    }
  }

  @media (max-width: 63.99rem) {
    .product-proof {
      margin-top: var(--proto-space-2);
    }

    .hero-product-stage {
      min-height: clamp(28rem, 68vw, 38rem);
    }

    .hero-product-window {
      width: 82%;
    }

    .hero-satellite-rail {
      width: clamp(9rem, 22vw, 12rem);
      grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .hero-satellite-rail--left {
      top: 18%;
      bottom: 1%;
    }

    .hero-satellite-rail--right {
      top: 1%;
      bottom: 18%;
    }

    .hero-satellite:nth-child(5) {
      display: none;
    }

    .hero-satellite__meta {
      display: none;
    }
  }

  @media (max-width: 39.99rem) {
    .hero-product-stage {
      min-height: 0;
      padding: var(--proto-space-3);
    }

    .hero-product-window {
      width: 100%;
    }

    .hero-satellite-rail {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-satellite {
      animation: none;
      transform: none;
    }
  }

  .proof-strip {
    border-block: 1px solid var(--proto-line-strong);
  }

  .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-item {
    min-height: 112px;
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border-left: 1px solid var(--proto-line);
  }

  .proof-item:last-child {
    border-right: 1px solid var(--proto-line);
  }

  .proof-item span {
    color: var(--proto-brand);
    font-family: var(--proto-font-mono);
    font-size: 11px;
  }

  .proof-item p {
    max-width: 190px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
  }

  .section-index {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--proto-muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .section-index::after {
    content: '';
    width: 58px;
    height: 1px;
    background: var(--proto-line-strong);
  }

  .section-index span {
    color: var(--proto-brand);
    font-weight: 700;
  }

  .display-title {
    font-size: clamp(2.7rem, 5.3vw, 6rem);
    font-weight: var(--proto-font-heading-weight);
    letter-spacing: -0.06em;
    line-height: 0.98;
  }

  .section-summary {
    max-width: 670px;
    color: var(--proto-muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.65;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 56px;
    align-items: start;
    margin-bottom: clamp(64px, 8vw, 112px);
  }

  .section-head .kicker + .display-title {
    max-width: 980px;
    margin-top: 22px;
  }

  .intro {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 56px;
  }

  .intro-copy .display-title {
    max-width: 1050px;
  }

  .intro-columns {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 64px;
    color: var(--proto-ink-soft);
    font-size: 18px;
    line-height: 1.7;
  }

  .process {
    background: var(--proto-paper-raised);
    border-block: 1px solid var(--proto-line);
  }

  .process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .process-list::before {
    content: '';
    position: absolute;
    top: 53px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--proto-line-strong);
  }

  .process-step {
    position: relative;
    min-height: 280px;
    padding: 0 28px 0 0;
  }

  .process-step + .process-step {
    padding-left: 28px;
    border-left: 1px solid var(--proto-line);
  }

  .process-step h3 {
    font-size: 21px;
    letter-spacing: -0.025em;
  }

  .process-step p {
    max-width: 260px;
    margin-top: 14px;
    color: var(--proto-muted);
    font-size: 14px;
    line-height: 1.65;
  }

  .product-story {
    overflow: hidden;
  }

  .story-grid {
    display: grid;
    grid-template-columns: minmax(340px, 5fr) minmax(0, 7fr);
    gap: clamp(60px, 8vw, 128px);
    align-items: center;
  }

  .story-copy .kicker,
  .reach-copy .kicker,
  .skills-copy .kicker,
  .local-copy .kicker {
    margin-top: 54px;
  }

  .story-copy .display-title,
  .reach-copy .display-title,
  .skills-copy .display-title,
  .local-copy .display-title {
    margin-top: 22px;
  }

  .story-copy .section-summary,
  .reach-copy .section-summary,
  .skills-copy .section-summary,
  .local-copy .section-summary {
    margin-top: 34px;
  }

  .story-quote {
    margin-top: 40px;
    padding: 24px 28px;
    border-left: 3px solid var(--proto-brand);
    background: var(--proto-brand-soft);
    font-size: 18px;
    font-weight: 650;
    letter-spacing: -0.02em;
  }

  .fine-print {
    margin-top: 18px;
    color: var(--proto-faint);
    font-size: 11px;
    line-height: 1.6;
  }

  .story-visual {
    position: relative;
    padding-left: 11%;
  }

  .story-ledger {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: min(330px, 46%);
    transform: translateY(-50%);
    border: 1px solid var(--proto-line-strong);
    border-radius: 18px;
    background: var(--proto-paper-raised);
    box-shadow: 0 22px 50px rgba(29, 28, 26, 0.15);
  }

  .story-ledger > div {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    padding: 18px;
    border-bottom: 1px solid var(--proto-line);
  }

  .story-ledger > div:last-child {
    border-bottom: 0;
  }

  .story-ledger span {
    grid-row: 1 / 3;
    color: var(--proto-brand);
    font-family: var(--proto-font-mono);
    font-size: 10px;
  }

  .story-ledger p {
    color: var(--proto-muted);
    font-size: 11px;
  }

  .story-ledger strong {
    margin-top: 3px;
    font-size: 13px;
  }

  .window-crop {
    overflow: hidden;
    border: 1px solid var(--proto-line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--proto-shadow);
  }

  .window-crop img {
    width: 100%;
    height: auto;
  }

  .control {
    position: relative;
    overflow: hidden;
    background: var(--proto-dark);
    color: #f4f2f0;
  }

  .control::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 92px 92px;
  }

  .control-grid,
  .control-note {
    position: relative;
    z-index: 1;
  }

  .control-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(72px, 10vw, 160px);
    align-items: center;
  }

  .section-index-light,
  .kicker-light,
  .control .section-summary {
    color: var(--proto-dark-muted);
  }

  .section-index-light::after {
    background: var(--proto-dark-line);
  }

  .control-copy .kicker {
    margin-top: 56px;
  }

  .control-copy .display-title {
    margin-top: 22px;
  }

  .control-copy .section-summary {
    margin-top: 36px;
  }

  .control-stack {
    display: grid;
    gap: 16px;
  }

  .control-card {
    overflow: hidden;
    border: 1px solid var(--proto-dark-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
  }

  .control-card header,
  .control-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    font-size: 11px;
  }

  .control-card header {
    border-bottom: 1px solid var(--proto-dark-line);
    font-family: var(--proto-font-mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .control-card header span {
    color: white;
  }

  .control-card header i {
    color: var(--proto-dark-muted);
    font-style: normal;
  }

  .control-card p {
    padding: 26px 22px 34px;
    font-size: 18px;
    line-height: 1.5;
  }

  .control-card footer {
    background: rgba(255, 255, 255, 0.055);
    color: var(--proto-dark-muted);
  }

  .control-card footer strong {
    color: white;
    font-size: 12px;
  }

  .control-card-accent {
    border-color: rgba(120, 71, 235, 0.75);
    box-shadow: 0 0 0 1px rgba(120, 71, 235, 0.18) inset;
  }

  .control-card-accent header span {
    color: #bca4f7;
  }

  .control-note {
    max-width: 1100px;
    margin-top: 72px;
    color: var(--proto-dark-muted);
    font-family: var(--proto-font-mono);
    font-size: 11px;
    line-height: 1.7;
    text-align: center;
  }

  .section-head-wide {
    grid-template-columns: 1fr 2fr;
    align-items: end;
  }

  .jobs-list {
    border-top: 1px solid var(--proto-line-strong);
  }

  .job-row {
    display: grid;
    grid-template-columns: 72px minmax(160px, 0.8fr) minmax(320px, 2fr);
    gap: 24px;
    align-items: center;
    min-height: 150px;
    border-bottom: 1px solid var(--proto-line-strong);
  }

  .job-row h3 {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    letter-spacing: -0.055em;
  }

  .job-row p {
    max-width: 660px;
    color: var(--proto-muted);
    font-size: 16px;
    line-height: 1.65;
  }

  .reach {
    border-top: 1px solid var(--proto-line);
    background: var(--proto-paper-raised);
  }

  .reach-grid {
    display: grid;
    grid-template-columns: minmax(320px, 5fr) minmax(460px, 7fr);
    gap: clamp(64px, 10vw, 150px);
    align-items: center;
  }

  .reach-map {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 52px;
    align-items: center;
  }

  .reach-map::before {
    content: '';
    position: absolute;
    left: 170px;
    top: 50%;
    width: 70px;
    height: 1px;
    background: var(--proto-line-strong);
  }

  .reach-core {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--proto-line-strong);
    border-radius: 50%;
    background: var(--proto-paper);
  }

  .reach-core img {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }

  .reach-core strong {
    font-size: 20px;
  }

  .reach-core span {
    margin-top: 3px;
    color: var(--proto-muted);
    font-size: 11px;
  }

  .reach-map ul {
    border-top: 1px solid var(--proto-line-strong);
  }

  .reach-map li {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--proto-line-strong);
  }

  .reach-map li > span {
    grid-row: 1 / 3;
    color: var(--proto-brand);
    font-family: var(--proto-font-mono);
    font-size: 10px;
  }

  .reach-map li strong {
    font-size: 14px;
  }

  .reach-map li small {
    margin-top: 3px;
    color: var(--proto-muted);
    font-size: 11px;
  }

  .skills-band {
    padding-block: var(--proto-section-space);
    background: var(--proto-brand-soft);
  }

  .skills-grid {
    display: grid;
    grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
    gap: clamp(64px, 10vw, 160px);
    align-items: center;
  }

  .skill-sheet {
    transform: rotate(-1.6deg);
    overflow: hidden;
    border: 1px solid rgba(120, 71, 235, 0.34);
    border-radius: 18px;
    background: var(--proto-paper-raised);
    box-shadow: 0 32px 70px rgba(85, 55, 152, 0.15);
  }

  .skill-sheet-head,
  .skill-sheet-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    font-family: var(--proto-font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .skill-sheet-head {
    border-bottom: 1px solid var(--proto-line);
  }

  .skill-sheet-head span {
    color: var(--proto-brand);
    font-weight: 800;
  }

  .skill-sheet-head i {
    color: var(--proto-muted);
    font-style: normal;
  }

  .skill-sheet pre {
    margin: 0;
    padding: 32px;
    overflow-x: auto;
    color: var(--proto-ink-soft);
    font-family: var(--proto-font-mono);
    font-size: clamp(11px, 1.1vw, 14px);
    line-height: 1.9;
  }

  .skill-sheet-foot {
    border-top: 1px solid var(--proto-line);
    color: var(--proto-muted);
  }

  .solutions-head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 72px;
    align-items: end;
    margin-bottom: 80px;
  }

  .solutions-head .display-title {
    max-width: 900px;
    margin-top: 46px;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--proto-line-strong);
    border-bottom: 1px solid var(--proto-line-strong);
  }

  .solution-card {
    min-height: 470px;
    padding: 26px;
    border-left: 1px solid var(--proto-line-strong);
    transition:
      background-color 200ms ease,
      transform 200ms ease;
  }

  .solution-card:last-child {
    border-right: 1px solid var(--proto-line-strong);
  }

  .solution-card h3 {
    min-height: 112px;
    margin-top: 32px;
    font-size: clamp(1.7rem, 2.5vw, 2.9rem);
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .solution-card p {
    min-height: 134px;
    margin-top: 28px;
    color: var(--proto-muted);
    font-size: 14px;
    line-height: 1.65;
  }

  .solution-card ul {
    padding-top: 22px;
    border-top: 1px solid var(--proto-line);
  }

  .solution-card li {
    padding-block: 5px;
    color: var(--proto-ink-soft);
    font-family: var(--proto-font-mono);
    font-size: 10px;
    text-transform: uppercase;
  }

  .local-first {
    border-top: 1px solid var(--proto-line);
    background: var(--proto-paper-raised);
  }

  .local-grid {
    display: grid;
    grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
    gap: clamp(64px, 9vw, 140px);
    align-items: center;
  }

  .boundary-diagram {
    display: grid;
    grid-template-columns: 1fr 110px 1fr;
    align-items: center;
  }

  .boundary-local,
  .boundary-external {
    min-height: 420px;
    padding: 24px;
    border: 1px solid var(--proto-line-strong);
    border-radius: 20px;
  }

  .boundary-local {
    background: var(--proto-paper);
    box-shadow: inset 0 0 0 8px var(--proto-paper-raised);
  }

  .boundary-local > span,
  .boundary-external > span {
    font-family: var(--proto-font-mono);
    color: var(--proto-muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .boundary-proto {
    width: 138px;
    height: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 44px auto 36px;
    border: 1px solid var(--proto-ink);
    border-radius: 50%;
    background: var(--proto-ink);
    color: white;
  }

  .boundary-proto strong {
    font-size: 20px;
  }

  .boundary-proto small {
    margin-top: 4px;
    color: #c8c5c1;
    font-size: 10px;
  }

  .boundary-local ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .boundary-local li {
    padding: 10px;
    border: 1px solid var(--proto-line);
    border-radius: 8px;
    color: var(--proto-ink-soft);
    font-family: var(--proto-font-mono);
    font-size: 10px;
    text-align: center;
  }

  .boundary-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--proto-muted);
    font-family: var(--proto-font-mono);
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
  }

  .boundary-path i {
    width: 100%;
    height: 1px;
    background: var(--proto-line-strong);
  }

  .boundary-external {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--proto-surface);
  }

  .boundary-external > span {
    margin-bottom: 24px;
  }

  .boundary-external > div {
    padding: 18px;
    border: 1px solid var(--proto-line);
    border-radius: 10px;
  }

  .boundary-external strong,
  .boundary-external small {
    display: block;
  }

  .boundary-external strong {
    font-size: 13px;
  }

  .boundary-external small {
    margin-top: 5px;
    color: var(--proto-muted);
    font-size: 10px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
    gap: clamp(64px, 10vw, 160px);
    align-items: start;
  }

  .faq-heading {
    position: sticky;
    top: 120px;
  }

  .faq-heading .display-title {
    margin-top: 48px;
    font-size: clamp(2.7rem, 4.6vw, 5rem);
  }

  .faq-heading .section-summary {
    margin-top: 30px;
  }

  .faq-list {
    border-top: 1px solid var(--proto-line-strong);
  }

  .faq-list details {
    border-bottom: 1px solid var(--proto-line-strong);
  }

  .faq-list summary {
    display: grid;
    grid-template-columns: 1fr 36px;
    gap: 24px;
    align-items: center;
    padding-block: 26px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: -0.02em;
    list-style: none;
  }

  .faq-list summary::-webkit-details-marker {
    display: none;
  }

  .faq-list summary span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--proto-line-strong);
    border-radius: 50%;
    transition:
      transform 180ms ease,
      background-color 180ms ease;
  }

  .faq-list details[open] summary span {
    transform: rotate(45deg);
    background: var(--proto-ink);
    color: white;
  }

  .faq-list details p {
    max-width: 720px;
    padding: 0 66px 28px 0;
    color: var(--proto-muted);
    line-height: 1.7;
  }

  .download {
    background: #ebe9e6;
    border-top: 1px solid var(--proto-line-strong);
  }

  .download-head {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
    gap: clamp(48px, 8vw, 128px);
    align-items: end;
  }

  .download-head .display-title {
    max-width: 760px;
    margin-top: 32px;
    font-size: clamp(3.4rem, 6vw, 6rem);
    line-height: 0.96;
  }

  .download-source-choice {
    max-width: 480px;
    padding-bottom: 7px;
  }

  .download-source-choice__head,
  .download-source-choice__option {
    display: flex;
    align-items: center;
  }

  .download-source-choice__head {
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--proto-line-strong);
    font-family: var(--proto-font-mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .download-source-choice__head h3 {
    color: var(--proto-ink);
    font-family: var(--proto-font-sans);
    font-size: 14px;
    font-weight: 680;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .download-source-choice__head span {
    color: var(--proto-muted);
  }

  .download-source-choice__options {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    padding-block: 12px;
  }

  .download-source-choice__option {
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--proto-line-strong);
    border-radius: var(--proto-radius-lg);
    background: var(--proto-background);
  }

  .download-source-choice__option > span,
  .download-source-choice__or {
    color: var(--proto-brand);
    font-family: var(--proto-font-mono);
    font-size: 9px;
    text-transform: uppercase;
  }

  .download-source-choice__option > span {
    flex: 0 0 auto;
    align-self: flex-start;
    padding-top: 2px;
  }

  .download-source-choice__option strong {
    display: block;
    color: var(--proto-ink);
    font-size: 12px;
    font-weight: 680;
    line-height: 1.3;
  }

  .download-source-choice__option p {
    margin-top: 4px;
    color: var(--proto-muted);
    font-size: 10px;
    line-height: 1.45;
  }

  .download-source-choice__or {
    display: grid;
    place-items: center;
  }

  .download-summary {
    color: var(--proto-ink-soft);
    font-size: 16px;
    line-height: 1.65;
  }

  .download-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(34rem, 0.95fr);
    gap: clamp(var(--proto-space-6), 3vw, calc(var(--proto-space-6) * 2));
    align-items: center;
    margin-top: clamp(60px, 7vw, 100px);
  }

  .download-window,
  .download-panel {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .download-window {
    padding: 0;
  }

  .download-window-image {
    overflow: hidden;
    border: 0;
    border-radius: var(--proto-radius-xl);
    background: transparent;
    box-shadow:
      0 var(--proto-space-2) var(--proto-space-6)
        color-mix(in oklch, var(--proto-ink-deep), transparent 91%),
      0 calc(var(--proto-space-6) * 2) calc(var(--proto-space-6) * 4)
        calc(var(--proto-space-4) * -1) color-mix(in oklch, var(--proto-ink-deep), transparent 78%);
  }

  .download-window-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .download-panel {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .download-release-date {
    align-self: flex-end;
    margin: 0 0 var(--proto-space-3);
    color: var(--proto-muted);
    font-family: var(--proto-font-mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .download-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--proto-space-4);
    margin-top: 0;
  }

  .download-button {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    min-width: 0;
    min-height: calc(var(--proto-space-6) * 8);
    padding: var(--proto-space-4);
    border: 1px solid var(--proto-line-strong);
    border-radius: var(--proto-radius-xl);
    background: var(--proto-paper-raised);
    color: var(--proto-ink);
    box-shadow: var(--proto-tacet-shadow-xs);
    text-decoration: none;
    touch-action: manipulation;
    transition:
      transform var(--proto-duration-fast) var(--proto-ease-standard),
      border-color var(--proto-duration-fast) var(--proto-ease-standard),
      background-color var(--proto-duration-fast) var(--proto-ease-standard),
      box-shadow var(--proto-duration-fast) var(--proto-ease-standard);
  }

  .download-button:hover {
    border-color: var(--proto-line-strong);
    background: var(--proto-paper-raised);
    color: var(--proto-ink);
    box-shadow: var(--proto-tacet-shadow-xs);
    transform: none;
  }

  .download-button:focus-visible {
    outline: 2px solid var(--proto-brand);
    outline-offset: calc(var(--proto-space-2) / 2);
  }

  .download-button:active {
    transform: scale(0.96);
  }

  .download-button__platform {
    display: grid;
    width: calc(var(--proto-space-6) * 2);
    height: calc(var(--proto-space-6) * 2);
    place-items: center;
    border: 1px solid color-mix(in oklch, var(--proto-brand), transparent 66%);
    border-radius: var(--proto-radius-lg);
    background: var(--proto-brand-soft);
    color: var(--proto-brand);
  }

  .download-button__platform svg {
    width: var(--proto-space-6);
    height: var(--proto-space-6);
  }

  .download-button__copy {
    display: flex;
    flex-direction: column;
    margin-top: var(--proto-space-6);
  }

  .download-button__copy strong {
    margin-bottom: var(--proto-space-2);
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    font-weight: 720;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  .download-button__meta {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--proto-space-2) / 2) var(--proto-space-2);
    align-items: center;
  }

  .download-button__meta small {
    color: var(--proto-muted);
    font-family: var(--proto-font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.55;
    text-transform: uppercase;
  }

  .download-button__meta small + small::before {
    margin-right: var(--proto-space-2);
    color: var(--proto-line-strong);
    content: '·';
  }

  .download-button__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: var(--proto-space-4);
    border-top: 1px solid var(--proto-line);
    color: var(--proto-ink);
    font-size: 11px;
    font-weight: 680;
    letter-spacing: 0.02em;
  }

  .download-button__action i {
    display: grid;
    width: calc(var(--proto-space-6) + var(--proto-space-2));
    height: calc(var(--proto-space-6) + var(--proto-space-2));
    place-items: center;
    border-radius: var(--proto-radius-full);
    background: var(--proto-ink);
    color: var(--proto-background);
    font-size: 12px;
    font-style: normal;
    transition:
      background-color var(--proto-duration-fast) var(--proto-ease-standard),
      color var(--proto-duration-fast) var(--proto-ease-standard),
      transform var(--proto-duration-fast) var(--proto-ease-standard);
  }

  .download-note {
    margin-top: var(--proto-space-4);
    padding-top: var(--proto-space-4);
    border-top: 1px solid var(--proto-line);
    color: var(--proto-muted);
    font-family: var(--proto-font-mono);
    font-size: 9px;
    line-height: 1.6;
  }

  .download-note a {
    display: inline-block;
    margin: 6px 0 0;
    color: var(--proto-ink);
    text-underline-offset: 3px;
  }

  @media (max-width: 70rem) {
    .download-product {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .site-footer {
    padding-top: 80px;
    background: #0d0d0d;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 72px;
  }

  .footer-brand img {
    width: 142px;
    height: auto;
  }

  .footer-brand p {
    max-width: 300px;
    margin-top: 26px;
    color: #9d9994;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .footer-links h2 {
    margin-bottom: 20px;
    color: #938e88;
    font-family: var(--proto-font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-links a {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: #d2cfcb;
    font-size: 13px;
    text-decoration: none;
  }

  .footer-links a:hover {
    color: white;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #938e88;
    font-family: var(--proto-font-mono);
    font-size: 9px;
    line-height: 1.6;
  }

  .footer-bottom p:last-child {
    max-width: 580px;
    text-align: right;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 {
    transition-delay: 80ms !important;
  }

  .reveal-delay-2 {
    transition-delay: 160ms !important;
  }

  .reveal-delay-3 {
    transition-delay: 240ms !important;
  }

  @media (max-width: 1120px) {
    .hero {
      gap: 44px;
    }

    .proof-item {
      padding-inline: 18px;
    }

    .story-grid,
    .reach-grid,
    .skills-grid,
    .local-grid,
    .faq-grid {
      gap: 64px;
    }

    .story-visual {
      padding-left: 0;
    }

    .story-ledger {
      position: relative;
      top: auto;
      left: auto;
      width: 86%;
      margin: 0 auto -40px;
      transform: none;
    }

    .solution-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .solution-card:nth-child(2) {
      border-right: 1px solid var(--proto-line-strong);
    }

    .solution-card:nth-child(n + 3) {
      border-top: 1px solid var(--proto-line-strong);
    }

    .boundary-diagram {
      grid-template-columns: 1fr 60px 1fr;
    }
  }

  @media (max-width: 900px) {
    :root {
      --proto-section-space: 112px;
    }

    .hero {
      grid-template-columns: minmax(0, 1fr);
    }

    .hero-aside {
      max-width: 420px;
    }

    .hero-proof {
      grid-column: auto;
      margin-top: 6px;
    }

    .hero-image-wrap {
      border-radius: 18px;
    }

    .proof-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .proof-item:nth-child(2) {
      border-right: 1px solid var(--proto-line);
    }

    .proof-item:nth-child(n + 3) {
      border-top: 1px solid var(--proto-line);
    }

    .intro,
    .section-head,
    .story-grid,
    .control-grid,
    .reach-grid,
    .skills-grid,
    .solutions-head,
    .local-grid,
    .faq-grid,
    .download-head,
    .download-product,
    .footer-main {
      grid-template-columns: minmax(0, 1fr);
    }

    .section-head,
    .intro,
    .story-grid,
    .control-grid,
    .reach-grid,
    .skills-grid,
    .solutions-head,
    .local-grid,
    .faq-grid,
    .footer-main {
      gap: 60px;
    }

    .download-head {
      gap: 34px;
    }

    .download-product {
      gap: 18px;
    }

    .process-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 56px 0;
    }

    .process-list::before {
      display: none;
    }

    .process-step:nth-child(3) {
      border-left: 0;
      padding-left: 0;
    }

    .process-step {
      min-height: 240px;
    }

    .control-stack {
      max-width: 680px;
    }

    .job-row {
      grid-template-columns: 48px 0.8fr 1.8fr;
    }

    .reach-map {
      max-width: 680px;
    }

    .skill-sheet {
      max-width: 620px;
      transform: rotate(-0.8deg);
    }

    .solutions-head .section-summary {
      max-width: 700px;
    }

    .faq-heading {
      position: static;
    }

    .download-source-choice,
    .download-summary {
      max-width: 680px;
    }

    .download-source-choice {
      padding-bottom: 0;
    }

    .download-panel {
      min-height: 0;
    }

    .footer-links {
      max-width: 680px;
    }
  }

  @media (max-width: 640px) {
    :root {
      --proto-gutter: max(20px, var(--proto-viewport-safe-left), var(--proto-viewport-safe-right));
      --proto-section-space: 88px;
    }

    html {
      scroll-padding-top: 72px;
    }

    .hero {
      gap: 46px;
      padding-top: 64px;
      padding-bottom: 88px;
    }

    .hero h1 {
      margin-top: 18px;
      font-size: clamp(3rem, 15vw, 4.3rem);
    }

    .hero-summary {
      margin-top: 28px;
      font-size: 16px;
    }

    .hero-actions {
      align-items: stretch;
      flex-direction: column;
      gap: 14px;
    }

    .hero-actions .button {
      width: 100%;
    }

    .hero-actions .text-link {
      width: fit-content;
    }

    .hero-aside {
      width: 100%;
    }

    .proof-topline {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
    }

    .proof-caption {
      flex-direction: column;
      gap: 3px;
    }

    .hero-image-wrap {
      overflow-x: auto;
      border-radius: 14px;
    }

    .hero-image-wrap img {
      width: 780px;
      max-width: none;
    }

    .proof-grid {
      grid-template-columns: 1fr;
    }

    .proof-item,
    .proof-item:nth-child(2),
    .proof-item:last-child {
      min-height: 76px;
      border: 0;
      border-bottom: 1px solid var(--proto-line);
    }

    .proof-item:last-child {
      border-bottom: 0;
    }

    .section-index::after {
      width: 32px;
    }

    .display-title {
      font-size: clamp(2.7rem, 13vw, 4.4rem);
    }

    .intro-columns {
      grid-template-columns: 1fr;
      gap: 28px;
      margin-top: 44px;
      font-size: 16px;
    }

    .process-list {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .process-step,
    .process-step + .process-step,
    .process-step:nth-child(3) {
      min-height: auto;
      display: grid;
      grid-template-columns: 38px 1fr;
      column-gap: 18px;
      padding: 24px 0;
      border-left: 0;
      border-bottom: 1px solid var(--proto-line);
    }

    .process-step h3,
    .process-step p {
      grid-column: 2;
    }

    .process-step p {
      margin-top: 8px;
    }

    .story-copy .kicker,
    .reach-copy .kicker,
    .skills-copy .kicker,
    .local-copy .kicker {
      margin-top: 40px;
    }

    .story-quote {
      font-size: 16px;
    }

    .story-ledger {
      width: 94%;
      margin-bottom: -24px;
    }

    .window-crop {
      overflow-x: auto;
    }

    .window-crop img {
      width: 760px;
      max-width: none;
    }

    .control-card p {
      font-size: 16px;
    }

    .job-row {
      grid-template-columns: 34px 1fr;
      gap: 14px;
      min-height: auto;
      padding-block: 28px;
    }

    .job-row h3 {
      font-size: 30px;
    }

    .job-row p {
      grid-column: 2;
      font-size: 14px;
    }

    .reach-map {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .reach-map::before {
      display: none;
    }

    .reach-core {
      width: 180px;
      justify-self: center;
    }

    .skill-sheet pre {
      padding: 24px 18px;
      font-size: 10px;
    }

    .skill-sheet-head,
    .skill-sheet-foot {
      align-items: flex-start;
      flex-direction: column;
      gap: 5px;
    }

    .solution-grid {
      grid-template-columns: 1fr;
      border-bottom: 0;
    }

    .solution-card,
    .solution-card:nth-child(2),
    .solution-card:nth-child(n + 3),
    .solution-card:last-child {
      min-height: auto;
      border: 0;
      border-bottom: 1px solid var(--proto-line-strong);
    }

    .solution-card h3,
    .solution-card p {
      min-height: 0;
    }

    .solution-card p {
      margin-bottom: 28px;
    }

    .boundary-diagram {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .boundary-path {
      flex-direction: row;
    }

    .boundary-local,
    .boundary-external {
      min-height: auto;
    }

    .faq-list summary {
      font-size: 16px;
    }

    .faq-list details p {
      padding-right: 0;
    }

    .download-head .display-title {
      font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .download-source-choice__head {
      align-items: flex-start;
      flex-direction: column;
      gap: 5px;
    }

    .download-source-choice__options {
      grid-template-columns: minmax(0, 1fr);
      gap: 6px;
    }

    .download-source-choice__or {
      justify-content: start;
      padding-inline: 12px;
    }

    .download-window,
    .download-panel {
      border-radius: 0;
    }

    .download-window {
      padding: 0;
    }

    .download-actions {
      grid-template-columns: minmax(0, 1fr);
    }

    .download-release-date {
      align-self: flex-start;
    }

    .download-button {
      display: grid;
      grid-template-columns: calc(var(--proto-space-6) * 2) minmax(0, 1fr) auto;
      gap: var(--proto-space-4);
      align-items: center;
      min-height: 0;
      padding: var(--proto-space-4);
    }

    .download-button__copy,
    .download-button__action {
      margin-top: 0;
    }

    .download-button__copy strong {
      margin-bottom: 6px;
    }

    .download-button__action {
      align-self: stretch;
      border-top: 0;
      padding-top: 0;
      font-size: 0;
    }

    .footer-links {
      grid-template-columns: 1fr 1fr;
      gap: 48px 28px;
    }

    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }

    .footer-bottom p:last-child {
      text-align: left;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }

    .js .reveal {
      opacity: 1;
      transform: none;
    }

    .process-list[data-process-sequence] .process-step::after {
      animation: none;
      transform: scaleX(0);
    }

    .process-list[data-process-sequence] .process-step.is-current::after {
      transform: scaleX(1);
    }
  }

  @media print {
    .proto-nav,
    .proto-mobile,
    .page-progress,
    .hero-actions,
    .download,
    .site-footer {
      display: none;
    }

    body {
      background: white;
    }

    .section {
      padding-block: 40px;
    }

    .control {
      background: white;
      color: black;
    }
  }
}

/* Shared flow geometry for the connected-work and local-boundary diagrams.
   These rules remain Proto-owned and unlayered so they can correct the legacy
   diagram bridge without depending on shared design-system styles. */
.reach-map[data-diagram-flow] {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11rem, 0.85fr) minmax(18rem, 1.35fr);
  gap: clamp(5rem, 7vw, 7rem);
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reach-map[data-diagram-flow]::before {
  display: none;
}

.reach-map[data-diagram-flow] .reach-core {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(100%, 12rem);
  border-color: var(--proto-diagram-core-border);
  border-radius: var(--proto-radius-lg);
  background: var(--proto-diagram-core-surface);
  color: var(--proto-diagram-core-foreground);
  box-shadow:
    inset 0 -2px 0 var(--proto-tacet-orange),
    var(--proto-tacet-shadow-md);
}

.reach-map[data-diagram-flow] .reach-core img {
  width: calc(var(--proto-space-6) * 2);
  height: calc(var(--proto-space-6) * 2);
  filter: brightness(0) invert(1);
  opacity: 1;
}

.reach-map[data-diagram-flow] .reach-core strong {
  font-size: 1.25rem;
}

.reach-map[data-diagram-flow] .reach-core span {
  margin-top: var(--proto-space-2);
  color: var(--proto-diagram-core-muted);
}

.reach-map[data-diagram-flow] ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--proto-space-2);
  align-content: center;
  padding: 0;
  border: 0;
}

.reach-map[data-diagram-flow] li {
  position: relative;
  min-width: 0;
  padding: var(--proto-space-4);
  border: 1px solid var(--proto-border);
  border-radius: var(--proto-radius-md);
  background: var(--proto-paper-raised);
  box-shadow: var(--proto-tacet-shadow-xs);
}

.reach-map[data-diagram-flow] li > span {
  display: grid;
  width: calc(var(--proto-space-6) + var(--proto-space-2));
  height: calc(var(--proto-space-6) + var(--proto-space-2));
  grid-row: 1 / 3;
  place-items: center;
  align-self: center;
  border: 1px solid color-mix(in oklch, var(--proto-brand), transparent 66%);
  border-radius: var(--proto-radius-full);
  background: var(--proto-brand-soft);
  color: var(--proto-brand);
  font-size: 0.625rem;
  font-weight: 650;
}

.reach-routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--proto-brand);
  pointer-events: none;
}

.reach-route__track,
.reach-route__tracer,
.reach-route__spark {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.reach-route__track {
  stroke: var(--proto-line-strong);
  stroke-width: 1;
}

.reach-route__arrow {
  fill: var(--proto-brand);
}

.reach-route__tracer,
.reach-route__spark {
  opacity: 0;
  stroke-linecap: round;
  stroke-dashoffset: 100;
}

.reach-route__tracer {
  stroke: var(--proto-brand);
  stroke-width: 2;
  stroke-dasharray: 14 86;
}

.reach-route__spark {
  stroke: var(--proto-background);
  stroke-width: 3.5;
  stroke-dasharray: 0.8 99.2;
}

.reach-route--01 {
  --reach-route-delay: 0s;
}

.reach-route--02 {
  --reach-route-delay: -0.5334s;
}

.reach-route--03 {
  --reach-route-delay: -1.0668s;
}

.reach-route--04 {
  --reach-route-delay: -1.6002s;
}

.reach-route--05 {
  --reach-route-delay: -2.1336s;
}

.reach-map[data-diagram-flow].is-flowing .reach-route__tracer,
.reach-map[data-diagram-flow].is-flowing .reach-route__spark {
  animation: proto-reach-route-tracer 2.667s linear infinite;
  animation-delay: var(--reach-route-delay);
}

@keyframes proto-reach-route-tracer {
  0% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  10%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

.boundary-diagram[data-diagram-flow] {
  --boundary-route-duration: 2.667s;
  --boundary-route-hit-offset: 2.2936s;

  position: relative;
  display: grid;
  grid-template-columns:
    minmax(9rem, 1fr)
    minmax(7.25rem, 0.8fr)
    minmax(12rem, 1.35fr);
  gap: clamp(
    calc(var(--proto-space-4) + var(--proto-space-4)),
    5vw,
    calc(var(--proto-space-4) + var(--proto-space-4) + var(--proto-space-4) + var(--proto-space-4))
  );
  align-items: center;
  aspect-ratio: 2 / 1;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.boundary-diagram[data-diagram-flow] .boundary-local,
.boundary-diagram[data-diagram-flow] .boundary-external,
.boundary-diagram[data-diagram-flow] .boundary-proto {
  position: relative;
  z-index: 2;
}

.boundary-diagram[data-diagram-flow] .boundary-local,
.boundary-diagram[data-diagram-flow] .boundary-external {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.boundary-diagram[data-diagram-flow] .boundary-local {
  display: flex;
  flex-direction: column;
  gap: var(--proto-space-3);
}

.boundary-diagram[data-diagram-flow] .boundary-local > span,
.boundary-diagram[data-diagram-flow] .boundary-external > span {
  margin: 0;
}

.boundary-diagram[data-diagram-flow] .boundary-local ul {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--proto-space-2);
}

.boundary-diagram[data-diagram-flow] .boundary-local li,
.boundary-diagram[data-diagram-flow] .boundary-external > div {
  position: relative;
  border: 1px solid var(--boundary-node-border);
  border-radius: var(--proto-radius-md);
  background: var(--boundary-node-surface);
  box-shadow: var(--proto-tacet-shadow-xs);
}

.boundary-diagram[data-diagram-flow] .boundary-local li {
  --boundary-node-surface: var(--proto-boundary-source-surface);
  --boundary-node-border: var(--proto-boundary-source-border);

  display: grid;
  min-height: calc(var(--proto-space-6) + var(--proto-space-4));
  place-items: center;
  padding: var(--proto-space-2);
  text-align: center;
}

.boundary-diagram[data-diagram-flow] .boundary-proto {
  width: min(100%, 8.5rem);
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
  border-color: var(--proto-diagram-core-border);
  border-radius: var(--proto-radius-lg);
  background: var(--proto-diagram-core-surface);
  color: var(--proto-diagram-core-foreground);
  box-shadow:
    inset 0 calc(var(--proto-radius-xs) * -1) 0 var(--proto-brand),
    var(--proto-tacet-shadow-md);
}

.boundary-diagram[data-diagram-flow] .boundary-proto img {
  width: calc(var(--proto-space-6) + var(--proto-space-3));
  height: calc(var(--proto-space-6) + var(--proto-space-3));
  margin-bottom: var(--proto-space-2);
  filter: brightness(0) invert(1);
}

.boundary-diagram[data-diagram-flow] .boundary-proto small {
  color: var(--proto-diagram-core-muted);
}

.boundary-diagram[data-diagram-flow] .boundary-external {
  display: flex;
  flex-direction: column;
  gap: var(--proto-space-2);
}

.boundary-diagram[data-diagram-flow] .boundary-external > div {
  --boundary-node-surface: var(--proto-boundary-destination-surface);
  --boundary-node-border: var(--proto-boundary-destination-border);

  padding: var(--proto-space-4);
}

.boundary-node__trace {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.boundary-node__trace rect {
  fill: none;
  filter: drop-shadow(
    0 0 var(--proto-radius-sm) color-mix(in oklch, var(--proto-boundary-trace), transparent 42%)
  );
  opacity: 0;
  rx: var(--proto-radius-md);
  stroke: var(--proto-boundary-trace);
  stroke-dasharray: 7 93;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.boundary-diagram[data-diagram-flow] .boundary-local li:nth-child(1) {
  --boundary-node-delay: 0s;
}

.boundary-diagram[data-diagram-flow] .boundary-local li:nth-child(2) {
  --boundary-node-delay: -0.381s;
}

.boundary-diagram[data-diagram-flow] .boundary-local li:nth-child(3) {
  --boundary-node-delay: -0.762s;
}

.boundary-diagram[data-diagram-flow] .boundary-local li:nth-child(4) {
  --boundary-node-delay: -1.143s;
}

.boundary-diagram[data-diagram-flow] .boundary-external > div:nth-of-type(1) {
  --boundary-node-delay: -1.524s;
}

.boundary-diagram[data-diagram-flow] .boundary-external > div:nth-of-type(2) {
  --boundary-node-delay: -1.905s;
}

.boundary-diagram[data-diagram-flow] .boundary-external > div:nth-of-type(3) {
  --boundary-node-delay: -2.286s;
}

.boundary-diagram[data-diagram-flow].is-flowing .boundary-local .boundary-node__trace rect {
  animation: proto-boundary-source-trace var(--boundary-route-duration) linear infinite;
  animation-delay: var(--boundary-node-delay);
}

.boundary-diagram[data-diagram-flow].is-flowing .boundary-external .boundary-node__trace rect {
  animation: proto-boundary-destination-trace var(--boundary-route-duration) linear infinite;
  animation-delay: calc(var(--boundary-node-delay) + var(--boundary-route-hit-offset));
}

@keyframes proto-boundary-source-trace {
  0%,
  68% {
    opacity: 0;
    stroke-dashoffset: 98;
  }

  74% {
    opacity: 0.18;
  }

  96% {
    opacity: 0.72;
    stroke-dashoffset: 63;
  }

  100% {
    opacity: 0.22;
    stroke-dashoffset: 63;
  }
}

@keyframes proto-boundary-destination-trace {
  0% {
    opacity: 0.22;
    stroke-dashoffset: 7;
  }

  5% {
    opacity: 0.72;
  }

  24% {
    opacity: 0.36;
    stroke-dashoffset: -15;
  }

  34%,
  100% {
    opacity: 0;
    stroke-dashoffset: -20;
  }
}

.boundary-routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.boundary-route__arrow {
  fill: var(--proto-line-strong);
}

.boundary-route--01 {
  --boundary-route-delay: 0s;
}

.boundary-route--02 {
  --boundary-route-delay: -0.381s;
}

.boundary-route--03 {
  --boundary-route-delay: -0.762s;
}

.boundary-route--04 {
  --boundary-route-delay: -1.143s;
}

.boundary-route--05 {
  --boundary-route-delay: -1.524s;
}

.boundary-route--06 {
  --boundary-route-delay: -1.905s;
}

.boundary-route--07 {
  --boundary-route-delay: -2.286s;
}

.boundary-diagram[data-diagram-flow].is-flowing .boundary-route .reach-route__tracer,
.boundary-diagram[data-diagram-flow].is-flowing .boundary-route .reach-route__spark {
  animation: proto-boundary-route-tracer var(--boundary-route-duration) linear infinite;
  animation-delay: var(--boundary-route-delay);
}

@keyframes proto-boundary-route-tracer {
  0% {
    opacity: 0.22;
    stroke-dashoffset: 100;
  }

  4%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 56.25rem) {
  .reach-map[data-diagram-flow] {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--proto-space-4);
    padding: 0;
  }

  .reach-map[data-diagram-flow] .reach-core {
    width: min(11rem, 62vw);
  }

  .reach-map[data-diagram-flow] ul {
    width: 100%;
    padding: 0;
  }

  .reach-routes {
    display: none;
  }

  .boundary-diagram[data-diagram-flow] {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--proto-space-4);
    aspect-ratio: auto;
    min-height: 0;
  }

  .boundary-diagram[data-diagram-flow] .boundary-local,
  .boundary-diagram[data-diagram-flow] .boundary-proto,
  .boundary-diagram[data-diagram-flow] .boundary-external {
    width: min(100%, 24rem);
    justify-self: center;
  }

  .boundary-diagram[data-diagram-flow] .boundary-proto {
    width: min(8.5rem, 42vw);
  }

  .boundary-diagram[data-diagram-flow] .boundary-local ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boundary-routes,
  .boundary-node__trace {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reach-route__tracer,
  .reach-route__spark,
  .boundary-node__trace {
    display: none;
  }
}

@media print {
  .reach-route__tracer,
  .reach-route__spark,
  .boundary-node__trace {
    display: none;
  }
}
