@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Manrope:wght@400;500;600;700&family=Roboto+Mono:wght@500;600&display=swap");

:root {
  --ink: #111111;
  --ink-soft: #3f3f3b;
  --muted: #6a6a65;
  --paper: #f3f3f1;
  --paper-deep: #e4e4df;
  --white: #ffffff;
  --line: #d8d8d4;
  --line-dark: #3b3b3b;
  --accent: #ff5a36;
  --accent-dark: #b92f15;
  --accent-soft: #fff0eb;
  --signal: #d8ff4f;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", "Helvetica Neue", sans-serif;
  --mono: "Roboto Mono", monospace;
  --max: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}
.section,
.v2-section {
  padding: 126px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-white {
  background: var(--white);
}
.section-ink {
  color: var(--white);
  background: var(--ink);
}
.section-blue,
.v2-cta {
  color: var(--ink);
  background: var(--accent);
}
.rule {
  border-top: 1px solid var(--line);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-wrap: balance;
}
h1 {
  max-width: 1100px;
  font-size: clamp(4rem, 7.8vw, 8.2rem);
  text-transform: uppercase;
}
h2 {
  max-width: 920px;
  font-size: clamp(3.2rem, 5.4vw, 6.2rem);
  text-transform: uppercase;
}
h3 {
  font-size: 1.8rem;
  line-height: 1;
}
h2[id],
h3[id],
article[id],
section[id] {
  scroll-margin-top: 96px;
}
p {
  margin: 0 0 1rem;
}

.eyebrow,
.v2-kicker,
.label,
.study-sector,
.footer-title,
.route-head,
.flow-index,
.unavailable {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow,
.v2-kicker {
  margin: 0 0 24px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  margin: 0 10px 3px 0;
  background: var(--accent);
}
.v2-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
}
.v2-kicker > span {
  width: 24px;
  height: 3px;
  background: var(--accent);
}
.section-ink .eyebrow {
  color: #cccccc;
}
.section-ink .eyebrow::before,
.v2-cta .v2-kicker > span {
  background: var(--accent);
}
.lede {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}
.section-ink .lede {
  color: #bdbdbd;
}
.muted {
  color: var(--muted);
}
.kicker {
  color: var(--accent-dark);
}

/* Shared navigation and actions */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}
.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand-domain {
  color: var(--accent);
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: var(--ink) url("assets/logo-mark.svg") center / cover no-repeat;
}
.brand-mark::before {
  content: none;
}
.brand-mark::after {
  content: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #333333;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-dark);
}
.nav-links .button {
  color: var(--white);
}
.nav-links .button:hover {
  color: var(--white);
}
.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: 0;
  color: var(--ink);
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}
.button:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}
.button-secondary {
  border-color: var(--ink);
  background: transparent;
}
.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}
.button-light {
  border-color: var(--white);
  background: var(--white);
}
.button-light:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--accent);
}
.button-small {
  min-height: 42px;
  padding: 8px 14px;
}
.button span {
  transition: transform 180ms ease;
}
.button:hover span {
  transform: translate(2px, -2px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.actions .button {
  color: var(--white);
}
.text-link,
.v2-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

/* Homepage */
.v2-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 108px 0 0;
}
.v2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.v2-hero-copy {
  max-width: 980px;
}
.v2-hero-grid > *,
.v2-hero-bottom > *,
.v2-intro-grid > *,
.v2-section-head > *,
.v2-proof-grid > *,
.v2-demo-grid > *,
.v2-faq-grid > *,
.v2-cta-grid > * {
  min-width: 0;
}
.v2-hero h1 {
  max-width: 920px;
}
.v2-hero h1 em,
.v2-section h2 em,
.v2-proof h2 em,
.v2-demo h2 em {
  color: var(--accent);
  font-style: normal;
}
.v2-cta h2 em {
  color: var(--ink);
  font-style: normal;
}
.v2-hero-bottom {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 38px;
  align-items: end;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.v2-hero-bottom > p {
  margin: 0;
  color: #c4c4bc;
  font-size: 0.92rem;
}
.v2-hero-bottom .actions {
  align-items: center;
  margin: 0;
}
.v2-hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(46% 42% at 12% 4%, rgba(255, 90, 54, 0.13) 0%, transparent 68%),
    radial-gradient(42% 40% at 90% 96%, rgba(216, 255, 79, 0.09) 0%, transparent 68%),
    radial-gradient(120% 130% at 50% 0%, #21241d 0%, #14150f 52%, #0a0b09 100%);
}
.v2-hero-bg::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(120% 105% at 50% 28%, transparent 50%, rgba(4, 5, 4, 0.5) 100%);
}
.v2-hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: hero-grid-drift 26s linear infinite;
}
.v2-hero-bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1.4px);
  background-size: 56px 56px;
  background-position: 28px 28px;
  animation: hero-grid-drift 26s linear infinite;
}
.v2-hero-pipeline {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.4;
}
.pipeline-line {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 0.14;
  stroke-dasharray: 0.5 1;
  animation: pipeline-dash 14s linear infinite;
}
.pipeline-node {
  fill: rgba(255, 255, 255, 0.28);
  transform-box: fill-box;
  transform-origin: center;
  animation: pipeline-node-flash 8s ease-out infinite both;
}
.pipeline-packet {
  fill: var(--signal);
  filter: drop-shadow(0 0 2px rgba(216, 255, 79, 0.65));
}
.pipeline-done {
  position: absolute;
  z-index: 1;
  top: 63.3%;
  left: 96%;
  padding: 5px 9px;
  border: 1px solid rgba(216, 255, 79, 0.3);
  color: rgba(223, 255, 130, 0.85);
  background: rgba(12, 13, 11, 0.8);
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  animation: pipeline-pop 8s ease-out infinite;
}
@keyframes hero-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}
@keyframes pipeline-dash {
  to { stroke-dashoffset: -12; }
}
@keyframes pipeline-node-flash {
  0%, 100% { fill: rgba(255, 255, 255, 0.28); transform: scale(1); filter: none; }
  4% { fill: var(--signal); transform: scale(2); filter: drop-shadow(0 0 2px rgba(216, 255, 79, 0.75)); }
  14%, 96% { fill: rgba(216, 255, 79, 0.45); transform: scale(1); filter: none; }
}
@keyframes pipeline-pop {
  0%, 88% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  92%, 97% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
}
.v2-hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 46px;
  padding-block: 22px;
  color: #8f8f87;
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}
.v2-hero-meta span:not(:first-child)::before {
  content: "/";
  margin-right: 46px;
  color: var(--accent);
}
.v2-stack {
  border-block: 1px solid var(--line);
}
.v2-stack-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 24px;
}
.v2-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}
.stack-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}
.stack-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #777772;
  font-family: var(--display);
}
.stack-logo svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}
.stack-logo svg path,
.stack-logo svg rect,
.stack-logo svg circle {
  vector-effect: non-scaling-stroke;
}
.stack-logo:nth-child(n + 3) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stack-logo-wide svg {
  width: 31px;
}
.stack-logo b {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.v2-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}
.v2-photo-pair {
  position: relative;
  min-height: 620px;
  padding-right: 20%;
}
.v2-photo-pair img {
  object-fit: cover;
}
.photo-main {
  width: 100%;
  height: 590px;
  filter: saturate(0.75);
}
.photo-detail {
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 42%;
  padding: 9px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}
