@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Space;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: Allura;
  src: url("/assets/fonts/allura.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  --ink: #080c0e;
  --panel: #11191d;
  --paper: #f1f5f4;
  --muted: #a6b4b8;
  --cyan: #51def3;
  --gold: #ffbf46;
  --line: #2a363b;
  --text: #eef4f5;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
figure,
p,
ul,
ol {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: Space, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}
h1 {
  font-size: 76px;
}
h2 {
  font-size: 52px;
}
h3 {
  font-size: 27px;
}
em {
  font-style: normal;
  color: var(--cyan);
}
p {
  color: var(--muted);
}
strong {
  font-weight: 700;
}
svg.lucide {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 1.6;
}
button {
  border: 0;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a,
button,
summary {
  touch-action: manipulation;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}
::selection {
  background: var(--cyan);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.shell {
  max-width: 1328px;
  width: calc(100% - 112px);
  margin-inline: auto;
  position: relative;
}
.section {
  padding: 112px 0;
}
.kicker {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--cyan);
  margin-bottom: 24px;
}
.paper {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
  --muted: #536469;
  --line: #ced9da;
}
.paper .kicker {
  color: #087386;
}
.dark {
  background: var(--ink);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.section-heading > p {
  font-size: 17px;
  max-width: 430px;
  justify-self: end;
}
.section-heading h2 {
  max-width: 720px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.button {
  height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 4px;
  position: relative;
  isolation: isolate;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
  white-space: normal;
}
.button svg,
.text-link svg,
.header-cta svg {
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.button:hover svg,
.text-link:hover svg,
.header-cta:hover svg {
  transform: translate(3px, -3px);
}
.primary {
  background: var(--gold);
  color: var(--ink);
}
.primary:hover {
  background: #ffd27f;
  box-shadow: 0 8px 32px #ffbf461a;
}
.quiet {
  border: 1px solid #71868e;
  color: var(--text);
}
.quiet:hover {
  background: #1c2c32;
}
.dark-button {
  background: var(--ink);
  color: var(--text);
}
.dark-button:hover {
  background: #23343b;
}
.text-link {
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  padding: 5px 0;
}
.text-link svg {
  width: 18px;
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.icon-button:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 100;
  background: var(--cyan);
  color: var(--ink);
  padding: 12px;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
/* Shared chrome stays stable through navigation and responsive menus. */
.site-header {
  height: 84px;
  background: #080c0ef5;
  border-bottom: 1px solid #26343a;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  view-transition-name: header;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: block;
  width: 194px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
}
.header-inner nav {
  margin-left: auto;
  display: flex;
  gap: 27px;
  height: 100%;
  align-items: center;
}
.header-inner nav a {
  font-size: 12px;
  font-weight: 700;
  color: #c5cfd2;
  position: relative;
  padding: 12px 0;
}
.header-inner nav a:after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--cyan);
  bottom: 6px;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.header-inner nav a:hover,
.header-inner nav a[aria-current] {
  color: #fff;
}
.header-inner nav a:hover:after,
.header-inner nav a[aria-current]:after {
  transform: scaleX(1);
}
.header-cta {
  background: #f3f6f6;
  color: #080c0e;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 17px;
  border-radius: 3px;
  white-space: nowrap;
}
.header-cta svg {
  width: 16px;
}
.menu-toggle {
  display: none;
}
.intro {
  position: fixed;
  inset: 0;
  background: #080c0e;
  z-index: 80;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: intro-out 0.75s cubic-bezier(0.7, 0, 0.2, 1) 1.35s both;
}
.intro-inner {
  text-align: center;
  animation: intro-in 0.75s ease both;
}
.intro img {
  width: 320px;
  max-width: 75%;
  margin: auto;
}
.intro p {
  font-size: 13px;
  margin-top: 30px;
  color: var(--gold);
}
@keyframes intro-out {
  to {
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
  }
}
@keyframes intro-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background: #080c0e;
}
.hero-copy {
  padding-top: 44px;
  z-index: 2;
}
.hero .kicker {
  margin-bottom: 15px;
}
.hero h1 {
  font-size: 70px;
  line-height: 1.07;
  font-weight: 500;
}
.hero h1 em {
  color: var(--cyan);
}
.hero-copy > p:not(.kicker) {
  font-size: 17px;
  line-height: 1.55;
  margin: 20px 0 24px;
  color: #b3c3c9;
}
.hero .actions {
  gap: 30px;
}
.hero-stage {
  height: 286px;
  position: relative;
  margin-top: 2px;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}
.hero-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}
.scene-fallback {
  position: absolute;
  inset: 10px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: opacity 0.4s;
}
.scene-desktop {
  width: 380px;
  max-height: 210px;
  object-fit: contain;
  transform: perspective(800px) rotateY(-9deg);
}
.scene-phone {
  width: 92px;
  max-height: 220px;
  object-fit: contain;
  transform: perspective(800px) rotateY(9deg);
}
.scene-ready .scene-fallback {
  opacity: 0;
  visibility: hidden;
}
.hero-stage-footer {
  position: absolute;
  bottom: 17px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2;
}
.hero-stage-footer > span {
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #93a8b0;
}
.hero-stage-footer b {
  font-weight: 600;
  color: #d8e5e9;
}
.scene-switcher {
  display: flex;
  gap: 22px;
}
.scene-switcher button {
  font-size: 11px;
  background: none;
  color: #a0b4bd;
  padding: 9px 0;
  border-bottom: 1px solid transparent;
}
.scene-switcher button[aria-pressed="true"] {
  color: var(--cyan);
  border-color: var(--cyan);
}
.scene-pause {
  border: none;
  width: 30px;
  height: 30px;
}
.scene-pause svg {
  width: 16px;
}
.hero .button {
  height: 49px;
}
.trust-section {
  border-block: 1px solid var(--line);
  background: #0f171b;
  padding: 29px 0 20px;
  overflow: hidden;
}
.trust-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 16px;
}
.trust-heading .kicker {
  margin: 0;
  font-size: 10px;
  color: #bdcbd0;
}
.trust-heading > span {
  font-size: 10px;
  color: #a1b3bb;
}
.trust-window {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 3%,
    #000 97%,
    transparent
  );
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 40s linear infinite;
}
.trust-track:hover {
  animation-play-state: paused;
}
.trust-set {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}
.trust-logo {
  width: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
}
.trust-logo img {
  width: auto;
  max-width: 158px;
  height: 43px;
  object-fit: contain;
}
.trust-logo:nth-child(3) img {
  background: #fff;
  padding: 3px;
  max-width: 174px;
  height: 43px;
}
.trust-logo span {
  font-size: 11px;
  font-weight: 700;
  color: #d4dfe1;
}
.trust-logo small {
  font-size: 9px;
  color: #8fabb5;
}
.trust-note {
  font-size: 9px;
  margin-top: 18px;
  color: #81989f;
}
@keyframes trust-scroll {
  to {
    transform: translateX(-50%);
  }
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.advantage-grid article {
  padding: 30px 36px 10px 0;
}
.advantage-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}
.advantage-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  align-items: center;
}
.advantage-top span {
  font: 12px Space;
  color: #49626b;
}
.advantage-top svg {
  width: 28px;
  height: 28px;
  color: #087386;
}
.advantage-grid article:nth-child(2) svg {
  color: #4558b0;
}
.advantage-grid article:nth-child(3) svg {
  color: #9b6713;
}
.advantage-grid h3 {
  font-size: 29px;
  margin-bottom: 18px;
}
.advantage-grid p {
  font-size: 15px;
  line-height: 1.8;
}
.service-explorer {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 72px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.service-tabs {
  display: flex;
  flex-direction: column;
}
.service-tabs button {
  color: #adc0c8;
  background: none;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 23px 15px 23px 0;
  min-height: 78px;
  font-weight: 600;
  font-size: 15px;
  transition:
    color 0.2s,
    background 0.25s;
}
.service-tabs button > .lucide:last-child {
  width: 17px;
  margin-left: auto;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.service-tabs button[aria-selected="true"] {
  color: var(--cyan);
  background: #122126;
}
.service-tabs button[aria-selected="true"] > .lucide:last-child,
.service-tabs button:hover > .lucide:last-child {
  opacity: 1;
  transform: none;
}
.service-tabs button:hover {
  color: #fff;
}
.service-index {
  font-family: Space;
  font-size: 10px;
  color: #66818e;
  padding-left: 12px;
}
.service-tabs .lucide {
  width: 22px;
  height: 22px;
}
.service-panels {
  min-width: 0;
  position: relative;
}
.service-panel {
  padding: 26px 0 16px;
  min-height: 610px;
}
.service-panel .kicker {
  margin-bottom: 19px;
}
.service-panel h3 {
  font-size: 40px;
  max-width: 570px;
}
.service-panel > p:not(.kicker) {
  font-size: 16px;
  margin-top: 23px;
  max-width: 600px;
}
.deliverables {
  list-style: none;
  padding: 25px 0 0;
  display: grid;
  gap: 13px;
}
.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #d1dfe4;
}
.deliverables svg {
  width: 15px;
  height: 20px;
  color: var(--cyan);
}
.service-proof {
  padding-top: 26px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  align-items: center;
}
.service-proof > span {
  font-size: 10px;
  text-transform: uppercase;
  flex-basis: 100%;
  color: #859ca5;
}
.service-proof a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #c5d9df;
}
.service-proof a:hover {
  color: #fff;
}
.service-proof img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}
.service-panel > .text-link {
  margin-top: 28px;
  color: var(--cyan);
}
.small-print {
  font-size: 11px !important;
}
.delivery-section {
  background: #16252b;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.delivery-grid article {
  border-top: 1px solid #547380;
  position: relative;
  padding-top: 32px;
}
.delivery-number {
  font: 74px Space;
  color: #365763;
  line-height: 1;
  margin-bottom: 28px;
}
.delivery-grid article:nth-child(2) .delivery-number {
  color: #358594;
}
.delivery-grid article:nth-child(3) .delivery-number {
  color: #b79b61;
}
.delivery-grid article:nth-child(4) .delivery-number {
  color: #789a8d;
}
.delivery-grid .kicker {
  margin-bottom: 15px;
}
.delivery-grid h3 {
  font-size: 25px;
  margin-bottom: 17px;
}
.delivery-grid p:not(.kicker) {
  font-size: 13px;
  color: #bacbd1;
}
.delivery-note {
  font-size: 11px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #304952;
  color: #a1b9c3;
}
.selected-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product-card {
  min-width: 0;
  --product-accent: #51def3;
}
.product-visual {
  position: relative;
  aspect-ratio: 1.45;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #121d24;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #344952;
  isolation: isolate;
}
.product-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--product-accent);
  opacity: 0.07;
  z-index: -1;
  transition: opacity 0.4s;
}
.product-visual > img {
  width: 94%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
  filter: drop-shadow(0 12px 18px #0008);
}
.product-visual.portrait > img {
  height: 88%;
  width: auto;
  max-width: 85%;
  border-radius: 6px;
  transform: perspective(700px) rotateY(-8deg);
  box-shadow: 12px 12px 0 #0002;
}
.product-visual:hover > img {
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.035);
}
.product-visual:hover:before {
  opacity: 0.14;
}
.image-action {
  position: absolute;
  bottom: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  background: #0b121be0;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 3px;
  border: 1px solid #617784;
}
.image-action svg {
  width: 18px;
}
.product-card-body {
  padding: 24px 0 0;
}
.product-top {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
}
.product-category {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.6;
}
.status {
  font-size: 9px;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.product-card h3 {
  font-size: 26px;
}
.product-card h3 a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.product-logo {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.product-card p {
  font-size: 13px;
  margin-top: 17px;
  line-height: 1.75;
}
.product-card .text-link {
  margin-top: 20px;
  font-size: 11px;
}
.section-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.section-end > span {
  font-size: 12px;
  color: var(--muted);
}
.security-feature {
  padding: 112px 0;
  background: #0d171c;
}
.security-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.security-feature h2 {
  font-size: 60px;
}
.security-feature p {
  font-size: 15px;
  margin: 25px 0 28px;
  max-width: 460px;
}
.security-stack {
  perspective: 1400px;
  padding: 30px 0;
}
.security-stack article {
  border: 1px solid #344953;
  border-left: 2px solid var(--cyan);
  padding: 24px 30px;
  background: #122027;
  transform: rotateY(-8deg);
  box-shadow: 14px 20px 0 #0002;
  position: relative;
}
.security-stack article:nth-child(2) {
  margin-top: 18px;
  margin-left: 24px;
  border-left-color: var(--gold);
}
.security-stack article:nth-child(3) {
  margin-top: 18px;
  margin-left: 48px;
  border-left-color: #84ceab;
}
.security-stack article > svg {
  position: absolute;
  right: 22px;
  top: 24px;
  color: var(--cyan);
}
.security-stack article > span {
  font-size: 10px;
  text-transform: uppercase;
  color: #98b1ba;
  display: block;
  margin-bottom: 13px;
}
.security-stack h3 {
  font-size: 24px;
}
.security-stack p {
  margin: 12px 0 0;
  font-size: 12px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.faq-layout h2 {
  margin-bottom: 28px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  font-size: 15px;
  padding: 26px 0;
  line-height: 1.6;
}
summary::-webkit-details-marker {
  display: none;
}
summary .lucide {
  width: 19px;
  transition: transform 0.3s;
}
details[open] > summary .lucide {
  transform: rotate(45deg);
}
details > p {
  font-size: 14px;
  padding: 0 30px 26px 0;
  line-height: 1.8;
}
.closing {
  padding: 88px 0 90px;
  background: #13313a;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  z-index: 1;
}
.closing h2 {
  font-size: 66px;
  position: relative;
  z-index: 2;
}
.closing p:not(.kicker) {
  max-width: 600px;
  font-size: 16px;
  color: #b7cdd3;
  margin: 24px 0 30px;
  position: relative;
  z-index: 2;
}
.closing .actions {
  position: relative;
  z-index: 2;
}
.closing-mark {
  position: absolute;
  right: 0;
  top: 0;
  width: 310px;
  height: 310px;
  opacity: 0.26;
  z-index: 0;
  transform: rotate(-8deg);
}
.closing-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer {
  padding: 54px 0 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.footer-top > p {
  font-family: Space;
  font-size: 24px;
  color: #dae8ec;
}
.footer-top > .text-link {
  margin-left: auto;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 40px;
  padding: 38px 0 48px;
}
.footer-columns .kicker {
  font-size: 10px;
  margin-bottom: 18px;
  color: #dee7e9;
}
.footer-columns a {
  display: block;
  font-size: 11px;
  color: #a0b1b8;
  width: fit-content;
  margin-top: 10px;
  overflow-wrap: anywhere;
}
.footer-columns a:hover {
  color: var(--cyan);
}
.footer-columns > div > p {
  font-size: 12px;
  margin-bottom: 22px;
}
.motion-toggle {
  background: none;
  color: #a0b1b8;
  padding: 0;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.motion-toggle svg {
  width: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  color: #78929b;
  font-size: 10px;
}
.page-hero {
  padding: 84px 0 68px;
  background: #0c1419;
  border-bottom: 1px solid #213038;
}
.page-hero h1 {
  max-width: 1000px;
  line-height: 1.05;
  font-size: 76px;
}
.page-hero .kicker {
  margin-bottom: 28px;
}
.page-hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-top: 36px;
}
.page-hero-bottom > p {
  font-size: 17px;
  max-width: 680px;
}
.page-hero-bottom .button {
  flex-shrink: 0;
}
.engagements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.engagements article {
  border-top: 2px solid #111e25;
  padding-top: 24px;
}
.engagement-number {
  font: 56px Space;
  color: #b8c9cc;
  margin-bottom: 28px;
  display: block;
  line-height: 1;
}
.engagements .kicker {
  margin-bottom: 18px;
  font-size: 10px;
}
.engagements h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.engagements p {
  font-size: 14px;
}
.engagement-output {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 20px;
}
.engagement-output small {
  font-size: 10px;
  text-transform: uppercase;
  color: #58717a;
}
.engagement-output p {
  margin-top: 9px;
}
.engagements .text-link {
  margin-top: 26px;
  font-size: 12px;
}
.catalogue-section {
  padding-top: 42px;
}
.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  gap: 20px;
}
.catalogue-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.catalogue-filters button {
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #4b626b;
  border: 1px solid #c0cdcf;
  padding: 11px 19px;
  border-radius: 4px;
  transition:
    background 0.25s,
    color 0.25s;
}
.catalogue-filters button[aria-pressed="true"] {
  background: #12252d;
  color: #fff;
  border-color: #12252d;
}
.catalogue-filters button:hover {
  border-color: #21343e;
}
.catalogue-count {
  font-size: 11px;
  color: #536a72;
  white-space: nowrap;
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px 36px;
}
.catalogue-grid .product-visual {
  aspect-ratio: 1.6;
}
.catalogue-grid .product-card h3 {
  font-size: 31px;
}
.catalogue-grid .product-card p {
  font-size: 14px;
  max-width: 500px;
}
.catalogue-footnote {
  font-size: 11px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 26px;
}
.case-stage {
  padding: 50px 0;
  background: #14222a;
}
.case-gallery {
  max-width: 1100px;
  margin: auto;
}
.case-screen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.case-screen > img {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
}
.case-gallery.portrait .case-screen {
  max-height: 640px;
}
.case-gallery.portrait .case-screen > img {
  height: 610px;
  width: auto;
  max-width: 100%;
  border-radius: 8px;
}
.gallery-expand {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #0a111be6;
  color: #fff;
}
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 24px;
}
.gallery-tabs button {
  background: none;
  color: #a9bbc3;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.gallery-tabs button[aria-pressed="true"] {
  color: var(--cyan);
  border-color: var(--cyan);
}
.image-caption {
  text-align: center;
  font-size: 10px;
  color: #8da5af;
  margin-top: 20px;
}
.case-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.case-intro h2 {
  font-size: 46px;
}
.case-intro > p {
  font-size: 19px;
}
.case-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.case-story h3 {
  font-size: 26px;
  line-height: 1.4;
}
.case-story .kicker {
  font-size: 10px;
}
.case-story article > p:not(.kicker) {
  font-size: 16px;
}
.case-depth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.case-depth article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.case-depth span {
  font-size: 11px;
  color: #0b7e92;
}
.case-depth h3 {
  font-size: 25px;
  margin: 22px 0 17px;
}
.case-depth p {
  font-size: 14px;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 40px;
}
.case-tags > span {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-tags > span:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #0e8799;
}
.case-note {
  font-size: 11px;
  margin-top: 32px;
  max-width: 900px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.image-dialog {
  padding: 54px 20px 24px;
  max-width: 96vw;
  max-height: 96dvh;
  border: 1px solid #455a63;
  background: #101c23;
  color: #fff;
  border-radius: 6px;
}
.image-dialog::backdrop {
  background: #020609ed;
  backdrop-filter: blur(8px);
}
.image-dialog > img {
  max-width: calc(96vw - 44px);
  max-height: calc(96dvh - 90px);
  width: auto;
  object-fit: contain;
}
.image-dialog > button {
  position: absolute;
  right: 10px;
  top: 5px;
  border: none;
}
.founder-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.founder-portrait {
  margin: 0;
  max-width: 520px;
}
.founder-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 5px;
}
.founder-portrait figcaption {
  font-size: 10px;
  margin-top: 13px;
  color: #6a7f88;
}
.founder-copy h2 {
  font-size: 42px;
}
.founder-copy p:not(.kicker) {
  font-size: 14px;
  margin-top: 20px;
}
.founder-copy .founder-lede {
  font-family: Space;
  font-size: 24px !important;
  line-height: 1.4;
  color: #1a313b;
  margin-top: 28px !important;
}
.founder-signature {
  font-family: Allura, cursive;
  font-size: 60px;
  color: #172b33;
  line-height: 1.2;
  margin-top: 26px;
  white-space: nowrap;
}
.signature-caption {
  font-size: 9px;
  text-transform: uppercase;
  color: #607780;
  display: block;
  margin-top: 5px;
}
.founder-contact {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 25px;
  font-size: 12px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.principles article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.principles span {
  font-size: 11px;
  color: var(--cyan);
}
.principles h3 {
  font-size: 28px;
  margin: 25px 0 20px;
}
.principles p {
  font-size: 14px;
}
.security-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 35px;
}
.security-areas article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.security-areas article > svg {
  width: 32px;
  height: 32px;
  color: #14778b;
  margin-bottom: 28px;
}
.security-areas h3 {
  font-size: 25px;
  margin-bottom: 18px;
}
.security-areas p {
  font-size: 13px;
}
.security-areas summary {
  padding: 20px 0;
  font-size: 11px;
}
.security-areas details {
  margin-top: 10px;
}
.security-areas details > p {
  font-size: 13px;
}
.security-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.security-process article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.security-process span {
  font: 54px Space;
  color: #3d7787;
}
.security-process h3 {
  margin: 24px 0 20px;
  font-size: 25px;
}
.security-process p {
  font-size: 13px;
}
.security-output {
  display: flex;
  gap: 28px;
  align-items: start;
  padding: 32px;
  border-block: 1px solid var(--line);
  margin-top: 45px;
  background: #122126;
}
.security-output svg {
  color: var(--cyan);
  width: 30px;
  height: 30px;
}
.security-output p {
  margin-top: 14px;
  font-size: 14px;
  max-width: 900px;
}
.disclosure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.disclosure h2 {
  font-size: 42px;
  margin-bottom: 26px;
}
.disclosure > div > p:not(.kicker) {
  margin-bottom: 22px;
  font-size: 14px;
}
.intake-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.intake-aside {
  position: sticky;
  top: 120px;
}
.intake-aside h2 {
  font-size: 36px;
  line-height: 1.2;
}
.intake-aside > p:not(.kicker) {
  font-size: 14px;
  margin: 24px 0;
}
.intake-expect {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  margin: 30px 0;
}
.intake-expect h3 {
  font-size: 20px;
}
.intake-expect ol {
  padding-left: 17px;
  display: grid;
  gap: 14px;
  margin-top: 20px;
  font-size: 13px;
  color: #50676e;
}
.intake-aside > a {
  display: block;
  font-size: 12px;
  margin: 14px 0;
  overflow-wrap: anywhere;
}
.project-form {
  background: #fff;
  border: 1px solid #d2dddf;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 20px 60px #143c4110;
}
.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 26px;
}
.form-heading > span {
  font: 22px Space;
}
.form-heading small {
  font-size: 10px;
  color: #617780;
  align-self: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.project-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
  min-width: 0;
}
.project-form label > span {
  color: #188197;
}
.project-form input,
.project-form select,
.project-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #b3c5c9;
  border-radius: 3px;
  padding: 12px 13px;
  color: #172f38;
  background: #fafcfc;
  font-size: 14px;
  outline-offset: 2px;
}
.project-form input,
.project-form select {
  height: 48px;
}
.project-form textarea {
  resize: vertical;
  min-height: 144px;
}
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  outline: 2px solid #17859a;
  background: #fff;
}
.form-safety {
  font-size: 10px;
  margin-top: -7px;
}
.form-footer {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 25px;
  display: grid;
  gap: 20px;
}
.form-footer > p {
  font-size: 10px;
}
.form-footer a {
  text-decoration: underline;
}
.form-footer .button {
  justify-self: start;
  min-width: 200px;
}
.honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%);
}
.form-status {
  font-size: 12px;
  color: #ad362d;
}
.form-status:not(:empty) {
  padding: 15px 0;
}
.submission-curtain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  display: flex;
  visibility: hidden;
}
.submission-curtain > div {
  width: 25%;
  height: 100%;
  background: #2ecbdd;
  transform: scaleY(0);
  transform-origin: bottom;
}
.submission-curtain > div:nth-child(2) {
  background: #3ad7e7;
}
.submission-curtain > div:nth-child(3) {
  background: #69e3ed;
}
.submission-curtain > div:nth-child(4) {
  background: #ffbf46;
}
.submission-curtain > span {
  position: absolute;
  top: 46%;
  left: 0;
  width: 100%;
  text-align: center;
  font: 52px Space;
  color: #0a242c;
  opacity: 0;
}
.confirmation {
  max-width: 820px;
  text-align: center;
}
.confirmation-symbol {
  width: 75px;
  height: 75px;
  border: 1px solid #a2c8bc;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  background: #d8ebe2;
  color: #147748;
}
.confirmation h2 {
  font-size: 44px;
  margin-bottom: 24px;
}
.confirmation p {
  max-width: 650px;
  margin: 0 auto 32px;
}
.confirmation p a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.confirmation .actions {
  justify-content: center;
}
.legal-hero {
  padding: 80px 0;
  background: #10212b;
}
.section-shell {
  max-width: 1216px;
  width: calc(100% - 112px);
  margin: auto;
}
.legal-hero h1 {
  font-size: 62px;
  margin: 22px 0;
}
.legal-hero p {
  max-width: 800px;
}
.legal-section {
  background: var(--paper);
  color: var(--ink);
  --line: #c8d5d8;
  --muted: #53666e;
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
}
.legal-index {
  position: sticky;
  top: 110px;
  align-self: start;
  font-size: 12px;
}
.legal-index strong {
  display: block;
  margin-bottom: 20px;
}
.legal-index a {
  display: block;
  margin: 12px 0;
  color: #4e6f7b;
}
.legal-copy article {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.legal-copy article > span {
  font-size: 10px;
  color: #1a849b;
}
.legal-copy h2 {
  font-size: 30px;
  margin: 15px 0 22px;
}
.legal-copy p,
.legal-copy li {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.legal-copy ul {
  padding-left: 20px;
}
.legal-copy a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cyan);
}
.project-planner {
  background: #0e252c;
}
.planner-tool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  border-block: 1px solid #31545e;
  padding: 38px 0;
}
.planner-inputs fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.planner-inputs legend,
.planner-capability {
  font-size: 11px;
  font-weight: 700;
  color: #d2e3e8;
}
.planner-inputs legend {
  padding: 0 0 20px;
}
.planner-inputs fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
  padding: 11px 0;
  margin-right: 16px;
}
.planner-inputs input {
  accent-color: var(--cyan);
  width: 16px;
  height: 16px;
}
.planner-capability {
  display: block;
}
.planner-capability select {
  display: block;
  margin-top: 18px;
  background: #132f39;
  border: 1px solid #52727e;
  color: #e2edf0;
  padding: 14px 16px;
  width: 100%;
  font-size: 14px;
  border-radius: 4px;
}
.planner-result {
  border-left: 1px solid #31545e;
  padding-left: 55px;
}
.planner-result .kicker {
  font-size: 10px;
  margin-bottom: 18px;
}
.planner-result h3 {
  font-size: 34px;
}
.planner-result > p:not(.kicker) {
  font-size: 14px;
  margin: 18px 0;
}
.planner-result ul {
  padding-left: 18px;
  margin: 22px 0 26px;
  display: grid;
  gap: 9px;
  font-size: 12px;
  color: #bfdae2;
}
.planner-result li::marker {
  color: var(--cyan);
}
.planner-result .button {
  font-size: 12px;
}
.planner-result small {
  font-size: 10px;
  display: block;
  color: #8aa8b3;
  margin-top: 17px;
}
.motion-paused .trust-track {
  animation-play-state: paused;
}
.motion-paused * {
  scroll-behavior: auto !important;
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: page-fade 0.2s ease forwards;
}
::view-transition-new(root) {
  animation: page-in 0.3s ease both;
}
::view-transition-group(header) {
  animation: none;
}
@keyframes page-fade {
  to {
    opacity: 0;
  }
}
@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-copy {
  padding-top: 32px;
}
.hero-stage {
  height: 260px;
}
.hero-stage canvas {
  height: calc(100% - 52px);
}
@media (min-width: 1101px) and (min-height: 850px) {
  .hero-stage {
    height: 340px;
  }
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-top: 56px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero-stage {
    height: 330px;
  }
  .hero-stage-footer {
    bottom: 24px;
  }
}
@media (max-width: 1100px) {
  .shell,
  .section-shell {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 22px;
  }
  .header-inner nav {
    gap: 18px;
  }
  .brand {
    width: 168px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .section {
    padding: 84px 0;
  }
  .section-heading {
    gap: 42px;
  }
  .service-explorer {
    gap: 40px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .service-panel h3 {
    font-size: 34px;
  }
  .service-tabs button {
    font-size: 13px;
    gap: 12px;
  }
  .founder-layout {
    gap: 50px;
  }
  .founder-signature {
    font-size: 51px;
  }
  .security-feature-inner {
    gap: 55px;
  }
  .intake-layout {
    gap: 50px;
  }
  .selected-grid {
    gap: 20px;
  }
  .product-card h3 {
    font-size: 23px;
  }
  .advantage-grid h3 {
    font-size: 25px;
  }
  .page-hero h1 {
    font-size: 66px;
  }
  .faq-layout {
    gap: 55px;
  }
  .closing h2 {
    font-size: 57px;
  }
  .closing-mark {
    width: 240px;
    right: -40px;
    top: 25px;
  }
  .footer-columns {
    gap: 25px;
  }
  .security-areas {
    gap: 36px 25px;
  }
  .project-form {
    padding: 28px;
  }
}
@media (max-width: 820px) {
  .header-inner nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 73px;
    height: auto;
    padding: 28px 32px 36px;
    background: #101b21;
    border-bottom: 1px solid #3a5663;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    margin: 0;
  }
  .header-inner nav a {
    font-size: 20px;
    padding: 12px 0;
  }
  .header-inner nav a:after {
    width: 35px;
    bottom: 8px;
  }
  .header-inner nav.is-open {
    display: flex;
  }
  .site-header {
    height: 74px;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: grid;
    flex-shrink: 0;
    border: none;
  }
  .header-inner {
    gap: 16px;
  }
  .shell,
  .section-shell {
    width: calc(100% - 48px);
  }
  .section {
    padding: 68px 0;
  }
  h2 {
    font-size: 42px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 38px;
  }
  .section-heading > p {
    justify-self: start;
    max-width: 620px;
    font-size: 15px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-copy {
    padding-top: 38px;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 15px;
  }
  .hero-stage {
    height: 255px;
  }
  .hero-stage-footer > span {
    display: none;
  }
  .hero-stage-footer {
    justify-content: center;
    gap: 25px;
    bottom: 12px;
  }
  .hero .button {
    height: 47px;
  }
  .hero .text-link {
    font-size: 11px;
  }
  .trust-heading > span {
    display: none;
  }
  .trust-set {
    gap: 42px;
    padding-right: 42px;
  }
  .trust-logo {
    width: 155px;
  }
  .service-explorer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }
  .service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
  }
  .service-tabs button {
    min-height: 64px;
    padding: 15px 8px 15px 0;
    font-size: 12px;
    gap: 10px;
  }
  .service-tabs .service-index {
    font-size: 9px;
  }
  .service-tabs button > .lucide:last-child {
    display: none;
  }
  .service-panel {
    min-height: 480px;
    padding: 25px 0 0;
  }
  .service-panel h3 {
    font-size: 34px;
    max-width: 620px;
  }
  .service-panel > p:not(.kicker) {
    font-size: 15px;
  }
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .advantage-grid {
    gap: 26px;
  }
  .advantage-grid article {
    padding: 25px 0 0;
  }
  .advantage-grid article + article {
    padding-left: 0;
    border-left: 0;
  }
  .advantage-top {
    margin-bottom: 25px;
  }
  .advantage-grid h3 {
    font-size: 23px;
  }
  .advantage-grid p {
    font-size: 13px;
  }
  .selected-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }
  .selected-grid article:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }
  .selected-grid article:last-child .product-card-body {
    padding: 0;
  }
  .selected-grid article:last-child .product-visual {
    aspect-ratio: 1.15;
  }
  .section-end {
    margin-top: 32px;
  }
  .section-end > span {
    max-width: 260px;
  }
  .security-feature {
    padding: 70px 0;
  }
  .security-feature-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .security-feature h2 {
    font-size: 48px;
  }
  .security-feature p {
    max-width: 600px;
  }
  .security-stack {
    padding: 10px 0;
    max-width: 650px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-layout h2 br {
    display: none;
  }
  .closing {
    padding: 65px 0;
  }
  .closing h2 {
    font-size: 49px;
    max-width: 580px;
  }
  .closing-mark {
    width: 200px;
    right: -80px;
    top: 50px;
    opacity: 0.16;
  }
  .footer-top {
    gap: 25px;
    flex-wrap: wrap;
  }
  .footer-top > p {
    font-size: 20px;
  }
  .footer-top > .text-link {
    display: none;
  }
  .footer-columns {
    grid-template-columns: 1.5fr 1fr;
    gap: 35px;
  }
  .footer-bottom {
    gap: 20px;
    font-size: 9px;
  }
  .page-hero {
    padding: 55px 0;
  }
  .page-hero h1 {
    font-size: 56px;
  }
  .page-hero-bottom {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 28px;
  }
  .page-hero-bottom > p {
    font-size: 16px;
  }
  .engagements {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .engagements article {
    display: grid;
    grid-template-columns: 65px 1fr;
    column-gap: 25px;
  }
  .engagement-number {
    grid-row: 1/7;
  }
  .engagements h3 {
    font-size: 30px;
  }
  .engagement-output {
    margin-top: 23px;
  }
  .engagements .text-link {
    justify-self: start;
  }
  .catalogue-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .catalogue-grid {
    gap: 42px 24px;
  }
  .catalogue-grid .product-visual {
    aspect-ratio: 1.2;
  }
  .catalogue-grid .product-card h3 {
    font-size: 25px;
  }
  .case-intro,
  .case-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-intro h2 {
    font-size: 40px;
  }
  .case-intro > p {
    font-size: 17px;
  }
  .case-story {
    margin-top: 40px;
  }
  .case-depth {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 35px;
  }
  .case-depth h3 {
    margin: 15px 0;
  }
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .founder-portrait {
    max-width: 460px;
    width: 100%;
  }
  .founder-copy {
    max-width: 620px;
  }
  .founder-copy h2 {
    font-size: 40px;
  }
  .founder-copy .founder-lede {
    font-size: 26px !important;
  }
  .founder-signature {
    font-size: 64px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .principles h3 {
    margin: 15px 0;
  }
  .security-areas {
    grid-template-columns: 1fr 1fr;
  }
  .security-process {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .disclosure {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .intake-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .intake-aside {
    position: static;
  }
  .intake-aside h2 {
    font-size: 38px;
  }
  .intake-expect {
    margin: 24px 0;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .legal-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .legal-index strong {
    flex-basis: 100%;
    margin: 0;
  }
  .legal-index a {
    margin: 0;
  }
  .legal-hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 520px) {
  .shell,
  .section-shell {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 68px;
  }
  .header-inner {
    gap: 8px;
  }
  .brand {
    width: 139px;
  }
  .header-cta {
    font-size: 10px;
    padding: 9px 10px;
    gap: 8px;
  }
  .header-cta svg {
    width: 13px;
  }
  .menu-toggle {
    width: 36px;
    height: 40px;
  }
  .header-inner nav {
    top: 67px;
    padding: 22px 24px;
  }
  .kicker {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .hero-copy {
    padding-top: 36px;
  }
  .hero .kicker {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 37px;
    line-height: 1.12;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 13px;
    line-height: 1.6;
    margin: 18px 0 22px;
  }
  .hero .actions {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero .button {
    font-size: 11px;
    padding: 0 18px;
    min-width: 245px;
    height: 45px;
  }
  .hero .text-link {
    font-size: 10px;
    padding: 0;
    border: 0;
  }
  .hero-stage {
    height: 237px;
    margin-top: 8px;
  }
  .scene-switcher {
    gap: 22px;
  }
  .scene-switcher button {
    font-size: 10px;
  }
  .hero-stage-footer {
    bottom: 10px;
  }
  .scene-fallback {
    gap: 18px;
    inset: 0 0 44px;
  }
  .scene-desktop {
    width: 240px;
    max-height: 150px;
  }
  .scene-phone {
    width: 65px;
    height: 160px;
  }
  .trust-section {
    padding: 22px 0 16px;
  }
  .trust-heading {
    margin-bottom: 17px;
  }
  .trust-heading .kicker {
    font-size: 8px;
  }
  .trust-logo img {
    height: 34px;
  }
  .trust-logo {
    gap: 5px;
    width: 145px;
  }
  .trust-logo span {
    font-size: 10px;
  }
  .trust-logo small {
    font-size: 8px;
  }
  .trust-note {
    font-size: 8px;
    line-height: 1.6;
    margin-top: 15px;
  }
  h2 {
    font-size: 35px;
  }
  .section {
    padding: 56px 0;
  }
  .section-heading {
    gap: 22px;
    margin-bottom: 32px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .advantage-grid article {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .advantage-grid article:first-child {
    border: 0;
    padding-top: 0;
  }
  .advantage-top {
    grid-row: 1/3;
    display: block;
    margin: 0;
  }
  .advantage-top span {
    display: block;
    margin-bottom: 20px;
    font-size: 10px;
  }
  .advantage-top svg {
    width: 24px;
    height: 24px;
  }
  .advantage-grid h3 {
    font-size: 26px;
    margin: 0 0 14px;
  }
  .advantage-grid p {
    font-size: 13px;
  }
  .advantage-grid {
    padding-top: 25px;
  }
  .service-tabs {
    gap: 0 12px;
  }
  .service-tabs button {
    padding: 15px 7px;
    gap: 9px;
    font-size: 11px;
    line-height: 1.45;
    min-height: 67px;
  }
  .service-index {
    display: none;
  }
  .service-tabs svg {
    width: 19px;
    height: 19px;
  }
  .service-panel {
    min-height: 570px;
    padding: 26px 0 0;
  }
  .service-panel h3 {
    font-size: 29px;
  }
  .service-panel > p:not(.kicker) {
    font-size: 13px;
    margin-top: 20px;
  }
  .deliverables {
    padding-top: 22px;
    gap: 13px;
  }
  .deliverables li {
    font-size: 12px;
  }
  .service-proof {
    gap: 12px 18px;
  }
  .service-proof a {
    font-size: 10px;
  }
  .service-proof img {
    width: 20px;
    height: 20px;
  }
  .service-panel .text-link {
    font-size: 11px;
  }
  .delivery-grid {
    gap: 30px 24px;
  }
  .delivery-grid article {
    padding-top: 20px;
  }
  .delivery-number {
    font-size: 54px;
    margin-bottom: 24px;
  }
  .delivery-grid h3 {
    font-size: 22px;
  }
  .delivery-grid p:not(.kicker) {
    font-size: 12px;
  }
  .delivery-grid .kicker {
    font-size: 9px;
  }
  .delivery-note {
    font-size: 10px;
    line-height: 1.8;
  }
  .selected-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .selected-grid article:last-child {
    display: block;
    grid-column: auto;
  }
  .selected-grid article:last-child .product-visual {
    aspect-ratio: 1.45;
  }
  .selected-grid article:last-child .product-card-body {
    padding-top: 23px;
  }
  .product-top {
    margin-bottom: 14px;
    gap: 8px;
  }
  .product-card h3 {
    font-size: 26px;
  }
  .product-card p {
    font-size: 13px;
    margin-top: 15px;
  }
  .product-visual.portrait > img {
    height: 90%;
  }
  .section-end {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
  .section-end > span {
    max-width: none;
    font-size: 11px;
  }
  .section-end .button {
    font-size: 11px;
  }
  .security-feature h2 {
    font-size: 40px;
  }
  .security-feature p {
    font-size: 14px;
  }
  .security-stack article {
    transform: none;
    padding: 23px 22px;
    box-shadow: none;
  }
  .security-stack article:nth-child(2) {
    margin-left: 10px;
  }
  .security-stack article:nth-child(3) {
    margin-left: 20px;
  }
  .security-stack h3 {
    font-size: 21px;
  }
  .security-stack p {
    font-size: 11px;
  }
  .security-stack article > svg {
    width: 20px;
    right: 18px;
  }
  .security-stack article > span {
    font-size: 9px;
  }
  .faq-layout h2 {
    font-size: 35px;
  }
  .faq-layout .text-link {
    font-size: 11px;
  }
  .faq-list summary {
    font-size: 13px;
    line-height: 1.7;
    padding: 22px 0;
  }
  .faq-list p {
    font-size: 12px;
    padding: 0 0 22px;
    line-height: 1.85;
  }
  .closing {
    padding: 56px 0;
  }
  .closing h2 {
    font-size: 39px;
    max-width: 390px;
  }
  .closing p:not(.kicker) {
    font-size: 13px;
    max-width: 340px;
  }
  .closing-mark {
    display: none;
  }
  .closing .actions {
    gap: 22px;
  }
  .closing .button {
    font-size: 12px;
  }
  .closing .text-link {
    font-size: 11px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    gap: 22px;
    padding-bottom: 28px;
  }
  .footer-top .brand {
    width: 158px;
  }
  .footer-top > p {
    font-size: 16px;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding-bottom: 34px;
  }
  .footer-columns > div {
    grid-column: 1/-1;
  }
  .footer-columns > nav:last-child {
    grid-column: 1/-1;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-columns > nav:last-child .kicker {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  .footer-columns a {
    font-size: 11px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .page-hero {
    padding: 45px 0;
  }
  .page-hero h1 {
    font-size: 43px;
    line-height: 1.1;
  }
  .page-hero .kicker {
    margin-bottom: 22px;
  }
  .page-hero-bottom {
    margin-top: 24px;
  }
  .page-hero-bottom > p {
    font-size: 14px;
  }
  .page-hero-bottom .button {
    font-size: 12px;
  }
  .engagements h3 {
    font-size: 27px;
  }
  .engagement-number {
    font-size: 37px;
  }
  .engagements article {
    grid-template-columns: 40px 1fr;
    gap: 0 20px;
  }
  .engagements .kicker {
    font-size: 9px;
  }
  .engagements p {
    font-size: 12px;
  }
  .engagements .text-link {
    font-size: 10px;
  }
  .catalogue-section {
    padding-top: 28px;
  }
  .catalogue-filters {
    gap: 8px;
  }
  .catalogue-filters button {
    font-size: 11px;
    padding: 9px 12px;
  }
  .catalogue-toolbar {
    margin-bottom: 30px;
  }
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .catalogue-grid .product-visual {
    aspect-ratio: 1.45;
  }
  .catalogue-grid .product-card h3 {
    font-size: 29px;
  }
  .catalogue-grid .product-card p {
    font-size: 13px;
  }
  .catalogue-count {
    font-size: 10px;
  }
  .case-stage {
    padding: 30px 0;
  }
  .case-logo {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
  }
  .case-gallery.portrait .case-screen > img {
    height: 520px;
  }
  .case-screen > img {
    max-height: 520px;
  }
  .case-intro h2 {
    font-size: 35px;
  }
  .case-intro > p {
    font-size: 15px;
  }
  .case-story h3 {
    font-size: 24px;
  }
  .case-story article > p:not(.kicker) {
    font-size: 14px;
  }
  .case-depth p {
    font-size: 13px;
  }
  .case-tags {
    gap: 12px;
  }
  .case-tags > span {
    font-size: 10px;
  }
  .case-note {
    font-size: 10px;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .founder-copy h2 {
    font-size: 36px;
  }
  .founder-copy .founder-lede {
    font-size: 25px !important;
  }
  .founder-copy p:not(.kicker) {
    font-size: 13px;
  }
  .founder-signature {
    font-size: 51px;
    white-space: normal;
  }
  .founder-contact {
    font-size: 11px;
  }
  .signature-caption {
    font-size: 8px;
  }
  .founder-portrait img {
    aspect-ratio: 4/5;
  }
  .security-areas {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .security-areas article {
    padding-top: 24px;
  }
  .security-areas article > svg {
    margin-bottom: 20px;
  }
  .security-areas h3 {
    font-size: 27px;
  }
  .security-process {
    gap: 30px 24px;
  }
  .security-process span {
    font-size: 45px;
  }
  .security-process h3 {
    font-size: 22px;
  }
  .security-process p {
    font-size: 12px;
  }
  .security-output {
    padding: 25px 0;
    gap: 20px;
  }
  .security-output h3 {
    font-size: 24px;
  }
  .security-output p {
    font-size: 12px;
  }
  .disclosure h2 {
    font-size: 35px;
  }
  .disclosure > div > p:not(.kicker) {
    font-size: 13px;
  }
  .intake-aside h2 {
    font-size: 32px;
  }
  .intake-aside > p:not(.kicker) {
    font-size: 13px;
  }
  .project-form {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .project-form input,
  .project-form textarea,
  .project-form select {
    font-size: 16px;
  }
  .form-heading > span {
    font-size: 20px;
  }
  .form-heading small {
    font-size: 9px;
  }
  .project-form label {
    font-size: 11px;
  }
  .submission-curtain > span {
    font-size: 34px;
  }
  .confirmation h2 {
    font-size: 34px;
  }
  .confirmation p {
    font-size: 13px;
  }
  .legal-hero {
    padding: 48px 0;
  }
  .legal-hero h1 {
    font-size: 41px;
  }
  .legal-hero p {
    font-size: 13px;
  }
  .legal-copy h2 {
    font-size: 25px;
  }
  .legal-copy p,
  .legal-copy li {
    font-size: 13px;
  }
}
@media (max-width: 359px) {
  .shell,
  .section-shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero .kicker {
    font-size: 7px;
  }
  .header-cta {
    font-size: 9px;
    padding: 9px;
  }
  .brand {
    width: 120px;
  }
  .header-inner {
    gap: 5px;
  }
  .hero-copy {
    padding-top: 30px;
  }
  .hero-stage {
    height: 217px;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 12px;
  }
  .page-hero h1 {
    font-size: 37px;
  }
  .closing h2 {
    font-size: 34px;
  }
  .founder-signature {
    font-size: 44px;
  }
  .service-tabs button {
    font-size: 10px;
  }
  .service-panel h3 {
    font-size: 27px;
  }
  .catalogue-filters button {
    padding: 8px 11px;
  }
  .scene-switcher {
    gap: 18px;
  }
  .delivery-grid h3 {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .intro {
    display: none !important;
  }
  .trust-track {
    animation: none;
    transform: none;
  }
  .trust-window {
    overflow-x: auto;
    mask-image: none;
  }
  .trust-set + .trust-set {
    display: none;
  }
  .product-visual > img,
  .security-stack article {
    transform: none;
  }
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
  .submission-curtain {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .planner-tool {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .planner-result {
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid #31545e;
  }
  .planner-result h3 {
    font-size: 30px;
  }
  .planner-capability select {
    font-size: 16px;
  }
  .planner-inputs fieldset {
    gap: 8px;
  }
  .planner-inputs fieldset label {
    font-size: 11px;
    margin-right: 10px;
  }
}
@media print {
  .site-header,
  .site-footer,
  .intro,
  .hero-stage,
  .closing,
  .trust-section,
  .motion-toggle {
    display: none !important;
  }
  body,
  .paper,
  .dark,
  .page-hero {
    background: white !important;
    color: black !important;
  }
  .section {
    padding: 25px 0;
  }
  .shell {
    width: 100%;
  }
  p {
    color: #333 !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  a {
    text-decoration: underline;
  }
  .product-card {
    break-inside: avoid;
  }
}
