:root {
  --paper: #f5f6f2;
  --paper-deep: #e9ecf2;
  --paper-bright: #fbfcf8;
  --ink: #081124;
  --ink-soft: #4e586b;
  --navy: #0c1c5d;
  --blue: #315afa;
  --violet: #a63cfc;
  --rule: #d9dee8;
  --dark: #070d1d;
  --dark-soft: #10182b;
  --white: #ffffff;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--paper);
}

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

body,
button,
a {
  font-family: var(--font-sans);
}

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

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

button {
  color: inherit;
}

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

.logo-img {
  display: block;
  width: 100%;
  height: 100%;
  background: url("logo.png") center / contain no-repeat;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(49, 90, 250, 0.55);
  outline-offset: 4px;
}

.section-shell {
  width: min(100%, 1540px);
  margin-inline: auto;
  padding-inline: clamp(24px, 5.2vw, 84px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(245, 246, 242, 0.91);
  border-bottom: 1px solid rgba(8, 17, 36, 0.1);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1540px);
  min-height: 82px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5.2vw, 84px);
}

.brand-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
}

.brand__name {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 690;
  letter-spacing: -0.035em;
}

.brand__name span {
  color: var(--blue);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 42px);
  color: #394356;
  font-size: 0.84rem;
  font-weight: 650;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 11px;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease-out),
    box-shadow 220ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 16px 0 18px;
  background: var(--ink);
  color: var(--white);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(49, 90, 250, 0.22);
  transform: translateY(-2px);
}

