:root {
  --porcelain: #eef2ef;
  --paper: #f8f9f6;
  --paper-strong: #fcfcfa;
  --ink: #17232a;
  --muted: #667679;
  --muted-light: #8b9a9c;
  --teal: #3b9188;
  --teal-dark: #205a59;
  --teal-soft: #d8e9e3;
  --line: #cbd5d1;
  --line-soft: #dce3e0;
  --blue: #173341;
  --blue-light: #254a57;
  --white: #f7faf7;
  --shadow-sm: 0 9px 26px rgba(27, 50, 55, 0.07);
  --shadow-md: 0 22px 62px rgba(23, 49, 55, 0.13);
  --page-width: 1120px;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-overlay {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 5px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
}

.announcement {
  height: 40px;
  color: #bad0cc;
  background: var(--blue);
  font: 10px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.025em;
}

.announcement__inner {
  display: flex;
  width: min(var(--page-width), calc(100% - 48px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.announcement__message {
  display: flex;
  align-items: center;
  gap: 9px;
}

.announcement__message strong {
  color: #edf6f2;
  font-weight: 500;
}

.announcement__mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #74c5b4;
  box-shadow: 0 0 0 4px rgba(116, 197, 180, 0.12);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c0ded7;
  transition: color 0.2s ease;
}

.announcement a:hover {
  color: #fff;
}

.navigation-wrap {
  position: relative;
  width: min(var(--page-width), calc(100% - 48px));
  margin: 24px auto 0;
}

.navigation {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 68px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 10px 13px 10px 20px;
  border: 1px solid rgba(185, 199, 194, 0.75);
  border-radius: 8px;
  background: rgba(249, 250, 247, 0.86);
  box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand__logo {
  display: block;
  width: 70px;
  height: 32px;
}

.brand__mark {
  display: flex;
  width: 23px;
  height: 23px;
  align-items: center;
  gap: 2px;
}

.brand__mark i {
  display: block;
  width: 5px;
  height: 16px;
  background: var(--teal-dark);
  transform: skew(-20deg);
}

.brand__mark i:nth-child(2) {
  height: 22px;
  background: var(--teal);
}

.brand__mark i:nth-child(3) {
  height: 11px;
  background: #92bbb2;
}

.navigation__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 31px);
  color: #526468;
  font-size: 11px;
  white-space: nowrap;
}

.navigation__links > a,
.navigation__trigger {
  padding: 10px 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.navigation__links > a:hover,
.navigation__trigger:hover,
.navigation__trigger[aria-expanded="true"] {
  color: var(--teal-dark);
}

.navigation__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.navigation__trigger svg {
  width: 12px;
  transition: transform 0.22s ease;
}

.navigation__trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.navigation__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.008em;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.button svg {
  width: 15px;
  height: 15px;
}

.button:hover {
  transform: translateY(-2px);
}

.button--compact {
  min-height: 42px;
  padding: 0 16px;
  font-size: 11px;
}

.button--dark {
  color: #f3f8f5;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(23, 51, 65, 0.14);
}

.button--dark:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(32, 90, 89, 0.22);
}

.button--outline {
  color: var(--ink);
  border-color: #90a29e;
  background: rgba(252, 253, 250, 0.58);
}

.button--outline:hover,
.button--light:hover {
  border-color: #84aaa2;
  background: #e5efeb;
}

.button--light {
  color: var(--teal-dark);
  border-color: rgba(140, 167, 161, 0.7);
  background: rgba(249, 251, 248, 0.45);
}

.navigation__mobile-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  z-index: 1;
  top: 76px;
  right: 0;
  left: 0;
  display: grid;
  min-height: 350px;
  grid-template-columns: 29% 71%;
  overflow: hidden;
  border: 1px solid rgba(188, 201, 196, 0.86);
  border-radius: 8px;
  background: rgba(248, 249, 245, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
  animation: menu-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mega-menu__rail {
  padding: 26px 21px 21px;
  border-right: 1px solid var(--line-soft);
  background: rgba(247, 249, 246, 0.82);
}

.mega-menu__eyebrow {
  margin: 0 8px 16px;
  color: #637573;
  font: 9px/1.2 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.13em;
}

.mega-menu__tabs {
  display: grid;
  gap: 3px;
}

.mega-menu__tabs button {
  display: flex;
  width: 100%;
  min-height: 63px;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 10px 10px 10px 12px;
  border-radius: 5px;
  color: #445658;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.mega-menu__tabs button:hover,
.mega-menu__tabs button[aria-selected="true"] {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 5px 18px rgba(30, 54, 57, 0.055);
}

.mega-menu__tabs button[aria-selected="true"] {
  box-shadow: inset 2px 0 var(--teal), 0 5px 18px rgba(30, 54, 57, 0.055);
}

.mega-menu__tabs button > span {
  display: grid;
  gap: 5px;
}

.mega-menu__tabs strong {
  font-size: 12px;
  font-weight: 600;
}

.mega-menu__tabs small {
  color: #7a8989;
  font-size: 9.5px;
  line-height: 1.35;
}

.mega-menu__tabs svg {
  width: 13px;
  flex: 0 0 auto;
  color: #71847f;
}

.mega-menu__content {
  min-width: 0;
  padding: 20px 25px 26px;
}

.mega-menu__topline {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 0 12px 0 14px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  color: #34484b;
  font-size: 11px;
}

.mega-menu__topline a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 600;
}

.mega-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  animation: panel-in 0.28s ease both;
}

.mega-panel > div {
  display: grid;
  align-content: start;
  gap: 3px;
}

.mega-panel > div > span {
  margin: 0 0 10px;
  color: #71827f;
  font: 8.5px/1.2 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.11em;
}

.mega-panel a {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 9px 8px;
  border-radius: 4px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.mega-panel a:hover {
  color: var(--teal-dark);
  background: rgba(222, 236, 231, 0.52);
}

.mega-panel strong {
  font-size: 11px;
  font-weight: 600;
}

.mega-panel small {
  color: #778684;
  font-size: 9.5px;
  line-height: 1.42;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 224px max(6vw, 44px) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 32%, rgba(122, 195, 180, 0.28), transparent 23%),
    radial-gradient(circle at 92% 7%, rgba(168, 209, 207, 0.34), transparent 28%),
    radial-gradient(circle at 25% 88%, rgba(213, 228, 219, 0.58), transparent 32%),
    var(--porcelain);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(92, 125, 121, 0.45) 0.55px, transparent 0.55px);
  background-position: 0 0;
  background-size: 15px 15px;
  content: "";
  opacity: 0.2;
  mask-image: linear-gradient(110deg, transparent 8%, #000 74%);
  animation: grid-drift 24s linear infinite;
}

.hero__wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.hero__wash--one {
  top: 84px;
  right: 19%;
  width: 420px;
  height: 420px;
  background: rgba(139, 208, 192, 0.11);
  animation: wash-float 9s ease-in-out infinite;
}

.hero__wash--two {
  right: -90px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(84, 148, 138, 0.12);
  animation: wash-float 12s 2s ease-in-out infinite reverse;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--page-width);
  margin: 0 auto;
  animation: hero-in 0.9s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0;
  color: var(--teal-dark);
  font: 500 10px/1.4 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.17em;
}

.hero h1 {
  max-width: 700px;
  margin: 23px 0 27px;
  color: #152630;
  font-size: clamp(60px, 7.8vw, 106px);
  font-weight: 600;
  letter-spacing: -0.067em;
  line-height: 0.9;
}

.hero h1 em,
.ledger h2 em,
.method h2 em,
.closing h2 em,
.contact-drawer h2 em {
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero__lede {
  max-width: 420px;
  margin: 0;
  color: #5b6c6e;
  font-size: 15px;
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}

.evidence-orbit {
  position: absolute;
  z-index: 1;
  top: 245px;
  right: max(6vw, calc((100vw - var(--page-width)) / 2));
  width: 400px;
  height: 400px;
  border-radius: 50%;
  animation: orbit-in 1.1s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.evidence-orbit__grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(68, 128, 124, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 128, 124, 0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle, #000 15%, transparent 70%);
}

.evidence-orbit__flows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.evidence-orbit__flow,
.evidence-orbit__flow-trace {
  fill: none;
  stroke-linecap: round;
}

.evidence-orbit__flow {
  stroke: rgba(38, 127, 120, 0.68);
  stroke-width: 1.65;
  stroke-dasharray: 3 12;
  animation: flow-travel 6.8s linear infinite;
}

.evidence-orbit__flow-trace {
  stroke: rgba(37, 88, 105, 0.16);
  stroke-width: 0.9;
}

.evidence-orbit__flow--two {
  stroke: rgba(75, 157, 143, 0.57);
  stroke-dasharray: 2 14;
  animation-delay: -1.8s;
  animation-duration: 8.2s;
}

.evidence-orbit__flow--three {
  stroke: rgba(37, 88, 105, 0.52);
  stroke-dasharray: 3 16;
  animation-delay: -4.2s;
  animation-duration: 7.4s;
}

.evidence-orbit__flow--four {
  stroke: rgba(85, 165, 151, 0.5);
  stroke-dasharray: 2 13;
  animation-delay: -2.6s;
  animation-duration: 9.1s;
}

.evidence-orbit__ring {
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(52, 132, 126, 0.27);
  border-radius: 50%;
  transform: rotate(37deg) scaleY(0.55);
  animation: orbit-rotate 19s linear infinite;
}

.evidence-orbit__ring--two {
  inset: 72px;
  border-color: rgba(47, 92, 111, 0.22);
  transform: rotate(-45deg) scaleY(0.55);
  animation-direction: reverse;
  animation-duration: 27s;
}

.evidence-orbit__ring--three {
  inset: 105px 48px;
  border-color: rgba(90, 155, 144, 0.16);
  transform: rotate(76deg) scaleY(0.38);
  animation-duration: 34s;
}

.evidence-orbit__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.6;
  transform-origin: left center;
  animation: line-glow 3.6s ease-in-out infinite;
}

.evidence-orbit__line--one {
  top: 182px;
  left: 92px;
  width: 215px;
  transform: rotate(-42deg);
}

.evidence-orbit__line--two {
  top: 201px;
  left: 198px;
  width: 188px;
  transform: rotate(29deg);
  animation-delay: 0.9s;
}

.evidence-orbit__line--three {
  top: 222px;
  left: 144px;
  width: 158px;
  background: linear-gradient(90deg, transparent, #738f9a, transparent);
  transform: rotate(100deg);
  animation-delay: 1.6s;
}

.evidence-orbit__pulse {
  position: absolute;
  top: 136px;
  left: 136px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(74, 150, 139, 0.25);
  border-radius: 50%;
  animation: orbit-pulse 3.6s ease-out infinite;
}

.evidence-orbit__pulse--two {
  animation-delay: 1.8s;
}

.evidence-orbit__core,
.evidence-orbit__node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid #79aaa1;
  border-radius: 50%;
}

.evidence-orbit__core {
  top: 162px;
  left: 162px;
  width: 76px;
  height: 76px;
  color: #a8d6cb;
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(74, 137, 130, 0.11), 0 16px 38px rgba(24, 59, 65, 0.22);
  font: 600 11px/1 "DM Mono", ui-monospace, monospace;
}

.evidence-orbit__node {
  width: 28px;
  height: 28px;
  background: rgba(230, 243, 238, 0.9);
  box-shadow: 0 0 0 7px rgba(111, 174, 162, 0.09);
  animation: node-float 4s ease-in-out infinite;
}

.evidence-orbit__node i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.evidence-orbit__node small {
  position: absolute;
  top: -18px;
  color: #66817d;
  font: 9px/1 "DM Mono", ui-monospace, monospace;
}

.evidence-orbit__node--one {
  top: 106px;
  left: 63px;
  animation-delay: 0.2s;
}

.evidence-orbit__node--two {
  top: 135px;
  right: 49px;
  animation-delay: 1s;
}

.evidence-orbit__node--three {
  bottom: 35px;
  left: 113px;
  animation-delay: 1.7s;
}

.evidence-orbit__node--four {
  right: 86px;
  bottom: 70px;
  animation-delay: 2.4s;
}

.evidence-orbit__caption {
  position: absolute;
  bottom: -1px;
  left: 110px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #70827f;
  font: 9px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.evidence-orbit__caption > i {
  width: 6px;
  height: 6px;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.evidence-orbit__caption strong {
  color: var(--teal-dark);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: max(6vw, calc((100vw - var(--page-width)) / 2));
  display: flex;
  align-items: center;
  gap: 11px;
  color: #70817f;
  font: 9px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll svg {
  width: 13px;
  animation: arrow-drift 2.4s ease-in-out infinite;
}

.capability-strip {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: var(--page-width);
  grid-template-columns: 1.15fr repeat(3, 1fr);
  margin: -1px auto 0;
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(250, 251, 248, 0.98);
  box-shadow: 0 10px 30px rgba(33, 56, 59, 0.035);
}

.capability-strip > * {
  min-height: 98px;
  margin: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.capability-strip > *:last-child {
  border-right: 0;
}

.capability-strip > p {
  color: #687a7a;
  font: 10px/1.55 "DM Mono", ui-monospace, monospace;
}

.capability-strip > div {
  display: grid;
  align-content: center;
  gap: 6px;
}

.capability-strip strong {
  color: var(--blue);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.capability-strip span {
  color: #748383;
  font-size: 10px;
}

.signal-marquee {
  max-width: var(--page-width);
  overflow: hidden;
  margin: 54px auto 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.signal-marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  color: #778987;
  font: 9px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.14em;
  animation: marquee 30s linear infinite;
}

.signal-marquee i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #83aaa2;
}

.section {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 145px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 60px;
}

.section-heading h2,
.identity h2,
.method h2 {
  margin: 0;
  color: #1b2b32;
  font-size: clamp(42px, 5vw, 67px);
  font-weight: 600;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.section-heading > div > p {
  max-width: 510px;
  margin: 27px 0 0;
  color: #667779;
  font-size: 17px;
  line-height: 1.62;
}

.decision-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-flow article {
  position: relative;
  min-height: 315px;
  padding: 25px 27px 24px;
  border-right: 1px solid var(--line);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.decision-flow article:first-child {
  padding-left: 0;
}

.decision-flow article:last-child {
  border-right: 0;
}

.decision-flow article:hover {
  background: rgba(226, 237, 233, 0.44);
  transform: translateY(-5px);
}

.decision-flow article > span,
.decision-flow article > small {
  color: var(--teal-dark);
  font: 9px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.decision-flow article > small {
  position: absolute;
  bottom: 24px;
  left: 27px;
  color: #839390;
}

.decision-flow article:first-child > small {
  left: 0;
}

.decision-flow h3 {
  margin: 29px 0 12px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.decision-flow p {
  max-width: 220px;
  margin: 0;
  color: #718081;
  font-size: 12px;
  line-height: 1.6;
}

.decision-flow__icon {
  position: relative;
  width: 52px;
  height: 52px;
  margin-top: 38px;
  border: 1px solid #aac5bf;
  border-radius: 50%;
}

.decision-flow__icon i {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.decision-flow__icon i:nth-child(1) {
  left: 10px;
}

.decision-flow__icon i:nth-child(2) {
  left: 22px;
}

.decision-flow__icon i:nth-child(3) {
  left: 34px;
}

.decision-flow__icon--context i {
  top: auto;
  transform: none;
}

.decision-flow__icon--context i:nth-child(1) {
  top: 10px;
  left: 22px;
}

.decision-flow__icon--context i:nth-child(2) {
  top: 30px;
  left: 11px;
}

.decision-flow__icon--context i:nth-child(3) {
  top: 30px;
  left: 33px;
}

.decision-flow__icon--decision {
  border-radius: 5px;
  transform: rotate(45deg);
}

.decision-flow__icon--decision i:nth-child(1) {
  top: 17px;
  left: 17px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--teal);
  background: transparent;
}

.decision-flow__icon--decision i:nth-child(2) {
  top: 25px;
  left: 25px;
  width: 4px;
  height: 4px;
}

.decision-flow__icon--evidence {
  border: 0;
  border-radius: 0;
}

.decision-flow__icon--evidence i {
  width: 22px;
  height: 1px;
  border-radius: 0;
}

.decision-flow__icon--evidence i:nth-child(1) {
  top: 11px;
  left: 5px;
}

.decision-flow__icon--evidence i:nth-child(2) {
  top: 22px;
  left: 12px;
}

.decision-flow__icon--evidence i:nth-child(3) {
  top: 33px;
  left: 19px;
}

.decision-flow__icon--evidence i:nth-child(4) {
  top: 44px;
  left: 26px;
}

.ledger {
  position: relative;
  overflow: hidden;
  color: #dfeae6;
  background:
    radial-gradient(circle at 75% 40%, rgba(67, 136, 126, 0.17), transparent 24%),
    var(--blue);
}

.ledger__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(108, 161, 155, 0.17) 1px, transparent 1px),
    linear-gradient(rgba(108, 161, 155, 0.17) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.36;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.ledger__inner {
  position: relative;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 145px 0;
}

.eyebrow--light {
  color: #8fc5b8;
}

.ledger h2 {
  max-width: 780px;
  margin: 22px 0 0;
  color: #edf4f0;
  font-size: clamp(45px, 5.6vw, 74px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.ledger__body {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 92px;
  margin-top: 82px;
}

.ledger__copy {
  max-width: 410px;
  margin: 0;
  color: #a8bdb9;
  font-size: 15px;
  line-height: 1.7;
}

.ledger-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(172, 205, 197, 0.26);
  border-radius: 6px;
  background: rgba(14, 39, 47, 0.5);
  box-shadow: 0 26px 60px rgba(7, 23, 29, 0.18);
  backdrop-filter: blur(8px);
}

.ledger-card__header {
  display: flex;
  height: 49px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(172, 205, 197, 0.22);
  color: #90aaa5;
  font: 9px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.09em;
}

.ledger-card__header span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ledger-card__header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #75bfae;
  box-shadow: 0 0 0 4px rgba(117, 191, 174, 0.1);
}

.ledger-card__header b {
  color: #7fc2b3;
  font-weight: 500;
}

.ledger-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ledger-card li {
  display: grid;
  min-height: 64px;
  grid-template-columns: 34px 1fr auto 20px;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(172, 205, 197, 0.16);
}

.ledger-card li:last-child {
  border-bottom: 0;
}

.ledger-card li > span {
  color: #728e89;
  font: 9px/1 "DM Mono", ui-monospace, monospace;
}

.ledger-card li > strong {
  color: #cedbd7;
  font-size: 12px;
  font-weight: 500;
}

.ledger-card li > small {
  color: #758f8b;
  font: 8.5px/1 "DM Mono", ui-monospace, monospace;
}

.ledger-card li > i {
  color: #7fc2b3;
  font-style: normal;
  font-size: 12px;
}

.ledger-card__scan {
  position: absolute;
  right: 0;
  left: 0;
  height: 45px;
  background: linear-gradient(180deg, transparent, rgba(117, 191, 174, 0.08), transparent);
  animation: ledger-scan 5s ease-in-out infinite;
}

.identity {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 100px;
}

.identity-visual {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid #b7cbc4;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 45%, rgba(166, 211, 199, 0.5), transparent 34%),
    #e3ebe7;
}

.identity-visual__plane {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85, 141, 132, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 141, 132, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.identity-visual__diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #68a89c;
  transform: translate(-50%, -50%) rotate(45deg);
}

.identity-visual__diamond--outer {
  width: 258px;
  height: 258px;
  box-shadow: 0 0 0 22px rgba(89, 156, 145, 0.07), inset 0 0 0 26px rgba(92, 166, 153, 0.045);
  animation: diamond-breathe 5s ease-in-out infinite;
}

.identity-visual__diamond--inner {
  width: 138px;
  height: 138px;
  border-style: dashed;
  border-color: rgba(61, 133, 123, 0.65);
  animation: diamond-turn 24s linear infinite;
}

.identity-visual__token {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 50%;
  color: #a7d4c6;
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(48, 115, 107, 0.12), 0 17px 36px rgba(31, 73, 75, 0.2);
  transform: translate(-50%, -50%);
}

.identity-visual__token span {
  font: 8px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.identity-visual__token strong {
  font: 500 12px/1 "DM Mono", ui-monospace, monospace;
}

.identity-visual__label {
  position: absolute;
  color: #607f79;
  font: 8px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.identity-visual__label--one {
  bottom: 22px;
  left: 24px;
}

.identity-visual__label--two {
  right: 24px;
  bottom: 22px;
}

.identity__copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 25px 0 0;
  color: #657676;
  font-size: 15px;
  line-height: 1.68;
}

.identity__copy h2 {
  margin-top: 17px;
  font-size: clamp(40px, 4.4vw, 58px);
}

.identity__copy ul {
  display: grid;
  gap: 0;
  margin: 33px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.identity__copy li {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: #4f6665;
  font-size: 12px;
}

.identity__copy li span {
  color: var(--teal-dark);
  font: 9px/1 "DM Mono", ui-monospace, monospace;
}

.method {
  padding-top: 50px;
}

.method__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.method__heading h2 {
  margin-top: 17px;
}

.method__heading > p {
  margin: 0;
  color: #778987;
  font: 9px/1.5 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.method__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid var(--line);
}

.method__steps article {
  min-height: 242px;
  padding: 27px 29px 10px 0;
  border-right: 1px solid var(--line);
}

.method__steps article:not(:first-child) {
  padding-left: 29px;
}

.method__steps article:last-child {
  border-right: 0;
}

.method__steps span {
  color: var(--teal-dark);
  font: 10px/1 "DM Mono", ui-monospace, monospace;
}

.method__steps h3 {
  margin: 47px 0 12px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.method__steps p {
  max-width: 265px;
  margin: 0;
  color: #718081;
  font-size: 12px;
  line-height: 1.62;
}

.closing {
  position: relative;
  padding: 145px max(6vw, 44px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 24% 30%, rgba(111, 181, 167, 0.21), transparent 24%),
    linear-gradient(126deg, #cfe2dc, #e9efeb 56%, #dce8e3);
}

.closing__glow {
  position: absolute;
  top: -110px;
  left: 50%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(68, 143, 132, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: closing-glow 8s ease-in-out infinite;
}

.closing > *:not(.closing__glow) {
  position: relative;
}

.closing h2 {
  max-width: 760px;
  margin: 21px auto 29px;
  font-size: clamp(52px, 6.5vw, 84px);
  font-weight: 600;
  letter-spacing: -0.066em;
  line-height: 0.91;
}

.closing > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 auto;
  color: #617775;
  font-size: 14px;
  line-height: 1.6;
}

.closing__actions {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 31px;
}

.footer {
  padding: 65px max(6vw, 44px) 30px;
  color: #a8bcba;
  background: #132b36;
}

.footer__top,
.footer__bottom {
  max-width: var(--page-width);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.brand--inverse {
  align-self: start;
}

.brand--inverse .brand__logo {
  filter: brightness(0) invert(1);
}

.footer__links {
  display: flex;
  gap: 80px;
}

.footer__links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer__links span {
  margin-bottom: 3px;
  color: #6f8b87;
  font: 8px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.footer__links a,
.footer__links button {
  padding: 0;
  color: #9db3b0;
  background: transparent;
  font-size: 11px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links button:hover {
  color: #e8f2ed;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 18px;
  border-top: 1px solid rgba(177, 207, 200, 0.18);
  color: #718987;
  font: 8.5px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
}

.drawer-layer {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: flex;
  justify-content: flex-end;
}

.drawer-layer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 31, 38, 0.52);
  cursor: default;
  backdrop-filter: blur(6px);
  animation: fade-in 0.25s ease both;
}

.mobile-drawer,
.contact-drawer {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  height: 100%;
  overflow-y: auto;
  color: var(--ink);
  background: #f6f8f4;
  box-shadow: -24px 0 70px rgba(11, 31, 37, 0.2);
  animation: drawer-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-drawer {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.mobile-drawer__header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-soft);
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 4px;
  color: #526b6b;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.icon-button:hover {
  background: #e1ebe7;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.mobile-drawer__body {
  padding: 29px 22px;
}

.mobile-drawer__label {
  margin: 0 0 18px;
  color: #768784;
  font: 9px/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.13em;
}

.mobile-product-toggle,
.mobile-drawer__link {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-align: left;
  cursor: pointer;
}

.mobile-product-toggle svg {
  width: 15px;
  transition: transform 0.2s ease;
}

.mobile-product-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-products {
  display: grid;
  gap: 3px;
  padding: 8px 0 13px;
  border-bottom: 1px solid var(--line);
}

.mobile-products a {
  display: grid;
  gap: 5px;
  padding: 13px 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.45);
}

.mobile-products strong {
  font-size: 12px;
  font-weight: 600;
}

.mobile-products span {
  color: #758482;
  font-size: 10px;
}

.mobile-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 18px 22px 24px;
  border-top: 1px solid var(--line-soft);
}

.contact-drawer {
  padding: 78px 48px 45px;
}

.contact-drawer__close {
  position: absolute;
  top: 24px;
  right: 24px;
}

.contact-drawer h2 {
  margin: 18px 0 19px;
  font-size: 47px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.contact-drawer > p:not(.eyebrow) {
  max-width: 380px;
  margin: 0 0 34px;
  color: #6a7c7a;
  font-size: 13px;
  line-height: 1.58;
}

.contact-drawer form {
  display: grid;
  gap: 18px;
}

.contact-drawer label {
  display: grid;
  gap: 8px;
  color: #59716e;
  font: 9px/1.2 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-drawer input,
.contact-drawer textarea {
  width: 100%;
  border: 1px solid #bdcdc7;
  border-radius: 4px;
  outline: none;
  color: var(--ink);
  background: #fbfcfa;
  font: 13px/1.4 "DM Sans", ui-sans-serif, sans-serif;
  text-transform: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-drawer input {
  height: 46px;
  padding: 0 12px;
}

.contact-drawer textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

.contact-drawer input:focus,
.contact-drawer textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(59, 145, 136, 0.12);
}

.contact-drawer input[aria-invalid="true"],
.contact-drawer textarea[aria-invalid="true"] {
  border-color: #ae6d62;
  box-shadow: 0 0 0 3px rgba(174, 109, 98, 0.1);
}

.contact-drawer form .button {
  width: 100%;
  margin-top: 3px;
}

.form-status {
  min-height: 17px;
  margin: -4px 0 0;
  color: #657875;
  font-size: 10px;
  line-height: 1.5;
}

.form-status.is-error {
  color: #9a574e;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawer-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-in {
  from {
    opacity: 0;
    transform: scale(0.86) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes orbit-rotate {
  to { rotate: 360deg; }
}

@keyframes flow-travel {
  to { stroke-dashoffset: -180; }
}

@keyframes orbit-pulse {
  0% {
    opacity: 0.65;
    transform: scale(0.55);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

@keyframes line-glow {
  0%,
  100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

@keyframes node-float {
  0%,
  100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 0 3px rgba(112, 194, 175, 0.1);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(112, 194, 175, 0.2);
  }
}

@keyframes grid-drift {
  to { background-position: 45px 25px; }
}

@keyframes wash-float {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -13px, 0) scale(1.05); }
}

@keyframes arrow-drift {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes ledger-scan {
  0% { top: -55px; }
  55%,
  100% { top: calc(100% + 10px); }
}

@keyframes diamond-breathe {
  0%,
  100% { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(45deg) scale(1.035); }
}

@keyframes diamond-turn {
  to { transform: translate(-50%, -50%) rotate(405deg); }
}

@keyframes closing-glow {
  0%,
  100% { transform: translateX(-50%) scale(0.86); opacity: 0.35; }
  50% { transform: translateX(-50%) scale(1.12); opacity: 0.8; }
}

@media (max-width: 1050px) {
  .navigation {
    gap: 26px;
  }

  .navigation__links {
    gap: 18px;
  }

  .navigation__links > a:nth-of-type(3) {
    display: none;
  }

  .hero h1 {
    max-width: 610px;
  }

  .evidence-orbit {
    right: 2vw;
    opacity: 0.84;
  }

  .section,
  .ledger__inner {
    width: calc(100% - 64px);
  }

  .identity {
    gap: 64px;
  }
}

@media (max-width: 820px) {
  .announcement {
    height: 36px;
  }

  .announcement__inner {
    width: calc(100% - 28px);
  }

  .announcement__detail {
    display: none;
  }

  .announcement a {
    font-size: 0;
  }

  .announcement a svg {
    width: 15px;
    height: 15px;
  }

  .navigation-wrap {
    width: calc(100% - 28px);
    margin-top: 14px;
  }

  .navigation {
    min-height: 58px;
    grid-template-columns: auto 1fr auto;
    padding: 8px 10px 8px 15px;
  }

  .navigation__links,
  .navigation__actions {
    display: none;
  }

  .navigation__mobile-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 6px;
    border-radius: 4px;
    color: var(--blue);
    background: transparent;
    cursor: pointer;
  }

  .navigation__mobile-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .mega-menu {
    display: none;
  }

  .hero {
    min-height: 770px;
    padding: 160px 24px 70px;
  }

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

  .hero__lede {
    max-width: 350px;
    font-size: 14px;
  }

  .evidence-orbit {
    top: auto;
    right: -18px;
    bottom: 45px;
    width: 290px;
    height: 290px;
    opacity: 0.78;
  }

  .evidence-orbit__ring {
    inset: 26px;
  }

  .evidence-orbit__ring--two {
    inset: 52px;
  }

  .evidence-orbit__ring--three {
    inset: 76px 35px;
  }

  .evidence-orbit__core {
    top: 116px;
    left: 116px;
    width: 58px;
    height: 58px;
  }

  .evidence-orbit__line--one {
    top: 132px;
    left: 67px;
    width: 156px;
  }

  .evidence-orbit__line--two {
    top: 146px;
    left: 143px;
    width: 136px;
  }

  .evidence-orbit__line--three {
    top: 161px;
    left: 104px;
    width: 115px;
  }

  .evidence-orbit__pulse {
    top: 98px;
    left: 98px;
    width: 94px;
    height: 94px;
  }

  .evidence-orbit__node {
    width: 23px;
    height: 23px;
  }

  .evidence-orbit__node--one {
    top: 77px;
    left: 46px;
  }

  .evidence-orbit__node--two {
    top: 98px;
    right: 36px;
  }

  .evidence-orbit__node--three {
    bottom: 25px;
    left: 82px;
  }

  .evidence-orbit__node--four {
    right: 62px;
    bottom: 51px;
  }

  .evidence-orbit__caption {
    left: 80px;
    font-size: 7px;
  }

  .hero__scroll {
    display: none;
  }

  .capability-strip {
    grid-template-columns: 1fr 1fr;
    margin-right: 16px;
    margin-left: 16px;
  }

  .capability-strip > * {
    min-height: 94px;
    padding: 19px 17px;
  }

  .capability-strip > *:nth-child(2) {
    border-right: 0;
  }

  .capability-strip > *:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .signal-marquee {
    margin-right: 24px;
    margin-left: 24px;
  }

  .section,
  .ledger__inner {
    width: auto;
    padding: 95px 24px;
  }

  .section-heading,
  .ledger__body,
  .identity {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .decision-flow {
    grid-template-columns: 1fr 1fr;
    margin-top: 58px;
  }

  .decision-flow article,
  .decision-flow article:first-child {
    min-height: 285px;
    padding: 22px 21px;
  }

  .decision-flow article:nth-child(2) {
    border-right: 0;
  }

  .decision-flow article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .decision-flow article > small,
  .decision-flow article:first-child > small {
    bottom: 21px;
    left: 21px;
  }

  .ledger__body {
    margin-top: 60px;
  }

  .identity {
    gap: 50px;
  }

  .identity-visual {
    min-height: 360px;
  }

  .method {
    padding-top: 25px;
  }

  .method__heading {
    display: block;
  }

  .method__heading > p {
    margin-top: 24px;
  }

  .method__steps {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .method__steps article,
  .method__steps article:not(:first-child) {
    min-height: 190px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method__steps h3 {
    margin-top: 28px;
  }

  .closing {
    padding: 100px 24px;
  }

  .footer {
    padding: 48px 24px 27px;
  }

  .footer__top {
    display: block;
  }

  .footer__links {
    gap: 50px;
    margin-top: 46px;
  }

  .footer__bottom {
    display: grid;
    gap: 11px;
    margin-top: 55px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 780px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero__actions,
  .closing__actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 330px);
  }

  .hero__actions .button,
  .closing__actions .button {
    width: 100%;
  }

  .capability-strip strong {
    font-size: 14px;
  }

  .section-heading h2,
  .identity h2,
  .method h2 {
    font-size: 44px;
  }

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

  .decision-flow {
    grid-template-columns: 1fr;
  }

  .decision-flow article,
  .decision-flow article:first-child {
    min-height: 245px;
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .decision-flow article:first-child {
    border-top: 0;
  }

  .decision-flow article > small,
  .decision-flow article:first-child > small {
    left: 0;
  }

  .ledger-card li {
    grid-template-columns: 27px 1fr 18px;
  }

  .ledger-card li > small {
    display: none;
  }

  .identity-visual {
    min-height: 310px;
  }

  .identity-visual__diamond--outer {
    width: 205px;
    height: 205px;
  }

  .identity-visual__diamond--inner {
    width: 112px;
    height: 112px;
  }

  .identity-visual__label {
    font-size: 6.5px;
  }

  .footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-drawer__actions {
    grid-template-columns: 1fr;
  }

  .contact-drawer {
    padding: 74px 24px 40px;
  }

  .contact-drawer h2 {
    font-size: 43px;
  }
}

@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;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}