@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/bricolage-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/instrument-latin.woff2') format('woff2');
}

:root {
  --teal-950: #071719;
  --teal-900: #0a1f22;
  --teal-850: #0e292d;
  --teal-800: #123338;
  --teal-700: #1c4c51;
  --teal-500: #397078;
  --paper: #f2f0e8;
  --paper-warm: #e9e4d7;
  --paper-cool: #e3e8e2;
  --sheet: #fbfaf4;
  --ink: #10201f;
  --ink-soft: #52615d;
  --rule: #b9bdb2;
  --rule-dark: #6e7771;
  --amber: #e7a23e;
  --amber-bright: #f4b759;
  --amber-deep: #9a5c0f;
  --green: #70d2a0;
  --green-dark: #1e7651;
  --red: #bd5745;
  --google: #da745a;
  --icloud: #6c9ec9;
  --outlook: #c48f3a;
  --display: 'Bricolage Grotesque', 'Arial Narrow', system-ui, sans-serif;
  --body: 'Instrument Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --wrap: 1240px;
  --edge: clamp(18px, 3vw, 34px);
  --shadow-small: 4px 4px 0 rgba(7, 23, 25, 0.18);
  --shadow-dark: 7px 7px 0 #071719;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection {
  background: var(--amber);
  color: var(--teal-950);
}

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

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

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

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--amber-deep);
  outline-offset: 4px;
}

.site-nav :focus-visible,
.signal-strip :focus-visible,
.routing-demo :focus-visible,
.safety :focus-visible,
.final-route :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--amber-bright);
}

.site-wrap {
  width: min(100%, var(--wrap));
  margin-inline: auto;
  padding-inline: var(--edge);
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  transform: translateY(-160%);
  border: 2px solid var(--amber);
  background: var(--teal-950);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

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

.live-lamp {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 3px rgba(112, 210, 160, 0.12),
    0 0 9px rgba(112, 210, 160, 0.8);
}

.signal-strip {
  position: relative;
  z-index: 52;
  border-bottom: 1px solid #1d4448;
  background: var(--teal-950);
  color: #b9ccc7;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 30px;
  text-transform: uppercase;
}

.signal-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 30px;
}

.signal-strip__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.signal-strip__inner > span:last-child {
  justify-self: end;
}

.signal-strip__middle {
  justify-self: center;
  color: #7f9993;
}

.site-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid #265057;
  background: rgba(10, 31, 34, 0.97);
  color: #eef3ed;
  transition:
    box-shadow 160ms ease,
    background 160ms ease;
}

.site-nav.is-scrolled {
  background: rgba(7, 23, 25, 0.985);
  box-shadow: 0 5px 0 rgba(7, 23, 25, 0.18);
}

.site-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand__module {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #ffd181;
  background: var(--amber);
  color: var(--teal-950);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 3px 3px 0 #071719;
}

.brand__module i {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 4px rgba(30, 118, 81, 0.6);
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.brand__copy small {
  margin-top: 5px;
  color: #92aaa5;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 32px);
}

.nav-menu a,
.nav-open {
  position: relative;
  color: #d8e3df;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--amber);
  content: '';
  transition: transform 150ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current='true'] {
  color: white;
}

.nav-menu a:hover::after,
.nav-menu a[aria-current='true']::after {
  transform: scaleX(1);
}

.nav-menu__app {
  display: none;
}

.nav-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid #5d7d79;
  color: white;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #071719;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.nav-open:hover {
  transform: translate(1px, 1px);
  border-color: var(--amber);
  background: #14363a;
  box-shadow: 2px 2px 0 #071719;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #285157;
  background: var(--teal-900);
  color: #eff3ed;
}

.hero::before,
.safety::before,
.final-route::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99, 142, 142, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 142, 142, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  content: '';
}

.hero::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(112, 210, 160, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(112, 210, 160, 0.025),
    0 0 0 70px rgba(112, 210, 160, 0.02);
  content: '';
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  min-height: 700px;
  padding-top: clamp(62px, 7vw, 102px);
  padding-bottom: clamp(66px, 7vw, 104px);
}

.console-label,
.folio-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.console-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9fb7b1;
}