.arrow {
  position: relative;
  display: inline-flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.arrow span {
  position: relative;
  width: 12px;
  height: 1px;
  background: currentColor;
  transition: transform 250ms var(--ease-out);
}

.arrow span::before,
.arrow span::after {
  position: absolute;
  right: -1px;
  width: 6px;
  height: 1px;
  background: currentColor;
  content: "";
}

.arrow span::before {
  top: -2px;
  transform: rotate(45deg);
}

.arrow span::after {
  bottom: -2px;
  transform: rotate(-45deg);
}

a:hover .arrow span,
a:focus-visible .arrow span {
  transform: translateX(3px);
}

.arrow--diagonal {
  transform: rotate(-45deg);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child {
  top: 19px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle--open span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle--open span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(100svh, 980px);
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 104px);
  overflow: clip;
  padding-top: 136px;
  padding-bottom: 72px;
}

.hero__ambient {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -14%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(49, 90, 250, 0.095), transparent 52%),
    radial-gradient(circle at 64% 38%, rgba(166, 60, 252, 0.07), transparent 35%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
  animation: hero-enter 900ms var(--ease-out) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.8vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow__signal {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(49, 90, 250, 0.1);
}

.hero h1 {
  max-width: 760px;
  margin: 29px 0 26px;
  color: var(--ink);
  font-size: clamp(3.35rem, 6.3vw, 6.85rem);
  font-weight: 630;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.hero h1 span {
  display: inline-block;
  /* line-height 0.94 shrinks the box below the glyphs; pad so background-clip
     still paints the descenders, and pull the layout back with the margin */
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
  background: linear-gradient(108deg, var(--navy) 8%, var(--blue) 55%, var(--violet));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero__lede {
  max-width: 625px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  letter-spacing: -0.025em;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 37px;
}

.button {
  min-height: 55px;
  padding: 0 21px 0 24px;
}

.button--primary {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: #303b4f;
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(4px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 0;
  margin-top: 47px;
  color: #60697a;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.trust-row span {
  display: flex;
  align-items: center;
}

.trust-row span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin-inline: 13px;
  border-radius: 50%;
  background: #9aa3b2;
  content: "";
}

.hero__visual {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  z-index: 1;
  perspective: 1200px;
  animation: visual-enter 1050ms 130ms var(--ease-out) both;
}

.workflow-panel {
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: 570px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    var(--dark);
  background-size: 31px 31px;
  box-shadow:
    0 42px 85px rgba(10, 18, 54, 0.24),
    0 8px 22px rgba(8, 17, 36, 0.13);
  color: var(--white);
  transform: rotateX(calc(var(--pointer-y) * -3deg)) rotateY(calc(var(--pointer-x) * 3deg));
  transition: transform 450ms var(--ease-out);
}

.workflow-panel::before {
  position: absolute;
  top: -25%;
  right: -15%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 90, 250, 0.15), transparent 68%);
  content: "";
  pointer-events: none;
}

.visual-shadow-card {
  position: absolute;
  z-index: 1;
  inset: 30px -20px -22px 32px;
  border: 1px solid rgba(12, 28, 93, 0.18);
  border-radius: 25px;
  background: #dfe3ee;
  transform: translate(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * -8px)) rotate(1.3deg);
  transition: transform 500ms var(--ease-out);
}

.visual-shadow-card--two {
  z-index: 0;
  inset: 52px -38px -38px 57px;
  background: #eaebef;
  transform: translate(calc(var(--pointer-x) * -13px), calc(var(--pointer-y) * -13px)) rotate(2.1deg);
}

.workflow-panel__header,
.workflow-panel__footer,
.resolved-record__top,
.source-document__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workflow-panel__header {
  position: relative;
  z-index: 1;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-panel__header > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.workflow-panel__header strong {
  font-size: 0.95rem;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.mono-label {
  color: #a6b1c4;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.live-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.035);
  color: #c9d1df;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52e6a7;
  box-shadow: 0 0 0 4px rgba(82, 230, 167, 0.1);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.document-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 17px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.document-tabs button {
  min-height: 39px;
  padding: 0 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #8e99ad;
  font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  font-weight: 680;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.document-tabs button:hover {
  color: var(--white);
}

.document-tabs button.is-active {
  background: #1b2740;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.workflow-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 300px;
  grid-template-columns: minmax(115px, 1fr) 38px 76px 38px minmax(150px, 1.25fr);
  align-items: center;
  padding-block: 24px 20px;
}

.source-document,
.resolved-record {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #10182b;
}

.source-document {
  min-height: 190px;
  padding: 15px;
  box-shadow: -9px 9px 0 rgba(255, 255, 255, 0.025);
}

.source-document__top {
  justify-content: flex-start;
  gap: 8px;
  color: #a3aec1;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
}

.file-fold {
  position: relative;
  display: block;
  width: 13px;
  height: 16px;
  border: 1px solid #59657c;
  border-radius: 2px;
}

.file-fold::after {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #59657c;
  border-left: 1px solid #59657c;
  background: #10182b;
  content: "";
}

.source-document > strong {
  display: block;
  overflow: hidden;
  margin: 20px 0 24px;
  color: #e9edf5;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-line {
  display: block;
  width: 72%;
  height: 4px;
  margin-bottom: 9px;
  overflow: hidden;
  border-radius: 3px;
  background: #273148;
}

.source-line::after {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(93, 121, 255, 0.55), transparent);
  content: "";
  animation: source-scan 3.2s ease-in-out infinite;
}

.source-line--wide {
  width: 88%;
}

.source-line--short {
  width: 48%;
}

.source-seal {
  position: absolute;
  right: 13px;
  bottom: 13px;
  color: #9aa6b8;
  font-family: var(--font-mono);
  font-size: 0.51rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.conduit-route {
  position: relative;
  height: 2px;
  overflow: hidden;
}

.conduit-route__line {
  position: absolute;
  inset: 0;
  background: rgba(84, 107, 171, 0.4);
}

.conduit-route__pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #4c73ff, #9d4df9, transparent);
  filter: drop-shadow(0 0 5px #315afa);
  animation: flow-pulse 2.25s linear infinite;
}

.conduit-route--second .conduit-route__pulse {
  animation-delay: 0.32s;
}

.control-node {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(83, 111, 255, 0.35);
  border-radius: 17px;
  background: radial-gradient(circle at 50% 45%, rgba(49, 90, 250, 0.13), transparent 67%), #0d1629;
  box-shadow: 0 0 28px rgba(49, 90, 250, 0.11);
}

.control-node__logo {
  width: 51px;
  height: 51px;
}

.control-node > span:last-child {
  color: #a5b0c2;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
}

.resolved-record {
  min-height: 225px;
  padding: 15px;
  background: #111c31;
  animation: record-enter 480ms var(--ease-out) both;
}

.resolved-record__top {
  margin-bottom: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #aab3c4;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 700;
  text-transform: uppercase;
}

.verified-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 7px;
  border: 1px solid rgba(82, 230, 167, 0.18);
  border-radius: 99px;
  background: rgba(82, 230, 167, 0.07);
  color: #76e8b3;
}

.verified-badge::before {
  margin-right: 4px;
  content: "✓";
}

.resolved-field {
  display: flex;
  min-height: 47px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.resolved-field:last-child {
  border-bottom: 0;
}

.resolved-field span {
  color: #9aa6bb;
  font-family: var(--font-mono);
  font-size: 0.49rem;
  text-transform: uppercase;
}

.resolved-field strong {
  overflow: hidden;
  color: #f1f4f9;
  font-size: clamp(0.68rem, 0.85vw, 0.79rem);
  font-weight: 620;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-panel__footer {
  position: relative;
  z-index: 1;
  min-height: 54px;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.review-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border: 1px solid rgba(187, 132, 255, 0.24);
  border-radius: 50%;
  background: rgba(166, 60, 252, 0.08);
  color: #c28fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
}

.workflow-panel__footer p {
  flex: 1;
  margin: 0;
  color: #a2adbf;
  font-size: 0.64rem;
  line-height: 1.45;
}

.workflow-panel__footer p strong {
  color: #c9d0de;
  font-weight: 650;
}

.document-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-bright);
}

.document-ribbon__track {
  display: flex;
  width: max-content;
  animation: ribbon-move 34s linear infinite;
}

.document-ribbon__track > div {
  display: flex;
  height: 68px;
  align-items: center;
  white-space: nowrap;
}

.document-ribbon span {
  color: #596376;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.document-ribbon i {
  width: 5px;
  height: 5px;
  margin-inline: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.services {
  padding-top: clamp(100px, 11vw, 170px);
  padding-bottom: clamp(105px, 12vw, 185px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(55px, 7vw, 96px);
}

.section-number {
  display: block;
  margin-bottom: 24px;
  color: #626d80;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-intro h2,
.approach__heading h2,
.proof__statement h2,
.principles__heading h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  font-weight: 610;
  letter-spacing: -0.062em;
  line-height: 1;
}

.section-intro h2 {
  max-width: 880px;
}

.section-intro > p {
  max-width: 450px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.service-card {
  position: relative;
  display: block;
  min-height: 415px;
  padding: clamp(30px, 4vw, 55px);
  overflow: hidden;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.14);
  transition:
    background-color 380ms ease,
    color 380ms ease,
    transform 380ms var(--ease-out),
    box-shadow 380ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 57%, rgba(49, 90, 250, 0.08) 57.2% 57.5%, transparent 57.7%),
    radial-gradient(circle at 90% 90%, rgba(166, 60, 252, 0.13), transparent 35%);
  content: "";
  opacity: 0;
  transition: opacity 380ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  z-index: 2;
  background: var(--ink);
  box-shadow: 0 28px 60px rgba(8, 17, 36, 0.16);
  color: var(--white);
  transform: translateY(-6px);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  opacity: 1;
}

.service-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__number {
  color: #6b7587;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 750;
}

.service-card__arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #cbd1dc;
  border-radius: 50%;
  color: #5a6476;
  font-size: 1rem;
  transition: border-color 300ms ease, color 300ms ease, transform 300ms var(--ease-out);
}

.service-card:hover .service-card__arrow,
.service-card:focus-visible .service-card__arrow {
  border-color: rgba(255, 255, 255, 0.23);
  color: var(--white);
  transform: rotate(45deg);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 73px 0 20px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 1.04;
  transition: color 350ms ease;
}

.service-card > p {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin: 0;
  color: #626d80;
  font-size: 0.98rem;
  line-height: 1.62;
  transition: color 350ms ease;
}

.service-card:hover h3,
.service-card:focus-visible h3 {
  color: var(--white);
}

.service-card:hover > p,
.service-card:focus-visible > p {
  color: #aeb7c8;
}

.service-card__detail {
  position: absolute;
  z-index: 1;
  right: clamp(30px, 4vw, 55px);
  bottom: 37px;
  left: clamp(30px, 4vw, 55px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #596477;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card__detail span {
  width: 19px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.approach {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.approach::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 85%);
}

.approach__halo {
  position: absolute;
  top: -390px;
  left: -240px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(88, 111, 255, 0.18);
  border-radius: 38%;
  box-shadow:
    0 0 0 100px rgba(49, 90, 250, 0.025),
    0 0 0 200px rgba(166, 60, 252, 0.018);
  transform: rotate(23deg);
}

.approach__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(70px, 10vw, 155px);
  padding-top: clamp(110px, 12vw, 185px);
  padding-bottom: clamp(110px, 13vw, 200px);
}

.section-number--dark {
  color: #77839a;
}

.approach__heading {
  align-self: start;
}

.approach__heading h2,
.contact h2 {
  color: var(--white);
}

.approach__heading h2 span {
  display: block;
  color: #77839a;
}

.approach__heading > p {
  max-width: 520px;
  margin: 32px 0 0;
  color: #98a3b7;
  font-size: 1rem;
  line-height: 1.7;
}

.process-route {
  position: relative;
}

.process-route__line {
  position: absolute;
  top: 26px;
  bottom: 27px;
  left: 25px;
  width: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.process-route__line span {
  position: absolute;
  top: -22%;
  left: 0;
  width: 1px;
  height: 22%;
  background: linear-gradient(to bottom, transparent, var(--blue), var(--violet), transparent);
  filter: drop-shadow(0 0 4px var(--blue));
  animation: route-sweep 4.6s linear infinite;
}

.process-step {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 52px 1fr;
  gap: 34px;
}

.process-step__marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: var(--dark);
  box-shadow: 0 0 0 7px var(--dark);
}

.process-step__marker::before {
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(49, 90, 250, 0.9), rgba(166, 60, 252, 0.2));
  content: "";
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms ease;
}

.process-step:hover .process-step__marker::before {
  opacity: 1;
}

.process-step__marker span {
  color: #8994a9;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
}

.process-step__content {
  padding: 4px 0 49px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.095);
}

.process-step:last-child .process-step__content {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-step__content h3 {
  margin: 12px 0 12px;
  color: #f2f4f8;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 590;
  letter-spacing: -0.04em;
}

.process-step__content p {
  max-width: 570px;
  margin: 0;
  color: #a8b2c3;
  font-size: 0.93rem;
  line-height: 1.65;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: clamp(70px, 10vw, 155px);
  padding-top: clamp(110px, 13vw, 195px);
  padding-bottom: clamp(110px, 13vw, 195px);
}

.proof__kicker {
  margin: 0 0 29px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.71rem;
  font-weight: 720;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.proof__statement h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.65rem);
}

.proof__statement h2 span {
  color: var(--blue);
}

.proof__body {
  max-width: 550px;
  margin: 33px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.proof__facts {
  max-width: 550px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.proof__facts li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding-block: 13px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.proof__facts .mono-label {
  color: #596477;
}

.proof__note {
  display: flex;
  max-width: 550px;
  gap: 10px;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: #5e697b;
  font-size: 0.68rem;
  line-height: 1.5;
}

.proof__note span {
  color: var(--blue);
  font-size: 1rem;
}

.proof__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.metric {
  position: relative;
  display: flex;
  min-height: 257px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.2);
}

.metric--feature {
  min-height: 360px;
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--white);
}

.metric__label {
  position: absolute;
  top: 30px;
  left: clamp(28px, 3vw, 42px);
  color: #5f6b80;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric strong {
  color: var(--ink);
  font-size: clamp(3.15rem, 5vw, 5.5rem);
  font-weight: 590;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.metric--feature strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(5rem, 9vw, 9rem);
}

.metric strong span {
  color: var(--violet);
  font-size: 0.55em;
  vertical-align: top;
}

.metric p {
  position: relative;
  z-index: 1;
  margin: 11px 0 0;
  color: #6d7789;
  font-size: 0.9rem;
}

.metric--feature p {
  color: #a3adbf;
}

.metric--feature .metric__label {
  color: #a6b0c2;
}

.metric__trace {
  position: absolute;
  right: 5%;
  bottom: 0;
  display: flex;
  width: 38%;
  height: 74%;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(3px, 0.5vw, 8px);
  opacity: 0.55;
}

.metric__trace i {
  width: 100%;
  max-width: 12px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(49, 90, 250, 0.14), rgba(75, 107, 255, 0.8), rgba(166, 60, 252, 0.95));
  transform: scaleY(0.06);
  transform-origin: bottom;
  animation: bars-grow 1.25s 650ms var(--ease-out) forwards;
}

.principles {
  padding-bottom: clamp(115px, 13vw, 195px);
}

.principles__heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 70px;
  padding-top: clamp(90px, 10vw, 140px);
  border-top: 1px solid var(--rule);
}

