@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/assets/fonts/atkinson-hyperlegible-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/assets/fonts/atkinson-hyperlegible-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Silkscreen";
  src: url("/assets/fonts/silkscreen-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Silkscreen";
  src: url("/assets/fonts/silkscreen-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: oklch(0.105 0.018 300);
  --surface: oklch(0.155 0.03 300);
  --surface-raised: oklch(0.205 0.045 300);
  --surface-soft: oklch(0.255 0.055 300);
  --ink: oklch(0.955 0.015 290);
  --muted: oklch(0.735 0.035 290);
  --primary: oklch(0.87 0.135 78);
  --primary-deep: oklch(0.57 0.145 70);
  --button-ink: oklch(0.16 0.035 300);
  --data: oklch(0.79 0.145 220);
  --line: oklch(0.39 0.075 300);
  --line-soft: oklch(0.29 0.05 300);
  --danger: oklch(0.68 0.17 25);
  --success: oklch(0.77 0.13 155);
  --shell: 1240px;
  --radius: 8px;
  --z-nav: 20;
  --z-menu: 30;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Atkinson Hyperlegible", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  background-color: var(--bg);
  background-image:
    linear-gradient(
      to bottom,
      oklch(0.075 0.025 300 / 0.3),
      oklch(0.075 0.025 300 / 0.46)
    ),
    radial-gradient(circle at center, oklch(0.79 0.145 220 / 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at center, oklch(0.72 0.16 330 / 0.15) 0 1px, transparent 2px),
    linear-gradient(oklch(0.79 0.145 220 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.79 0.145 220 / 0.06) 1px, transparent 1px);
  background-position: center, 0 0, 42px 28px, 0 0, 0 0;
  background-size: 100% 100%, 96px 96px, 128px 128px, 48px 48px, 48px 48px;
  background-repeat: no-repeat, repeat, repeat, repeat, repeat;
  background-attachment: scroll;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.15rem, 7vw, 5.5rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing: -0.018em;
}

p {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 10vw, 144px);
}

.section-tight {
  padding-block: clamp(60px, 7vw, 96px);
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: var(--z-menu);
  padding: 10px 14px;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--primary);
  color: var(--button-ink);
  font-weight: 700;
  transition: transform 160ms var(--ease-out);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: oklch(0.105 0.018 300 / 0.94);
  border-bottom: 1px solid var(--line-soft);
}

.home-page .site-header {
  background: oklch(0.095 0.022 300 / 0.84);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 72px;
  display: block;
  align-items: center;
  padding-block: 10px;
}

.nav-console-label {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand span {
  font-family: "Silkscreen", monospace;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.desktop-nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(220px, 1.25fr);
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.desktop-nav > a:not(.button) {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid oklch(0.39 0.075 300 / 0.82);
  background:
    linear-gradient(180deg, oklch(0.22 0.055 300 / 0.88), oklch(0.13 0.03 300 / 0.94));
  color: var(--muted);
  font-family: "Silkscreen", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow:
    inset 0 1px 0 oklch(0.79 0.145 220 / 0.14),
    inset 0 -1px 0 oklch(0.72 0.16 330 / 0.12);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms var(--ease-out);
}

.desktop-nav > a:not(.button)::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  background: var(--data);
  box-shadow: 0 0 10px oklch(0.79 0.145 220 / 0.68);
  content: "";
}

.desktop-nav > a[aria-current="page"],
.desktop-nav > a:not(.button):hover {
  color: var(--ink);
  border-color: var(--primary);
  background:
    linear-gradient(180deg, oklch(0.27 0.07 300 / 0.96), oklch(0.17 0.04 300 / 0.98));
  transform: translateY(-1px);
}

.desktop-nav > a[aria-current="page"]::before,
.desktop-nav > a:not(.button):hover::before {
  background: var(--primary);
  box-shadow: 0 0 12px oklch(0.87 0.135 78 / 0.72);
}

.desktop-nav > .button {
  width: 100%;
  min-height: 50px;
  padding-inline: 16px;
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  font-family: "Silkscreen", monospace;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease-out), opacity 120ms ease;
}