.folio-label {
  color: var(--amber-deep);
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 22px;
  color: #f6f6ee;
  font-family: var(--display);
  font-size: clamp(62px, 6.7vw, 102px);
  font-weight: 680;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.hero h1 em {
  color: var(--amber-bright);
  font-style: normal;
}

.hero__lede {
  max-width: 585px;
  margin: 0;
  color: #becdc8;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.56;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 14px;
  font-weight: 720;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.action:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(7, 23, 25, 0.22);
}

.action--amber {
  border-color: #f5c36e;
  background: var(--amber);
  color: var(--teal-950);
}

.action--amber:hover {
  background: var(--amber-bright);
}

.action--quiet,
.action--on-dark {
  border-color: #5a7c79;
  background: rgba(255, 255, 255, 0.02);
  color: #ebf2ee;
}

.action--quiet:hover,
.action--on-dark:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 38px 0 0;
  border-top: 1px solid #315257;
  border-bottom: 1px solid #315257;
}

.hero__proof div {
  padding: 14px 12px 15px 0;
}

.hero__proof div + div {
  padding-left: 15px;
  border-left: 1px solid #315257;
}

.hero__proof dt,
.hero__proof dd {
  margin: 0;
}

.hero__proof dt {
  color: #77928e;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero__proof dd {
  margin-top: 5px;
  color: #e7ede8;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 670;
}

.routing-demo {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid #5d7775;
  background: #0b2023;
  box-shadow: 10px 10px 0 #061214;
}

.routing-demo::before,
.routing-demo::after {
  position: absolute;
  z-index: 3;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #66817e;
  content: '';
}

.routing-demo::before {
  top: 8px;
  left: 8px;
}

.routing-demo::after {
  right: 8px;
  bottom: 8px;
}

.routing-demo__top {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid #3b5a5e;
  background: #102a2e;
}

.routing-demo__top h2 {
  margin: 4px 0 0;
  color: #f3f4ed;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.routing-demo__status {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 8px;
  color: #bdd1ca;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.routing-demo__board {
  display: grid;
  grid-template-columns: minmax(174px, 0.9fr) minmax(70px, 0.35fr) minmax(210px, 1.05fr);
  align-items: center;
  min-height: 375px;
  padding: 22px 19px;
  background-image: radial-gradient(circle, #315157 1px, transparent 1px);
  background-size: 13px 13px;
}

.source-stack {
  display: grid;
  gap: 10px;
}

.source-record {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 10px;
  gap: 8px;
  align-items: center;
  min-height: 82px;
  padding: 9px 8px 9px 7px;
  border: 1px solid #49686a;
  border-left: 3px solid var(--source-color);
  background: #132d31;
  box-shadow: 3px 3px 0 #071719;
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.source-record--google {
  --source-color: var(--google);
}

.source-record--icloud {
  --source-color: var(--icloud);
}

.source-record--outlook {
  --source-color: var(--outlook);
}

.source-record__index {
  align-self: stretch;
  border-right: 1px solid #38565a;
  color: #789692;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.source-record div {
  display: grid;
  min-width: 0;
}

.source-record strong {
  color: var(--source-color);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-record div span {
  overflow: hidden;
  margin-top: 2px;
  color: #edf2ec;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-record small {
  overflow: hidden;
  margin-top: 1px;
  color: #839c97;
  font-size: 8.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-record > i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--source-color);
  border-radius: 50%;
  background: #0b2023;
}

.route-lines {
  position: relative;
  display: grid;
  height: 244px;
  align-content: space-around;
  transition: opacity 180ms ease;
}

.route-lines span {
  display: block;
  width: calc(50% + 1px);
  height: 2px;
  background: var(--amber);
  box-shadow: 0 0 5px rgba(231, 162, 62, 0.33);
}

.route-lines span::after {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 33.33%;
  background: var(--amber);
  content: '';
}

.route-lines span:first-child::after {
  top: 16.66%;
}

.route-lines span:nth-child(2)::after {
  display: none;
}

.route-lines span:nth-child(3)::after {
  bottom: 16.66%;
}

.route-lines > i {
  position: absolute;
  top: calc(50% - 5px);
  right: -1px;
  left: 50%;
  height: 2px;
  background: var(--amber);
}

.route-lines > i::before {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--amber-bright);
  border-radius: 50%;
  background: var(--teal-900);
  content: '';
}

.clean-record {
  position: relative;
  min-height: 306px;
  padding: 28px 16px 15px;
  border: 1px solid #d4d0c4;
  background: var(--sheet);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(2, 10, 11, 0.55);
}

.clean-record::after {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  height: 1px;
  background: repeating-linear-gradient(90deg, #bfc2b8 0 4px, transparent 4px 8px);
  content: '';
}

.clean-record__tab {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 9px;
  background: var(--amber);
  color: #23190a;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clean-record__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--ink);
}

.clean-record__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-warm);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
}