.principles__heading h2 {
  max-width: 960px;
  font-size: clamp(2.7rem, 5.6vw, 5.85rem);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(70px, 8vw, 115px);
  background: var(--rule);
  border: 1px solid var(--rule);
}

.principle-grid article {
  min-height: 410px;
  padding: clamp(28px, 3.4vw, 47px);
  background: var(--paper);
}

.principle-icon {
  position: relative;
  width: 96px;
  height: 86px;
  margin-bottom: 65px;
}

.principle-icon--documents i {
  position: absolute;
  display: block;
  width: 60px;
  height: 72px;
  border: 1px solid #aeb7c6;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 18px rgba(8, 17, 36, 0.045);
}

.principle-icon--documents i:nth-child(1) {
  top: 12px;
  left: 28px;
  transform: rotate(7deg);
}

.principle-icon--documents i:nth-child(2) {
  top: 6px;
  left: 15px;
  transform: rotate(2deg);
}

.principle-icon--documents i:nth-child(3) {
  top: 0;
  left: 0;
  border-color: var(--blue);
}

.principle-icon--documents i:nth-child(3)::after {
  position: absolute;
  top: 19px;
  right: 12px;
  left: 12px;
  height: 1px;
  background: var(--blue);
  box-shadow: 0 11px 0 #c8ced8, 0 22px 0 #c8ced8;
  content: "";
}