.nav-toggle span {
  position: absolute;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--primary);
  color: var(--button-ink);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 160ms ease;
}

.button:hover {
  background: oklch(0.91 0.11 78);
}

.button:active {
  transform: scale(0.97);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--surface-raised);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.hero {
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
  padding-block: clamp(44px, 6vw, 76px);
}

.home-page .hero {
  background:
    linear-gradient(
      90deg,
      oklch(0.08 0.02 300 / 0.86) 0%,
      oklch(0.08 0.02 300 / 0.62) 36%,
      oklch(0.08 0.02 300 / 0.18) 72%,
      transparent 100%
    );
  background-color: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 10.5ch;
}

.hero-copy p {
  max-width: 36rem;
  margin-top: 24px;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

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

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow:
    0 0 0 1px oklch(0.67 0.11 300 / 0.22),
    0 24px 70px oklch(0.04 0.02 300 / 0.58);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  isolation: isolate;
  animation: hero-reveal 720ms var(--ease-out) both;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid oklch(0.67 0.11 300 / 0.7);
  clip-path: inherit;
  pointer-events: none;
  content: "";
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: min(68dvh, 680px);
  min-height: 0;
  aspect-ratio: 1586 / 992;
  object-fit: contain;
  object-position: center;
  image-rendering: pixelated;
}

@keyframes hero-reveal {
  from {
    opacity: 0.35;
    clip-path: polygon(18px 0, 18px 0, 18px 100%, 18px 100%, 0 100%, 0 18px);
  }
  to {
    opacity: 1;
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  }
}

.capability-strip {
  border-block: 1px solid var(--line-soft);
}

.home-page .capability-strip {
  background: oklch(0.105 0.025 300 / 0.62);
  backdrop-filter: blur(10px);
}

.home-page main > .section,
.home-page main > .section-tight {
  --section-tone-start: oklch(0.075 0.025 300 / 0.7);
  --section-tone-end: oklch(0.09 0.03 300 / 0.78);
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(90deg, var(--section-tone-start), var(--section-tone-end)),
    radial-gradient(circle at center, oklch(0.79 0.145 220 / 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at center, oklch(0.72 0.16 330 / 0.16) 0 1px, transparent 2px),
    linear-gradient(oklch(0.79 0.145 220 / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.79 0.145 220 / 0.07) 1px, transparent 1px);
  background-position: center, 12% 18%, 82% 36%, 0 0, 0 0;
  background-size: cover, 112px 112px, 148px 148px, 52px 52px, 52px 52px;
  background-repeat: no-repeat, repeat, repeat, repeat, repeat;
  border-top: 1px solid oklch(0.46 0.09 300 / 0.34);
}

.home-page main > .section:nth-of-type(4n),
.home-page main > .section-tight:nth-of-type(4n) {
  --section-tone-start: oklch(0.075 0.025 300 / 0.62);
  --section-tone-end: oklch(0.09 0.03 300 / 0.72);
}

.home-page main > .section:nth-of-type(4n + 2),
.home-page main > .section-tight:nth-of-type(4n + 2) {
  --section-tone-start: oklch(0.075 0.025 300 / 0.78);
  --section-tone-end: oklch(0.09 0.03 300 / 0.84);
}

.home-page main > .section :is(h2, h3, p, li, a, span),
.home-page main > .section-tight :is(h2, h3, p, li, a, span) {
  text-shadow: 0 2px 14px oklch(0.025 0.018 300 / 0.96);
}

.home-page .money-panel,
.home-page .process li,
.home-page .pricing-factors span,
.home-page .faq-nav,
.home-page .industry-tile:not(:first-child) {
  background-color: oklch(0.155 0.03 300 / 0.9);
  box-shadow: 0 18px 48px oklch(0.04 0.02 300 / 0.24);
}

.home-page .money-panel:nth-child(2),
.home-page .security-band,
.home-page .security-checks {
  background-color: oklch(0.205 0.045 300 / 0.9);
}

.capability-strip .shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, auto);
  align-items: center;
  gap: 22px;
}

.capability-strip p {
  color: var(--ink);
  font-weight: 700;
}