.clean-record__identity > div {
  display: grid;
}

.clean-record__identity strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.025em;
}

.clean-record__identity small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clean-record__values {
  display: grid;
}

.clean-record__values p {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 5px 8px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid #d3d4cb;
}

.clean-record__values p > span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clean-record__values p > strong {
  overflow: hidden;
  font-size: 10.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clean-record__values p > small {
  grid-column: 2;
  width: max-content;
  padding: 2px 4px;
  border: 1px solid #c5bba5;
  color: var(--amber-deep);
  font-family: var(--mono);
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.clean-record__idle {
  display: grid;
  min-height: 176px;
  margin: 0;
  place-items: center;
  padding: 18px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}

.routing-demo__foot {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border-top: 1px solid #3b5a5e;
  color: #8fa7a2;
  font-size: 10px;
}

.routing-demo__foot button {
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid #6b8783;
  border-radius: 0;
  background: transparent;
  color: #e3ebe7;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.routing-demo__foot button:hover {
  border-color: var(--amber);
  background: #183438;
}

.routing-demo[data-mode='split'] .route-lines {
  opacity: 0.15;
}

.routing-demo[data-mode='split'] .source-record {
  transform: translateX(-3px);
}

.routing-demo[data-mode='split'] .clean-record {
  opacity: 0.62;
}

.routing-demo[data-mode='split'] .live-lamp {
  background: var(--amber);
  box-shadow: none;
}

.limits {
  border-bottom: 1px solid var(--rule-dark);
  background: var(--amber);
}

.limits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-inline: var(--edge);
}

.limits__grid > div {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 32px 1fr;
  align-content: center;
  gap: 2px 12px;
  padding: 18px 24px 18px 0;
}

.limits__grid > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(35, 25, 10, 0.45);
}

.limits__grid span {
  grid-row: 1 / 3;
  color: rgba(26, 21, 14, 0.62);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.limits__grid strong {
  color: #201a10;
  font-family: var(--display);
  font-size: 15px;
}

.limits__grid small {
  color: #64461c;
  font-size: 11px;
}

.problem,
.inside,
.founder,
.faq,
.legal-main {
  position: relative;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.problem {
  padding: clamp(88px, 10vw, 145px) 0;
}

.section-heading {
  margin-bottom: clamp(40px, 6vw, 76px);
}

.section-heading--split,
.section-heading--inside {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 9vw, 140px);
  align-items: end;
}

.section-heading h2,
.safety h2,
.founder h2,
.final-route h2,
.legal-hero h1 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading h2 {
  max-width: 820px;
  font-size: clamp(42px, 6.1vw, 76px);
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.echo-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.72fr;
  border: 1px solid var(--ink);
  background: var(--sheet);
  box-shadow: var(--shadow-small);
}

.echo-ledger > * {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 180px;
  align-content: space-between;
  gap: 9px;
  padding: 20px;
}

.echo-ledger > * + * {
  border-left: 1px solid var(--rule);
}

.echo-ledger article::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 6px;
  background: var(--echo-color, var(--amber));
  content: '';
}

.echo-ledger article:first-child {
  --echo-color: var(--google);
}

.echo-ledger article:nth-child(2) {
  --echo-color: var(--icloud);
}

.echo-ledger article:nth-child(3) {
  --echo-color: var(--outlook);
}