.principle-icon--review i {
  position: absolute;
  top: 5px;
  left: 5px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--violet);
  border-radius: 50%;
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 650;
}

.principle-icon--review span {
  position: absolute;
  right: 1px;
  bottom: 10px;
  width: 31px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
}

.principle-icon--ownership i,
.principle-icon--ownership span,
.principle-icon--ownership b {
  position: absolute;
  display: block;
  border: 1px solid;
  border-radius: 12px;
}

.principle-icon--ownership i {
  top: 0;
  left: 0;
  width: 61px;
  height: 61px;
  border-color: var(--navy);
}

.principle-icon--ownership span {
  right: 0;
  bottom: 0;
  width: 61px;
  height: 61px;
  border-color: var(--blue);
}

.principle-icon--ownership b {
  top: 28px;
  left: 29px;
  width: 33px;
  height: 33px;
  border-color: var(--violet);
}

.principle-grid .mono-label {
  color: #596477;
}

.principle-grid h3 {
  margin: 16px 0 17px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.principle-grid p {
  margin: 0;
  color: #697386;
  font-size: 0.92rem;
  line-height: 1.68;
}

.contact {
  padding-bottom: clamp(35px, 5vw, 70px);
}

.contact__panel {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 88px);
  border-radius: 24px;
  background: var(--dark);
  color: var(--white);
}