.photo-detail img {
  width: 100%;
  height: 190px;
}
.photo-detail span {
  display: block;
  padding: 8px 3px 2px;
  font-family: var(--mono);
  font-size: 0.48rem;
}
.v2-statement > p:not(.v2-kicker) {
  max-width: 650px;
  margin: 34px 0 46px;
  color: #5b5b57;
}
.v2-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.v2-facts div {
  padding: 18px 18px 0 0;
}
.v2-facts strong,
.v2-facts span {
  display: block;
}
.v2-facts strong {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
}
.v2-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.5;
}
.v2-workflows {
  background: var(--paper);
}
.v2-section-head {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.v2-section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.v2-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.work-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}
.work-card-wide {
  min-height: 560px;
}
.work-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) brightness(0.64);
  transition:
    transform 0.45s ease,
    filter 0.3s ease;
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}
.work-card:hover img {
  transform: scale(1.025);
  filter: grayscale(0) brightness(0.75);
}
.work-index,
.work-card > div,
.work-arrow {
  position: absolute;
  z-index: 2;
}
.work-index {
  top: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 0.6rem;
}
.work-card > div {
  right: 70px;
  bottom: 26px;
  left: 24px;
}
.work-card h3 {
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  text-transform: uppercase;
}
.work-card p {
  max-width: 400px;
  margin: 7px 0 0;
  color: #dddddd;
  font-size: 0.72rem;
}
.work-arrow {
  right: 25px;
  bottom: 29px;
  font-size: 1.3rem;
}
.v2-service-list {
  border-top: 2px solid var(--ink);
}
.v2-service-row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 55px 1fr 250px 30px;
  gap: 32px;
  align-items: center;
  min-height: 176px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition:
    color 220ms ease,
    padding 220ms ease;
}
.v2-service-row::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}
.v2-service-row:hover,
.v2-service-row:focus-visible {
  padding-inline: 22px;
  color: var(--white);
}
.v2-service-row:hover::before,
.v2-service-row:focus-visible::before {
  transform: scaleY(1);
}
.v2-service-row > span {
  font-family: var(--mono);
  font-size: 0.62rem;
}
.v2-service-row h3 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  text-transform: uppercase;
}
.v2-service-row p {
  max-width: 580px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.v2-service-row:hover p {
  color: #bbbbbb;
}
.v2-service-row img {
  width: 250px;
  height: 120px;
  object-fit: cover;
  filter: grayscale(0.7);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}
.v2-service-row:hover img {
  filter: grayscale(0);
  transform: scale(0.95);
}
.v2-service-row b {
  color: var(--accent);
  font-size: 1.3rem;
}
.v2-proof {
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--ink);
}
.v2-proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr;
  gap: 80px;
}
.proof-copy p:not(.v2-kicker) {
  max-width: 590px;
  margin: 32px 0;
  color: #aaaaaa;
}
.proof-orbit {
  position: relative;
  min-height: 420px;
  border: 1px solid #363636;
  background: radial-gradient(circle at center, #262626, var(--ink) 65%);
}
.proof-orbit span {
  position: absolute;
  inset: 15%;
  border: 2px solid #494949;
  border-radius: 50%;
  transform: rotate(25deg);
}
.proof-orbit .orbit-two {
  inset: 24% 6%;
  border-color: var(--accent);
  transform: rotate(-32deg);
}
.proof-orbit .orbit-three {
  inset: 8% 32%;
  border-color: #777777;
  transform: rotate(58deg);
}
.proof-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  text-align: center;
  transform: translate(-50%, -50%);
}
.proof-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.proof-cards article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #3b3b3b;
  background: #1c1c1c;
}
.proof-cards span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.58rem;
}
.proof-cards h3 {
  margin: 46px 0 10px;
  text-transform: uppercase;
}
.proof-cards p {
  margin: 0;
  color: #999999;
  font-size: 0.72rem;
}
.v2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}
.v2-process-grid article {
  min-height: 320px;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.v2-process-grid article:last-child {
  border: 0;
}
.v2-process-grid span {
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
}
.v2-process-grid h3 {
  margin: 100px 0 14px;
  font-size: 2rem;
  text-transform: uppercase;
}
.v2-process-grid p {
  color: var(--muted);
  font-size: 0.75rem;
}
.v2-demo {
  padding: 0 0 126px;
}
.v2-demo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  background: var(--paper);
}
.demo-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  padding: clamp(54px, 6vw, 84px) clamp(24px, 4vw, 60px);
  background: #151515;
}
.demo-visual > span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--accent);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 600;
}
.demo-board {
  width: min(100%, 620px);
  padding: 20px;
  border: 1px solid #515151;
  color: var(--white);
  background: #202020;
  box-shadow: 18px 18px 0 var(--accent);
  transform: rotate(-2deg);
}
.demo-board-head,
.demo-board-log {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 0.56rem;
}
.demo-board-head {
  padding-bottom: 16px;
  border-bottom: 1px solid #4a4a4a;
}
.demo-board-head span:last-child {
  color: var(--signal);
}
.demo-board-route {
  display: grid;
  margin-block: 16px;
  border-top: 1px solid #484848;
  border-left: 1px solid #484848;
}
.demo-board-route div {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 17px;
  border-right: 1px solid #484848;
  border-bottom: 1px solid #484848;
}
.demo-board-route div::after {
  content: "↓";
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: -10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 0.65rem;
}
.demo-board-route div:last-child::after {
  display: none;
}
.demo-board-route small {
  color: #999999;
  font-family: var(--mono);
  font-size: 0.5rem;
}
.demo-board-route strong {
  font-size: 0.8rem;
}
.demo-board-route i {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.5rem;
  font-style: normal;
}
.demo-board-log {
  align-items: flex-start;
  padding-top: 15px;
  border-top: 1px solid #484848;
  color: #999999;
}
.demo-board-log p {
  margin: 0;
  text-align: right;
}
.demo-copy-v2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 82px);
}
.demo-copy-v2 > p:not(.v2-kicker) {
  margin: 30px 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.demo-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 40px;
  padding-block: 19px;
  border-block: 1px solid #bbbbbb;
  font-family: var(--mono);
  font-size: 0.58rem;
}
.demo-route i {
  color: var(--accent);
  font-style: normal;
}
.demo-copy-v2 .v2-link {
  align-self: flex-start;
}
.v2-faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 120px;
}
.v2-faq {
  border-top: 2px solid var(--ink);
}
.v2-faq details {
  border-bottom: 1px solid var(--line);
}
.v2-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.v2-faq summary::-webkit-details-marker {
  display: none;
}
.v2-faq summary span {
  color: var(--accent);
  font-size: 1.2rem;
}
.v2-faq details p {
  max-width: 680px;
  padding: 0 30px 24px 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.v2-cta {
  padding: 104px 0;
}
.v2-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.5fr;
  gap: 120px;
  align-items: end;
}
.v2-cta-grid > div:last-child p {
  margin-bottom: 28px;
  font-size: 0.86rem;
}