.capability-strip span {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-family: "Silkscreen", monospace;
  font-size: 0.67rem;
  white-space: nowrap;
}

.capability-strip span::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--data);
  content: "";
  box-shadow: 4px 4px 0 oklch(0.45 0.12 220);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-heading p {
  max-width: 58ch;
  font-size: 1.12rem;
}

.intro-architecture {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 8vw, 108px);
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 116px;
}

.intro-copy p {
  margin-top: 24px;
}

.rail-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.rail-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line-soft);
}

.rail-list strong {
  color: var(--ink);
  font-family: "Silkscreen", monospace;
  font-size: 0.74rem;
  line-height: 1.45;
}

.rail-list p {
  max-width: 52ch;
}

.money-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.money-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 62px);
  overflow: hidden;
  background: var(--surface);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.money-panel:nth-child(2) {
  background: var(--surface-raised);
}

.money-panel h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.money-panel p {
  margin-top: 22px;
}

.money-route {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.money-route span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: "Silkscreen", monospace;
  font-size: 0.66rem;
  text-align: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-template-rows: 280px 240px;
  gap: 14px;
}

.industry-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 180ms var(--ease-out), background-color 180ms ease;
}

.industry-tile:nth-child(1) {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 24% 28%, oklch(0.87 0.135 78 / 0.72) 0 5px, transparent 6px),
    linear-gradient(135deg, transparent 0 48%, oklch(0.79 0.145 220 / 0.32) 48.2% 48.8%, transparent 49%),
    linear-gradient(45deg, transparent 0 68%, oklch(0.72 0.16 330 / 0.24) 68.2% 68.8%, transparent 69%),
    repeating-linear-gradient(0deg, oklch(0.79 0.145 220 / 0.08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, oklch(0.79 0.145 220 / 0.08) 0 1px, transparent 1px 32px),
    linear-gradient(145deg, oklch(0.24 0.08 290), oklch(0.105 0.03 300));
}

.industry-tile:nth-child(4) {
  grid-column: 2 / 4;
}

.industry-tile h3 {
  max-width: 14ch;
}

.industry-tile p {
  max-width: 34ch;
}

.industry-tile::after {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--primary);
  font-family: "Silkscreen", monospace;
  font-size: 0.72rem;
  content: "ENTER";
}

.platform-ledger {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(36px, 7vw, 92px);
}

.platform-intro {
  align-self: start;
}

.platform-intro p {
  margin-top: 24px;
}

.ledger {
  border-top: 1px solid var(--line);
}

.ledger-row {
  display: grid;
  grid-template-columns: 64px minmax(150px, 0.55fr) 1fr;
  gap: 22px;
  align-items: start;
  padding-block: 28px;
  border-bottom: 1px solid var(--line-soft);
}

.ledger-row > span {
  color: var(--data);
  font-family: "Silkscreen", monospace;
  font-size: 0.7rem;
}

.ledger-row strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: launch;
}

.process li {
  min-height: 280px;
  padding: 30px 24px;
  background: var(--surface);
  counter-increment: launch;
}

.process li::before {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 48px;
  background: var(--primary);
  color: var(--button-ink);
  font-family: "Silkscreen", monospace;
  font-size: 0.72rem;
  content: counter(launch);
}

.process h3 {
  font-size: 1.45rem;
}

.process p {
  margin-top: 16px;
}

.security-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  background: var(--surface-raised);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.security-copy {
  padding: clamp(38px, 6vw, 76px);
}

.security-copy p {
  margin-top: 24px;
}

.security-copy .text-link {
  display: inline-block;
  margin-top: 30px;
}

.security-checks {
  list-style: none;
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 62px);
  background: var(--surface);
}

.security-checks li {
  position: relative;
  padding: 20px 0 20px 44px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

.security-checks li:last-child {
  border-bottom: 0;
}

.security-checks li::before {
  position: absolute;
  top: 26px;
  left: 4px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--data);
  content: "";
}

.pricing-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.pricing-brief p {
  margin-top: 22px;
}

.pricing-factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pricing-factors span {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
}

.faq-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

.faq-intro {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.faq-nav {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: var(--surface);
}

.faq-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-left: 2px solid transparent;
  color: var(--muted);
  text-decoration: none;
}