.echo-ledger__source {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.echo-ledger article strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 26px);
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.echo-ledger article small {
  overflow: hidden;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.echo-ledger aside {
  background: var(--paper-warm);
}

.echo-ledger__number {
  color: var(--amber-deep);
  font-family: var(--display);
  font-size: 61px;
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.echo-ledger aside strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.echo-ledger aside small {
  color: var(--ink-soft);
  font-size: 10px;
}

.workflow {
  margin: clamp(78px, 9vw, 130px) 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.workflow > li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  min-height: 225px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
}

.workflow__index {
  align-self: stretch;
  padding-top: 2px;
  border-right: 1px solid var(--rule);
  color: var(--amber-deep);
  font-family: var(--display);
  font-size: 43px;
  font-weight: 720;
  letter-spacing: -0.06em;
}

.workflow__copy h3 {
  margin: 7px 0 7px;
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.workflow__copy > p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.workflow__specimen {
  justify-self: stretch;
  min-height: 116px;
  border: 1px solid var(--ink);
  background: var(--sheet);
  box-shadow: 4px 4px 0 rgba(7, 23, 25, 0.16);
}

.specimen-match {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 36px;
}

.specimen-match span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--teal-800);
  border-radius: 50%;
  background: var(--paper-warm);
  font-family: var(--display);
  font-weight: 760;
}

.specimen-match span + span {
  margin-left: -13px;
  border-color: var(--amber-deep);
  background: #f2dec0;
}

.specimen-match i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 3px 6px;
  background: var(--green-dark);
  color: white;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.specimen-review,
.specimen-undo {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 22px;
}

.specimen-review span,
.specimen-undo span {
  width: max-content;
  padding: 2px 6px;
  background: var(--amber);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specimen-review strong,
.specimen-undo strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.specimen-review small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.specimen-undo {
  position: relative;
  background: var(--teal-850);
  color: white;
}

.specimen-undo i {
  position: absolute;
  right: 22px;
  bottom: 25px;
  width: 27px;
  height: 18px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
}

.specimen-undo i::before {
  position: absolute;
  bottom: -4px;
  left: -5px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(45deg);
  content: '';
}

.inside {
  padding: clamp(88px, 10vw, 145px) 0;
  background: var(--paper-cool);
}

.section-heading--inside {
  margin-bottom: clamp(38px, 5vw, 62px);
}

.product-capture {
  margin: 0;
  border: 1px solid var(--teal-950);
  background: var(--teal-900);
  box-shadow: 9px 9px 0 rgba(7, 23, 25, 0.26);
}

.product-capture__bar {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid #36585b;
  color: #aac0bb;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-capture__bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-capture picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  background: #0a1b1e;
}

.product-capture img {
  width: 100%;
  height: auto;
  border: 0;
}

.product-capture figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 66px;
  padding: 12px 16px;
  border-top: 1px solid #36585b;
  color: #9fb4af;
  font-size: 11px;
}

.product-capture figcaption b {
  color: #edf2ed;
}

.product-capture figcaption a {
  min-width: max-content;
  color: var(--amber-bright);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.product-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  list-style: none;
}

.product-notes > li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  align-items: start;
  padding: 23px 20px 23px 0;
}

.product-notes > li + li {
  padding-left: 20px;
  border-left: 1px solid var(--rule-dark);
}

.product-notes span {
  color: var(--amber-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.product-notes strong {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.3;
}

.safety {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #315359;
  background: var(--teal-900);
  color: #edf2ed;
  padding: clamp(90px, 10vw, 145px) 0;
}

.safety__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 140px);
}

.safety__statement {
  align-self: start;
}

.safety h2 {
  max-width: 520px;
  font-size: clamp(47px, 6vw, 76px);
}

.safety__statement > p:not(.console-label) {
  max-width: 500px;
  margin: 26px 0 0;
  color: #adbfba;
  font-size: 17px;
}

.safety__statement > a {
  display: inline-block;
  margin-top: 28px;
  color: var(--amber-bright);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.never-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #55716f;
  list-style: none;
}

.never-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 13px;
  padding: 20px 0;
  border-bottom: 1px solid #405f60;
}