/* Interior page foundations */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0 90px;
  color: var(--white);
  border-bottom: 1px solid #333333;
  background: var(--ink);
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: min(58%, 880px);
  background-image: var(--hero-image, none);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.3) saturate(0.7) contrast(1.08);
  opacity: 0.62;
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      var(--ink) 42%,
      rgba(17, 17, 17, 0.82) 68%,
      rgba(17, 17, 17, 0.46) 100%
    ),
    linear-gradient(0deg, rgba(17, 17, 17, 0.58), transparent 55%);
  pointer-events: none;
}
.hero-services {
  --hero-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1400&q=85");
}
.hero-integrations {
  --hero-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1400&q=85");
}
.hero-workflows {
  --hero-image: url("https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=1400&q=85");
}
.hero-demonstration {
  --hero-image: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1400&q=85");
}
.hero-contact {
  --hero-image: url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1400&q=85");
}
.hero-privacy {
  --hero-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1400&q=85");
}
.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(4rem, 7vw, 7rem);
}
.page-hero .lede {
  margin-top: 30px;
  color: #c8c8c4;
}
.page-hero .eyebrow {
  color: #cccccc;
}
.breadcrumbs {
  margin-bottom: 36px;
  color: #999999;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}
.breadcrumbs a {
  text-decoration: none;
}

.notice {
  padding: 20px;
  border-left: 4px solid var(--accent);
  color: var(--ink-soft);
  background: var(--accent-soft);
}
.notice strong {
  color: var(--ink);
}
.notice-spaced {
  margin-top: 28px;
}
.notice-lower {
  margin-top: 44px;
}
.lede-spaced {
  margin-top: 24px;
}
.lede-compact {
  margin-top: 18px;
}
.heading-compact {
  font-size: 2.6rem;
}
.demo-heading {
  margin: 22px 0 16px;
  font-size: 1.8rem;
}
.subheading-spaced {
  margin: 28px 0 16px;
}
.subheading-compact {
  margin-bottom: 16px;
}
.intro-note {
  max-width: 800px;
  margin-top: 20px;
}
.demo-workflow {
  margin-top: 25px;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(46px, 8vw, 110px);
}
.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 94px);
  align-items: center;
}
.split > *,
.workflow > *,
.contact-grid > * {
  min-width: 0;
}
.plain-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}
.plain-list li {
  margin: 7px 0;
}
.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 31px;
}
.check-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}
.section-ink .check-list li::before {
  color: var(--accent);
}