.faq-nav a[aria-current="true"],
.faq-nav a:hover {
  border-left-color: var(--primary);
  color: var(--ink);
  background: var(--surface-raised);
}

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

.faq-answer {
  padding-block: 34px 42px;
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 112px;
}

.faq-answer h3 {
  max-width: 26ch;
}

.faq-answer p {
  margin-top: 18px;
}

.pre-footer-cta {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--primary);
  color: var(--button-ink);
}

.pre-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
}

.pre-footer-cta h2 {
  max-width: 17ch;
}

.pre-footer-cta p {
  margin-top: 18px;
  color: oklch(0.27 0.05 75);
}

.pre-footer-cta .button {
  border-color: var(--button-ink);
  background: var(--button-ink);
  color: var(--ink);
}

.pre-footer-cta .button:hover {
  background: oklch(0.22 0.045 300);
}

.site-footer {
  padding-block: 64px 30px;
  background: oklch(0.075 0.012 300);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: clamp(38px, 7vw, 92px);
}

.footer-company p {
  margin-top: 18px;
  max-width: 38ch;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.newsletter strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Silkscreen", monospace;
  font-size: 0.7rem;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.newsletter p {
  margin: 10px 0 16px;
  font-size: 0.95rem;
}

.newsletter-row {
  display: flex;
  gap: 8px;
}

.newsletter-row input {
  min-width: 0;
  flex: 1;
}

.newsletter-row .button {
  min-width: 110px;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.93rem;
}

.legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-inline a {
  color: var(--muted);
}

.breadcrumbs {
  padding-top: 32px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 10px;
  color: var(--line);
  content: "/";
}

.page-hero {
  padding-block: clamp(68px, 9vw, 122px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero p {
  max-width: 50ch;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
}

.page-hero .hero-actions {
  margin-top: 26px;
}

.service-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(48px, 9vw, 118px);
  align-items: start;
}

.prose {
  min-width: 0;
}

.prose > section {
  padding-block: 58px;
  border-top: 1px solid var(--line-soft);
}

.prose > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.prose h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.prose h3 {
  margin-top: 30px;
}

.prose p + p,
.prose p + ul,
.prose p + ol,
.prose ul + p,
.prose ol + p {
  margin-top: 18px;
}

.prose h2 + p,
.prose h3 + p,
.prose h2 + ul {
  margin-top: 24px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  color: var(--muted);
}

.prose li + li {
  margin-top: 10px;
}

.page-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  background: var(--surface);
}

.page-aside h2 {
  font-size: 1.4rem;
}

.page-aside p {
  margin-top: 16px;
}

.page-aside .button {
  width: 100%;
  margin-top: 22px;
}

.related-routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.related-routes a {
  min-height: 110px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.related-routes a:hover {
  background: var(--surface-raised);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(44px, 8vw, 108px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-list {
  list-style: none;
  margin-top: 32px;
}

.contact-list li {
  padding-block: 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.contact-form {
  padding: clamp(28px, 5vw, 58px);
  background: var(--surface);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.consent-label {
  color: var(--ink);
  font-weight: 700;
}

.field small {
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 150ms ease, background-color 150ms ease;
}

input::placeholder,
textarea::placeholder {
  color: oklch(0.68 0.03 290);
  opacity: 1;
}

input:hover,
select:hover,
textarea:hover {
  border-color: oklch(0.58 0.09 300);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.consent input {
  width: 22px;
  min-height: 22px;
  margin: 3px 0 0;
  accent-color: var(--primary-deep);
}

.consent-label {
  font-weight: 400;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-status {
  color: var(--muted);
}

[data-state="success"] .form-status {
  color: var(--success);
}

[data-state="error"] .form-status {
  color: var(--danger);
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.legal-page .prose {
  max-width: 820px;
}

.legal-page .prose h2 {
  margin-top: 56px;
}

.legal-page .prose h3 {
  margin-top: 34px;
}

.legal-page .prose p {
  margin-top: 18px;
}

.not-found {
  min-height: calc(100dvh - 72px);
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-code {
  color: var(--primary);
  font-family: "Silkscreen", monospace;
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 0.85;
}

.not-found h1 {
  max-width: none;
  margin-top: 24px;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.not-found p {
  margin: 18px auto 28px;
}

@media (hover: hover) and (pointer: fine) {
  .industry-tile:hover {
    transform: translateY(-4px);
    background-color: var(--surface-raised);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav > a:not(.button) {
    font-size: 0.95rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1.16fr);
  }

  .capability-strip .shell {
    grid-template-columns: 1fr repeat(2, auto);
  }

  .capability-strip span:nth-of-type(n + 3) {
    display: none;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 300px 240px 240px;
  }

  .industry-tile:nth-child(1) {
    grid-row: 1 / 3;
  }

  .industry-tile:nth-child(4) {
    grid-column: auto;
  }

  .industry-tile:nth-child(5) {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .nav-shell {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .nav-console-label {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: "Silkscreen", monospace;
    font-size: 0.72rem;
  }

  .nav-console-label::before {
    width: 8px;
    height: 8px;
    background: var(--data);
    box-shadow: 0 0 12px oklch(0.79 0.145 220 / 0.74);
    content: "";
  }

  .nav-toggle {
    position: relative;
    display: grid;
  }

  .desktop-nav {
    position: fixed;
    inset: 72px 18px auto;
    z-index: var(--z-menu);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .desktop-nav[data-open="true"] {
    display: flex;
  }

  .desktop-nav > a {
    width: 100%;
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .intro-architecture,
  .platform-ledger,
  .security-band,
  .pricing-brief,
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-visual {
    max-width: 760px;
  }

  .hero-visual img {
    max-height: none;
    min-height: 0;
  }

  .intro-copy,
  .contact-copy {
    position: static;
  }

  .money-split {
    grid-template-columns: 1fr;
  }

  .faq-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
  }

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

  .page-aside {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .section {
    padding-block: 76px;
  }

  .brand span {
    max-width: 180px;
  }

  .hero {
    padding-block: 48px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy p {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-visual img {
    min-height: 0;
    aspect-ratio: 1586 / 992;
    object-position: center;
  }

  .home-page main > .section,
  .home-page main > .section-tight,
  .home-page main > .section:nth-of-type(4n),
  .home-page main > .section-tight:nth-of-type(4n),
  .home-page main > .section:nth-of-type(4n + 2),
  .home-page main > .section-tight:nth-of-type(4n + 2) {
    --section-tone-start: oklch(0.075 0.025 300 / 0.78);
    --section-tone-end: oklch(0.09 0.03 300 / 0.86);
  }

  .capability-strip .shell {
    padding-block: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-strip p {
    grid-column: 1 / -1;
  }

  .capability-strip span:nth-of-type(n + 3) {
    display: block;
  }

  .rail-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .money-panel {
    min-height: 360px;
    padding: 30px 24px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .industry-tile,
  .industry-tile:nth-child(1),
  .industry-tile:nth-child(4),
  .industry-tile:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .industry-tile:nth-child(1) {
    min-height: 380px;
  }

  .ledger-row {
    grid-template-columns: 48px 1fr;
  }

  .ledger-row p {
    grid-column: 2;
  }

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

  .process li {
    min-height: 0;
  }

  .security-copy,
  .security-checks {
    padding: 32px 24px;
  }

  .pricing-factors {
    grid-template-columns: 1fr;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .faq-nav a {
    min-width: max-content;
    border-left: 0;
    border-bottom: 2px solid transparent;
    scroll-snap-align: start;
  }

  .faq-nav a[aria-current="true"],
  .faq-nav a:hover {
    border-bottom-color: var(--primary);
  }

  .pre-footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .field-full {
    grid-column: auto;
  }

  .related-routes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.7rem, 13vw, 3.4rem);
  }

  .capability-strip .shell {
    grid-template-columns: 1fr;
  }

  .capability-strip p,
  .capability-strip span {
    grid-column: auto;
  }

  .money-route {
    grid-template-columns: 1fr;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row .button {
    width: 100%;
  }
}

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

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

  .hero-visual {
    animation: none;
  }
}