.contact__panel::before {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(91, 113, 255, 0.25);
  border-radius: 120px;
  box-shadow: 0 0 0 70px rgba(49, 90, 250, 0.035), 0 0 0 140px rgba(166, 60, 252, 0.025);
  content: "";
  transform: rotate(45deg);
}

.contact__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(120deg, transparent 35%, #000 100%);
}

.contact__copy,
.contact__action {
  position: relative;
  z-index: 1;
}

.contact__copy h2 {
  max-width: 850px;
}

.contact__copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #9ba6ba;
  font-size: 1rem;
  line-height: 1.68;
}

.contact__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 5px;
}

.button--light {
  min-width: 220px;
  background: var(--white);
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(49, 90, 250, 0.26);
  color: var(--white);
  transform: translateY(-2px);
}

.contact__email {
  color: #c2cadb;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.contact__email:hover,
.contact__email:focus-visible {
  color: var(--white);
  text-decoration-color: var(--white);
}

.contact__action > span {
  color: #a1acc0;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 70px;
  padding-bottom: 34px;
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 65px;
}

.brand--footer .brand__mark {
  width: 48px;
  height: 48px;
}

.brand--footer .brand__name {
  font-size: 1.25rem;
}

.site-footer__top p {
  max-width: 430px;
  margin: 0;
  color: #677184;
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: right;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 27px;
  border-top: 1px solid var(--rule);
  color: #596477;
  font-family: var(--font-mono);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-footer__bottom > div {
  display: flex;
  gap: 28px;
}

.site-footer__bottom a {
  transition: color 180ms ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--ink);
}

.back-to-top {
  justify-self: end;
}

.back-to-top span {
  margin-left: 7px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@supports (animation-timeline: view()) {
  [data-reveal] {
    animation: section-reveal both;
    animation-range: entry 0% entry 30%;
    animation-timeline: view();
  }
}

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

@keyframes visual-enter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flow-pulse {
  from {
    transform: translateX(-115%);
  }
  to {
    transform: translateX(235%);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(82, 230, 167, 0.08);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(82, 230, 167, 0.025);
  }
}

@keyframes source-scan {
  0%,
  15% {
    transform: translateX(-120%);
  }
  65%,
  100% {
    transform: translateX(270%);
  }
}

@keyframes record-enter {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes route-sweep {
  from {
    transform: translateY(-110%);
  }
  to {
    transform: translateY(570%);
  }
}

@keyframes bars-grow {
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.9vw, 5.7rem);
  }

  .workflow-panel {
    padding: 21px;
  }

  .workflow-stage {
    grid-template-columns: minmax(105px, 1fr) 28px 70px 28px minmax(140px, 1.2fr);
  }

  .proof,
  .approach__shell {
    gap: 75px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    background: rgba(245, 246, 242, 0.96);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 110px clamp(24px, 7vw, 72px) 60px;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-15px);
    transition:
      opacity 300ms ease,
      transform 400ms var(--ease-out),
      visibility 300ms;
  }

  .primary-nav--open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 12px 0;
    color: var(--ink);
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 610;
    letter-spacing: -0.055em;
  }

  .primary-nav .nav-cta {
    margin-top: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 75px;
    padding-top: 170px;
    padding-bottom: 105px;
  }

  .hero__copy {
    max-width: 850px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 10.7vw, 7.4rem);
  }

  .hero__lede {
    max-width: 700px;
  }

  .hero__visual {
    width: min(100%, 760px);
    justify-self: center;
  }

  .workflow-stage {
    grid-template-columns: minmax(130px, 1fr) 48px 84px 48px minmax(180px, 1.25fr);
  }

  .section-intro,
  .principles__heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-intro > p {
    max-width: 650px;
  }

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

  .approach__heading,
  .proof__statement {
    max-width: 840px;
  }

  .process-route {
    max-width: 780px;
  }

  .proof__metrics {
    max-width: 760px;
  }

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

  .principle-grid article {
    display: grid;
    min-height: auto;
    grid-template-columns: 125px minmax(0, 1fr);
    column-gap: 35px;
    padding: 38px;
  }

  .principle-icon {
    grid-row: 1 / 4;
    margin: 0;
  }

  .principle-grid h3 {
    margin-top: 13px;
  }

  .contact__panel {
    min-height: 560px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 50px;
  }
}

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

  .section-shell,
  .header-shell {
    padding-inline: 20px;
  }

  .header-shell {
    min-height: 73px;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
  }

  .brand__name {
    font-size: 0.96rem;
  }

  .hero {
    gap: 58px;
    padding-top: 132px;
    padding-bottom: 78px;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: clamp(3.35rem, 15.7vw, 5.5rem);
    letter-spacing: -0.075em;
  }

  .hero__lede {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 30px;
  }

  .button--primary {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-top: 35px;
  }

  .trust-row span:not(:last-child)::after {
    display: none;
  }

  .workflow-panel {
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .workflow-panel__header {
    align-items: flex-start;
    gap: 15px;
  }

  .live-status {
    min-height: 27px;
    font-size: 0.51rem;
  }

  .document-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .document-tabs::-webkit-scrollbar {
    display: none;
  }

  .document-tabs button {
    min-width: max-content;
    flex: 1;
    padding-inline: 13px;
  }

  .workflow-stage {
    grid-template-columns: minmax(0, 1fr) 29px 82px;
    grid-template-rows: auto auto;
    gap: 16px 0;
    padding-top: 21px;
  }

  .source-document {
    min-height: 165px;
  }

  .conduit-route--second {
    display: none;
  }

  .control-node {
    min-height: 95px;
  }

  .resolved-record {
    min-height: 0;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .workflow-panel__footer > .mono-label {
    display: none;
  }

  .visual-shadow-card {
    inset: 20px -9px -13px 20px;
  }

  .visual-shadow-card--two {
    inset: 36px -16px -22px 37px;
  }

  .document-ribbon__track > div {
    height: 58px;
  }

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

  .service-card {
    min-height: 375px;
  }

  .service-card h3 {
    margin-top: 58px;
  }

  .approach__shell,
  .proof {
    gap: 65px;
  }

  .process-step {
    min-height: 195px;
    grid-template-columns: 46px 1fr;
    gap: 23px;
  }

  .process-route__line {
    left: 22px;
  }

  .process-step__marker {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

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

  .metric--feature {
    min-height: 330px;
    grid-column: auto;
  }

  .metric {
    min-height: 220px;
  }

  .metric__trace {
    width: 56%;
    opacity: 0.45;
  }

  .principle-grid article {
    display: block;
    padding: 34px 28px 39px;
  }

  .principle-icon {
    margin-bottom: 50px;
  }

  .contact {
    padding-inline: 12px;
  }

  .contact__panel {
    min-height: 620px;
    gap: 45px;
    padding: 42px 25px;
    border-radius: 18px;
  }

  .contact__action .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 55px;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 47px;
  }

  .site-footer__top p {
    max-width: 360px;
    text-align: left;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    row-gap: 27px;
  }

  .site-footer__bottom > div {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: space-between;
    gap: 14px;
  }

  .site-footer__bottom > span {
    grid-row: 2;
  }

  .back-to-top {
    grid-row: 2;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .brand__name {
    font-size: 0.88rem;
  }

  .workflow-panel__header > div .mono-label {
    display: none;
  }

  .live-status {
    white-space: nowrap;
  }

  .section-intro h2,
  .approach__heading h2,
  .proof__statement h2,
  .principles__heading h2,
  .contact h2 {
    font-size: 2.5rem;
  }

  .site-footer__bottom > div {
    flex-wrap: wrap;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__visual,
  .workflow-panel,
  .visual-shadow-card {
    transform: none !important;
  }
}