.never-list span {
  grid-row: 1 / 3;
  color: var(--amber-bright);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.never-list strong {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.025em;
}

.never-list small {
  color: #91a9a4;
  font-size: 12px;
}

.safety-ledger {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border: 1px solid #5a7774;
  background: #0c2427;
  box-shadow: 7px 7px 0 #061416;
}

.safety-ledger div {
  min-width: 0;
  padding: 17px 18px;
}

.safety-ledger div + div {
  border-left: 1px solid #415f60;
}

.safety-ledger dt,
.safety-ledger dd {
  margin: 0;
}

.safety-ledger dt {
  color: #789591;
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.safety-ledger dd {
  overflow: hidden;
  margin-top: 7px;
  color: #e8f0eb;
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
}

.safety-ledger code {
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
}

.founder {
  padding: clamp(88px, 10vw, 140px) 0;
  background: var(--paper-warm);
}

.founder__grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(35px, 8vw, 112px);
  align-items: start;
}

.founder__stamp {
  position: sticky;
  top: 120px;
  display: grid;
  width: min(100%, 198px);
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  transform: rotate(-3deg);
  border: 2px solid var(--amber-deep);
  border-radius: 50%;
  color: var(--amber-deep);
  text-align: center;
}

.founder__stamp::before,
.founder__stamp::after {
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--amber-deep);
  border-radius: 50%;
  content: '';
}

.founder__stamp::after {
  inset: 45% 11px auto;
  border: 0;
  border-top: 1px solid var(--amber-deep);
  border-radius: 0;
}

.founder__stamp span,
.founder__stamp small {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder__stamp strong {
  margin: 8px 0;
  font-family: var(--display);
  font-size: 34px;
}

.founder__note {
  position: relative;
  max-width: 820px;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid var(--ink);
  background: var(--sheet);
  box-shadow: 8px 8px 0 rgba(16, 32, 31, 0.18);
}

.founder__note::before {
  position: absolute;
  top: -1px;
  right: 30px;
  width: 68px;
  height: 15px;
  background: var(--amber);
  content: '';
}

.founder h2 {
  max-width: 660px;
  font-size: clamp(40px, 5vw, 65px);
}

.founder__note > p:not(.folio-label, .founder__signature) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #394b47;
  font-size: 17px;
  line-height: 1.7;
}

.founder__signature {
  margin: 35px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 680;
}

.founder__signature span {
  color: var(--amber-deep);
}

.founder__signature a {
  color: var(--teal-700);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-underline-offset: 4px;
}

.faq {
  padding: clamp(86px, 9vw, 130px) 0;
  background: var(--sheet);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 2px solid var(--ink);
}

.faq__grid > div {
  padding: 27px 30px 31px 0;
  border-bottom: 1px solid var(--rule);
}

.faq__grid > div:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid var(--rule);
}

.faq__grid dt {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.faq__grid dd {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.final-route {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 108px) 0;
  border-bottom: 1px solid #36585b;
  background: var(--teal-850);
  color: #edf2ed;
}

.final-route__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.65fr);
  gap: clamp(35px, 8vw, 110px);
  align-items: end;
}

.final-route h2 {
  max-width: 730px;
  font-size: clamp(45px, 6.3vw, 78px);
}

.final-route__actions {
  display: grid;
  gap: 10px;
}

.final-route__grid > ul {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 29px;
  margin: 13px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #496769;
  color: #a9bdb8;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
}

.final-route__grid > ul li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  content: '';
  box-shadow: 0 0 5px rgba(112, 210, 160, 0.6);
}

.site-footer {
  padding: 46px 0;
  background: var(--teal-950);
  color: #aec1bc;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}

.brand--footer {
  color: #edf3ee;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 25px;
}

.site-footer__links a,
.site-footer__meta a {
  color: #aec1bc;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__meta a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__meta {
  display: grid;
  justify-items: end;
  gap: 5px;
  color: #78928d;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-open {
  display: none;
}

/* Privacy policy */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 110px) 0;
  border-bottom: 1px solid #34575b;
  background: var(--teal-900);
  color: #eef3ed;
}

.legal-hero::after {
  position: absolute;
  right: clamp(20px, 7vw, 120px);
  bottom: -80px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: clamp(180px, 26vw, 390px);
  font-weight: 800;
  line-height: 0.7;
  content: 'R';
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.legal-hero h1 {
  max-width: 850px;
  font-size: clamp(58px, 8vw, 105px);
}

.legal-hero__lede {
  max-width: 670px;
  margin: 22px 0 0;
  color: #afc0bb;
  font-size: 18px;
}

.legal-updated {
  min-width: max-content;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid #52716f;
  color: #a5bbb5;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-main {
  padding: clamp(64px, 8vw, 110px) 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 9vw, 130px);
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 112px;
  border-top: 2px solid var(--ink);
}