.service-block {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(38px, 7vw, 80px);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.service-block h2 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
}
.service-price {
  margin: 22px 0 3px;
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 600;
}
.service-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 34px;
}
.service-meta h3,
.study-cell h3 {
  margin-bottom: 15px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-wrap {
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  min-width: 760px;
  margin-top: 36px;
  border-collapse: collapse;
  border-top: 2px solid var(--ink);
  background: var(--white);
}
.pricing-table th,
.pricing-table td {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.pricing-table th {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-table td:first-child {
  font-weight: 800;
}
.unavailable {
  display: inline-block;
  margin-top: 5px;
  color: var(--accent-dark);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.category {
  padding: 32px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}
.category h3 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.category h3 span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0;
}
.chips,
.study-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.study-flow {
  margin-top: 19px;
}
.chip,
.study-flow span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.value-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-item,
.proof {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-item strong {
  display: block;
  margin-bottom: 42px;
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.8rem;
}
.section-ink .value-grid,
.section-ink .value-item,
.section-ink .proof-grid,
.section-ink .proof {
  border-color: var(--line-dark);
}
.section-ink .value-item strong {
  color: var(--accent);
}
.proof h3::before {
  content: "●";
  margin-right: 10px;
  color: var(--accent);
  font-size: 0.6rem;
  vertical-align: middle;
}
.proof p {
  margin-top: 18px;
  color: #aaaaaa;
}

.study-list {
  display: grid;
  gap: 36px;
  margin-top: 42px;
}
.study-card {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 9px 9px 0 var(--paper-deep);
}
.study-head {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 38px;
  padding: 36px;
  border-bottom: 1px solid var(--ink);
}
.study-sector {
  color: var(--accent-dark);
}
.study-head h2 {
  margin-top: 14px;
  font-size: clamp(2.5rem, 3.8vw, 4.3rem);
}
.study-summary {
  align-self: end;
  color: var(--ink-soft);
}
.study-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.study-cell {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
}
.study-cell:last-child {
  border-right: 0;
}
.study-cell p,
.study-cell li {
  color: var(--ink-soft);
}
.measure-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.measure-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.measure-list li:last-child {
  border-bottom: 0;
}

.route-panel {
  position: relative;
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--accent);
}
.route-panel-static {
  transform: none;
}
.route-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.live {
  color: var(--accent-dark);
}
.route {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 0 2px 34px;
}
.route::before {
  content: "";
  position: absolute;
  top: 31px;
  bottom: 18px;
  left: 10px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent) 78%, var(--ink) 78%);
}
.route-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.9rem;
}
.route-step::before {
  content: "";
  position: absolute;
  left: -30px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.route-step small {
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
}
.route-alert {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.route-alert::before {
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.label {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--accent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 8vw, 92px);
}
.contact-aside {
  position: sticky;
  top: 112px;
  align-self: start;
}
.contact-points {
  margin-top: 37px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.contact-point {
  margin-bottom: 23px;
}
.contact-point strong {
  display: block;
}
.form {
  padding: 38px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--accent);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}
.field {
  display: grid;
  gap: 8px;
}
.field-full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.8rem;
  font-weight: 700;
}
.field .optional {
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #999999;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-dark);
  outline: 2px solid rgba(255, 90, 54, 0.2);
}
.field textarea {
  min-height: 145px;
  resize: vertical;
}
.field-help {
  color: var(--muted);
  font-size: 0.75rem;
}
.consent {
  display: flex;
  gap: 11px;
  margin: 23px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent);
}
.honeypot {
  position: absolute;
  left: -10000px;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
}
.form-status.visible {
  display: block;
}
.form-status.error {
  border-color: var(--ink);
}
.form [disabled] {
  cursor: wait;
  opacity: 0.7;
}
.faq {
  margin-top: 32px;
  border-top: 2px solid var(--ink);
}
.faq details {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq details p {
  max-width: 760px;
  margin-top: 15px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 80px 0;
}
.cta-band .eyebrow::before {
  background: var(--white);
}
.cta-band h2 {
  max-width: 900px;
}

/* Shared footer */
.site-footer {
  overflow: hidden;
  padding: 74px 0 26px;
  color: #cccccc;
  background: #0d0d0d;
}
.site-footer .brand {
  color: var(--white);
}
.site-footer .brand-mark {
  background-color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  gap: 52px;
}
.footer-copy {
  max-width: 380px;
  margin-top: 21px;
  color: #999999;
}
.footer-title {
  margin-bottom: 15px;
  color: #999999;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: #cccccc;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}
.footer-links a:hover {
  color: var(--white);
  text-decoration-color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 23px;
  border-top: 1px solid #333333;
  color: #888888;
  font-family: var(--mono);
  font-size: 0.65rem;
}
.v2-footer-top {
  display: grid;
  grid-template-columns: 0.6fr 1fr auto;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid #363636;
}
.footer-pitch h2 {
  max-width: 530px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
}
.footer-pitch p {
  max-width: 440px;
  margin: 22px 0 0;
  color: #aaaaaa;
  font-size: 0.78rem;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-cta:hover {
  background: var(--white);
}
.v2-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 830px;
  margin: 50px 0 70px auto;
  gap: 50px;
}
.v2-footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
}
.v2-footer-links span {
  margin-bottom: 8px;
  color: #999999;
  font-family: var(--mono);
  font-size: 0.54rem;
}
.v2-footer-links a {
  position: relative;
  width: max-content;
  color: #cccccc;
  font-size: 0.75rem;
  text-decoration: none;
}
.v2-footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.v2-footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.v2-footer-links p {
  color: #aaaaaa;
  font-size: 0.72rem;
}
.v2-wordmark {
  margin-bottom: -3vw;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(8rem, 21vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.65;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.08;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 0;
  }
  .menu-toggle {
    display: block;
  }
  .v2-hero-grid,
  .v2-intro-grid,
  .v2-demo-grid,
  .v2-faq-grid,
  .v2-cta-grid,
  .split,
  .workflow,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .v2-section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .v2-service-row {
    grid-template-columns: 45px 1fr 160px 24px;
  }
  .v2-service-row img {
    width: 160px;
  }
  .v2-proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-cards {
    grid-column: auto;
  }
  .v2-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v2-faq-grid,
  .v2-cta-grid {
    gap: 60px;
  }
  .service-block {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .value-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .study-head {
    grid-template-columns: 1fr;
  }
  .study-body {
    grid-template-columns: 1fr;
  }
  .study-cell {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .study-cell:last-child {
    border-bottom: 0;
  }
  .contact-aside {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .v2-footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cta {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--max));
  }
  .section,
  .v2-section {
    padding: 82px 0;
  }
  h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }
  h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }
  .header-cta {
    display: none;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
  }
  .actions .button {
    width: 100%;
    white-space: normal;
  }
  .v2-hero {
    padding-top: 56px;
  }
  .v2-hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 38px;
  }
  .v2-hero-meta {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .v2-hero-meta span:not(:first-child)::before {
    margin-right: 20px;
  }
  .v2-stack-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .v2-photo-pair {
    min-height: 460px;
    padding-right: 12%;
  }
  .photo-main {
    height: 440px;
  }
  .photo-detail {
    width: 48%;
  }
  .photo-detail img {
    height: 130px;
  }
  .v2-facts,
  .v2-work-grid,
  .proof-cards,
  .v2-footer-links {
    grid-template-columns: 1fr;
  }
  .work-card,
  .work-card-wide {
    min-height: 410px;
  }
  .v2-service-row {
    grid-template-columns: 34px 1fr 24px;
    gap: 12px;
    padding: 26px 0;
  }
  .v2-service-row img {
    display: none;
  }
  .v2-service-row b {
    grid-column: 3;
    grid-row: 1;
  }
  .proof-orbit {
    min-height: 340px;
  }
  .v2-process-grid {
    grid-template-columns: 1fr;
  }
  .v2-process-grid article {
    min-height: 235px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .v2-process-grid h3 {
    margin-top: 60px;
  }
  .v2-demo {
    padding-bottom: 82px;
  }
  .demo-visual {
    min-height: 520px;
    padding-inline: 25px;
  }
  .demo-board {
    box-shadow: 10px 10px 0 var(--accent);
  }
  .demo-copy-v2 {
    padding: 42px 24px;
  }
  .page-hero {
    padding: 72px 0 64px;
  }
  .page-hero::before {
    inset: 0;
    width: 100%;
    background-position: 62% center;
    opacity: 0.48;
  }
  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.72)),
      linear-gradient(0deg, var(--ink), transparent 60%);
  }
  .page-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }
  .category-grid,
  .service-meta,
  .value-grid,
  .proof-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .route-panel {
    padding: 15px;
    box-shadow: 7px 7px 0 var(--accent);
  }
  .route-step {
    align-items: flex-start;
    flex-direction: column;
  }
  .form {
    padding: 23px;
    box-shadow: 7px 7px 0 var(--accent);
  }
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .study-head,
  .study-cell {
    padding: 24px;
  }
  .footer-grid,
  .v2-footer-top {
    grid-template-columns: 1fr;
  }
  .footer-cta {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .v2-footer-links {
    margin-left: 0;
  }
  .v2-wordmark {
    font-size: 24vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