.legal-index p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--amber-deep);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-index a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.legal-index a span {
  color: var(--amber-deep);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
}

.legal-index a:hover {
  color: var(--ink);
}

.legal-copy {
  max-width: 800px;
}

.legal-section {
  scroll-margin-top: 115px;
  padding: 0 0 45px;
}

.legal-section + .legal-section {
  padding-top: 45px;
  border-top: 1px solid var(--rule);
}

.legal-section__number {
  color: var(--amber-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-section h2 {
  margin: 7px 0 18px;
  font-family: var(--display);
  font-size: clamp(29px, 3.2vw, 42px);
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.legal-section p,
.legal-section li {
  max-width: 76ch;
  color: #344642;
  font-size: 16px;
  line-height: 1.72;
}

.legal-section p {
  margin: 12px 0;
}

.legal-section ul,
.legal-section ol {
  margin: 15px 0;
  padding-left: 23px;
}

.legal-section li {
  margin: 8px 0;
  padding-left: 4px;
}

.legal-section li::marker {
  color: var(--amber-deep);
  font-weight: 800;
}

.legal-section a {
  color: #17674d;
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--amber-deep);
}

.legal-section code {
  padding: 2px 6px;
  border: 1px solid #c8c5b9;
  background: var(--sheet);
  color: var(--teal-700);
  font-family: var(--mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.legal-callout {
  position: relative;
  margin: 25px 0;
  padding: 23px 25px 23px 55px;
  border: 1px solid #3e6161;
  background: var(--teal-850);
  color: #edf3ee;
  box-shadow: 5px 5px 0 rgba(7, 23, 25, 0.18);
}

.legal-callout::before {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--green);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 7px rgba(112, 210, 160, 0.45);
}

.legal-callout p {
  margin: 0;
  color: #d6e1dc;
  font-size: 14px;
}

.legal-callout a {
  color: var(--amber-bright);
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(455px, 1.2fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(57px, 7vw, 82px);
  }

  .routing-demo__board {
    grid-template-columns: minmax(153px, 0.9fr) minmax(55px, 0.32fr) minmax(190px, 1.05fr);
    padding-inline: 13px;
  }

  .source-record {
    min-height: 78px;
  }

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

  .safety-ledger div:nth-child(3) {
    border-left: 0;
  }

  .safety-ledger div:nth-child(n + 3) {
    border-top: 1px solid #415f60;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .signal-strip__inner {
    grid-template-columns: 1fr auto;
  }

  .signal-strip__middle {
    display: none !important;
  }

  .site-nav__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 64px;
  }

  .nav-open {
    display: none;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    width: 42px;
    height: 38px;
    place-content: center;
    gap: 4px;
    padding: 0;
    border: 1px solid #567470;
    border-radius: 0;
    background: transparent;
    color: white;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

  .nav-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    justify-content: stretch;
    gap: 0;
    padding: 0 var(--edge) 17px;
    border-top: 1px solid #31545a;
    border-bottom: 1px solid #31545a;
    background: var(--teal-950);
    box-shadow: 0 7px 0 rgba(7, 23, 25, 0.22);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    min-height: 48px;
    padding: 15px 0;
    border-bottom: 1px solid #29484c;
    font-size: 14px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu .nav-menu__app {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 0 14px;
    border: 1px solid var(--amber-bright);
    background: var(--amber);
    color: var(--teal-950);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: 0;
    padding-top: 72px;
  }

  .hero__copy {
    max-width: 750px;
  }

  .hero h1 {
    font-size: clamp(70px, 12vw, 104px);
  }

  .routing-demo {
    width: min(100%, 700px);
    justify-self: center;
  }

  .section-heading--split,
  .section-heading--inside {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .echo-ledger {
    grid-template-columns: repeat(3, 1fr);
  }

  .echo-ledger aside {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto;
    min-height: 90px;
    align-items: center;
  }

  .echo-ledger aside {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .echo-ledger__number {
    font-size: 45px;
  }

  .workflow > li {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .workflow__specimen {
    grid-column: 2;
    width: min(100%, 410px);
  }

  .product-notes {
    grid-template-columns: 1fr;
  }

  .product-notes > li,
  .product-notes > li + li {
    padding: 18px 0;
    border-left: 0;
  }

  .product-notes > li + li {
    border-top: 1px solid var(--rule-dark);
  }

  .safety__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .safety__statement > p:not(.console-label) {
    max-width: 650px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .legal-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--rule);
  }

  .legal-index p {
    grid-column: 1 / -1;
  }

  .legal-index a:nth-child(even) {
    padding-right: 18px;
  }

  .legal-index a:nth-child(odd) {
    padding-left: 18px;
    border-left: 1px solid var(--rule);
  }
}

@media (max-width: 700px) {
  :root {
    --edge: 18px;
  }

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

  body {
    padding-bottom: calc(58px + var(--safe-bottom));
    font-size: 15px;
  }

  .signal-strip {
    display: none;
  }

  .site-nav__inner {
    min-height: 59px;
  }

  .brand__module {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .brand__copy strong {
    font-size: 19px;
  }

  .brand__copy small {
    display: none;
  }

  .mobile-open {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(58px + var(--safe-bottom));
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    padding-bottom: var(--safe-bottom);
    border-top: 1px solid #f3c976;
    background: var(--amber);
    color: var(--teal-950);
    font-family: var(--display);
    font-size: 17px;
    font-weight: 760;
    text-decoration: none;
    box-shadow: 0 -5px 0 rgba(7, 23, 25, 0.13);
  }

  .hero__grid {
    gap: 48px;
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .hero h1 {
    margin: 20px 0 20px;
    font-size: clamp(57px, 18vw, 76px);
    letter-spacing: -0.075em;
  }

  .hero__lede {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
  }

  .action {
    width: 100%;
    min-height: 50px;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    margin-top: 29px;
  }

  .hero__proof div,
  .hero__proof div + div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    padding: 10px 0;
    border-left: 0;
  }

  .hero__proof div + div {
    border-top: 1px solid #315257;
  }

  .hero__proof dd {
    margin: 0;
  }

  .routing-demo {
    box-shadow: 6px 6px 0 #061214;
  }

  .routing-demo__top {
    min-height: 70px;
    padding: 12px 14px;
  }

  .routing-demo__top .console-label {
    font-size: 9px;
  }

  .routing-demo__top h2 {
    font-size: 21px;
  }

  .routing-demo__status {
    font-size: 9px;
  }

  .routing-demo__board {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 18px 14px;
  }

  .source-stack {
    gap: 7px;
  }

  .source-record {
    min-height: 69px;
    grid-template-columns: 22px minmax(0, 1fr) 10px;
  }

  .source-record__index,
  .source-record strong {
    font-size: 9px;
  }

  .source-record div span {
    font-size: 13px;
  }

  .source-record small {
    font-size: 10px;
  }

  .route-lines {
    width: 100%;
    height: 62px;
  }

  .route-lines span {
    position: absolute;
    top: 0;
    width: 2px;
    height: 31px;
  }

  .route-lines span:first-child {
    left: 18%;
  }

  .route-lines span:nth-child(2) {
    left: 50%;
  }

  .route-lines span:nth-child(3) {
    right: 18%;
  }

  .route-lines span::after {
    top: 30px !important;
    bottom: auto !important;
    left: 0;
    display: block !important;
    width: auto;
    height: 2px;
    background: var(--amber);
  }

  .route-lines span:first-child::after {
    right: calc(-32vw + 18%);
  }

  .route-lines span:nth-child(2)::after {
    right: 0;
    left: 0;
  }

  .route-lines span:nth-child(3)::after {
    right: 0;
    left: calc(-32vw + 18%);
  }

  .route-lines > i {
    top: 30px;
    right: 50%;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 32px;
  }

  .route-lines > i::before {
    top: -4px;
    left: -4px;
  }

  .clean-record {
    min-height: 285px;
  }

  .clean-record__tab,
  .clean-record__identity small,
  .clean-record__values p > span,
  .clean-record__values p > small {
    font-size: 9px;
  }

  .clean-record__values p > strong {
    font-size: 12.5px;
  }

  .routing-demo__foot {
    display: grid;
    gap: 8px;
    padding: 12px 14px 15px;
  }

  .routing-demo__foot button {
    min-height: 38px;
    width: 100%;
  }

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

  .limits__grid > div,
  .limits__grid > div + div {
    min-height: 84px;
    padding: 14px 0;
    border-left: 0;
  }

  .limits__grid > div + div {
    border-top: 1px solid rgba(35, 25, 10, 0.4);
  }

  .problem,
  .inside,
  .founder,
  .faq {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(39px, 13vw, 56px);
  }

  .section-heading > p {
    font-size: 15px;
  }

  .echo-ledger {
    grid-template-columns: 1fr;
  }

  .echo-ledger > *,
  .echo-ledger > * + * {
    min-height: 118px;
    padding: 16px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .echo-ledger > *:first-child {
    border-top: 0;
  }

  .echo-ledger aside {
    grid-template-columns: auto 1fr;
  }

  .echo-ledger aside small {
    grid-column: 2;
  }

  .workflow {
    margin-top: 65px;
  }

  .workflow > li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 29px 0 35px;
  }

  .workflow__index {
    font-size: 30px;
  }

  .workflow__copy h3 {
    font-size: 29px;
  }

  .workflow__specimen {
    grid-column: 1 / -1;
    width: 100%;
  }

  .product-capture {
    box-shadow: 5px 5px 0 rgba(7, 23, 25, 0.24);
  }

  .product-capture__bar {
    min-height: 38px;
    padding-inline: 11px;
  }

  .product-capture__bar span:last-child {
    display: none;
  }

  .product-capture picture {
    aspect-ratio: 390 / 844;
  }

  .product-capture figcaption {
    align-items: flex-start;
    padding: 14px 12px;
  }

  .product-capture figcaption > span {
    display: grid;
  }

  .product-notes {
    margin-top: 32px;
  }

  .safety {
    padding: 78px 0;
  }

  .safety h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .safety__grid {
    gap: 48px;
  }

  .never-list li {
    grid-template-columns: 30px 1fr;
  }

  .safety-ledger {
    grid-template-columns: 1fr;
  }

  .safety-ledger div,
  .safety-ledger div:nth-child(3) {
    border-top: 1px solid #415f60;
    border-left: 0;
  }

  .safety-ledger div:first-child {
    border-top: 0;
  }

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

  .founder__stamp {
    position: static;
    width: 116px;
  }

  .founder__stamp strong {
    font-size: 25px;
  }

  .founder__stamp small {
    max-width: 80px;
    font-size: 6px;
  }

  .founder__note {
    padding: 31px 23px 35px;
    box-shadow: 5px 5px 0 rgba(16, 32, 31, 0.16);
  }

  .founder h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .founder__note > p:not(.folio-label, .founder__signature) {
    font-size: 15px;
  }

  .founder__signature {
    display: grid;
    gap: 6px;
  }

  .founder__signature span {
    display: none;
  }

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

  .faq__grid > div,
  .faq__grid > div:nth-child(even) {
    padding: 23px 0;
    border-left: 0;
  }

  .final-route {
    padding: 72px 0;
  }

  .final-route__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-route h2 {
    font-size: clamp(42px, 13vw, 59px);
  }

  .final-route__grid > ul {
    grid-column: 1;
    display: grid;
  }

  .site-footer {
    padding: 42px 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer__meta {
    justify-items: start;
  }

  .legal-hero {
    padding: 65px 0;
  }

  .legal-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-hero h1 {
    font-size: clamp(53px, 17vw, 76px);
  }

  .legal-hero__lede {
    font-size: 16px;
  }

  .legal-updated {
    width: max-content;
  }

  .legal-main {
    padding: 58px 0 72px;
  }

  .legal-grid {
    gap: 42px;
  }

  .legal-index {
    grid-template-columns: 1fr;
  }

  .legal-index a:nth-child(even),
  .legal-index a:nth-child(odd) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .legal-section {
    padding-bottom: 35px;
  }

  .legal-section + .legal-section {
    padding-top: 35px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }

  .legal-callout {
    padding: 20px 20px 20px 48px;
  }
}

@media (max-width: 380px) {
  .routing-demo__status {
    display: none;
  }

  .product-capture figcaption {
    display: grid;
  }

  .source-record div span {
    font-size: 13px;
  }

  .clean-record {
    padding-right: 12px;
    padding-left: 12px;
  }

  .clean-record__values p {
    grid-template-columns: 43px minmax(0, 1fr);
  }
}

@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;
  }
}
