/* Factlever V3.6 */
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Variable-v35.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Medium-v35.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  --navy: #081431;
  --navy-2: #0d1c42;
  --ink: #111b35;
  --ink-soft: #39455f;
  --muted: #5a6680;
  --paper: #f7f6f2;
  --white: #ffffff;
  --ice: #edf2f8;
  --line: #cfd7e5;
  --line-dark: rgba(255, 255, 255, 0.2);
  --cobalt: #315cff;
  --cobalt-dark: #2346d8;
  --sky: #8bcbff;
  --signal: #ad3026;
  --signal-soft: #fff0ed;
  --positive: #187451;
  --gutter: clamp(20px, 4vw, 56px);
  --section-space: clamp(76px, 9vw, 132px);
  --measure: 68ch;
  --measure-narrow: 52ch;
  --shadow-soft: 0 18px 54px rgba(8, 20, 49, 0.1);
  --shadow-strong: 0 28px 70px rgba(4, 12, 31, 0.24);
}

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

html {
  scroll-behavior: smooth;
}

body.v3-page {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

.v3-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.v3-page a {
  color: inherit;
}

.v3-page button,
.v3-page input,
.v3-page select {
  font: inherit;
}

.v3-page button,
.v3-page summary,
.v3-page a {
  -webkit-tap-highlight-color: transparent;
}

.v3-page :focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.v3-page h1,
.v3-page h2,
.v3-page h3,
.v3-page h4,
.v3-page p,
.v3-page figure {
  margin-top: 0;
}

.v3-page h1,
.v3-page h2,
.v3-page h3,
.v3-page h4 {
  margin-bottom: 0;
  color: inherit;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.v3-page h1 {
  max-width: 12ch;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.99;
}

.v3-page h2 {
  max-width: 20ch;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.04;
}

.v3-page h3 {
  font-size: clamp(24px, 2.2vw, 32px);
}

.v3-page h4 {
  font-size: clamp(21px, 1.8vw, 27px);
}

.v3-page p {
  text-wrap: pretty;
}

.v3-container {
  width: min(1240px, calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}

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

.v3-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy);
  color: var(--white);
}

.v3-header-inner {
  display: flex;
  width: min(1380px, calc(100% - (2 * var(--gutter))));
  min-height: 84px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.v3-brand {
  display: inline-flex;
  min-width: 190px;
  min-height: 44px;
  align-items: center;
}

.v3-brand img {
  width: 204px;
  height: auto;
}

.v3-global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.v3-global-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d9e2f4;
  font-size: 16px;
  font-weight: 590;
  text-decoration: none;
}

.v3-global-nav a:hover,
.v3-global-nav a[aria-current="page"] {
  color: var(--white);
}

.v3-global-nav .v3-nav-contact {
  padding-inline: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.v3-global-nav .v3-nav-contact:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.v3-mobile-nav {
  display: none;
  position: relative;
}

.v3-mobile-nav summary {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  cursor: pointer;
  list-style: none;
  place-items: center;
}

.v3-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.v3-menu-icon {
  position: relative;
  width: 20px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.v3-menu-icon::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  border-top: 2px solid currentColor;
  content: "";
}

.v3-mobile-nav[open] .v3-menu-icon {
  border-color: transparent;
}

.v3-mobile-nav[open] .v3-menu-icon::before,
.v3-mobile-nav[open] .v3-menu-icon::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  border-top: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.v3-mobile-nav[open] .v3-menu-icon::after {
  transform: rotate(-45deg);
}

.v3-mobile-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid #425072;
  background: var(--navy-2);
  box-shadow: var(--shadow-strong);
}

.v3-mobile-panel a {
  display: flex;
  min-height: 48px;
  padding: 10px 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 17px;
  text-decoration: none;
}

.v3-mobile-panel a:last-child {
  border-bottom: 0;
}

.v3-product-nav {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid #263455;
  background: rgba(8, 20, 49, 0.98);
  color: var(--white);
}

.v3-has-product-nav [id] {
  scroll-margin-top: 76px;
}

.v3-product-nav__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v3-product-nav strong {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
}

.v3-product-nav__links {
  display: flex;
  overflow-x: auto;
  align-items: center;
  gap: 4px;
  scrollbar-width: none;
}

.v3-product-nav__links::-webkit-scrollbar {
  display: none;
}

.v3-product-nav__links a {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 12px;
  align-items: center;
  color: #d6e0f3;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.v3-product-nav__links a:hover {
  color: var(--white);
}

.v3-hero {
  position: relative;
  overflow: clip;
  min-height: min(860px, calc(100svh - 84px));
  padding: clamp(68px, 8vw, 122px) 0 clamp(74px, 8vw, 116px);
  background: var(--navy);
  color: var(--white);
}

.v3-hero::before {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: rgba(139, 203, 255, 0.16);
  content: "";
}

.v3-hero::after {
  position: absolute;
  right: 0;
  bottom: 12%;
  width: 46%;
  height: 1px;
  background: rgba(139, 203, 255, 0.16);
  content: "";
}

.v3-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: center;
}

.v3-hero-copy {
  max-width: 790px;
}

.v3-kicker,
.v3-eyebrow,
.v3-panel-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.v3-kicker,
.v3-eyebrow--light {
  color: var(--sky);
}

.v3-hero-lead {
  max-width: 65ch;
  margin: 30px 0 0;
  color: #d9e2f4;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.58;
}

.v3-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.v3-button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.v3-page .v3-button--primary {
  background: var(--cobalt);
  color: var(--white);
}

.v3-page .v3-button--primary:hover {
  background: var(--cobalt-dark);
}

.v3-page .v3-button--light {
  background: var(--white);
  color: var(--navy);
}

.v3-page .v3-button--light:hover {
  background: var(--sky);
}

.v3-page .v3-button--outline {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
}

.v3-page .v3-button--outline:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.v3-page .v3-button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}

.v3-page .v3-button--ghost:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
}

.v3-arrow {
  margin-left: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.v3-inline-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--cobalt) !important;
  font-weight: 650;
  text-underline-offset: 4px;
}

.v3-hero-note {
  max-width: 58ch;
  margin: 22px 0 0;
  color: #aebbd3;
  font-size: 14px;
}

.v3-hero-map {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(4, 12, 31, 0.56);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.v3-hero-map::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 18%;
  width: 64%;
  height: 1px;
  background: rgba(139, 203, 255, 0.55);
  content: "";
  transform: translateY(-50%) scaleX(var(--map-progress, 1));
  transform-origin: left;
}

.v3-hero-map__meta {
  display: flex;
  margin-bottom: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #aebbd3;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-hero-map__pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v3-hero-map__pulse::before {
  width: 9px;
  height: 9px;
  border: 2px solid var(--sky);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 6px rgba(139, 203, 255, 0.1);
}

.v3-hero-map__nodes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.v3-hero-node {
  position: relative;
  display: grid;
  min-height: 114px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--navy-2);
  align-content: space-between;
  transition: border-color 220ms ease, transform 280ms ease;
}

.v3-hero-node:nth-child(1) {
  transform: translate(var(--node-1-x, 0), var(--node-1-y, 0));
}

.v3-hero-node:nth-child(2) {
  transform: translate(var(--node-2-x, 0), var(--node-2-y, 0));
}

.v3-hero-node:nth-child(3) {
  transform: translate(var(--node-3-x, 0), var(--node-3-y, 0));
}

.v3-hero-node:nth-child(4) {
  border-color: rgba(139, 203, 255, 0.68);
  transform: translate(var(--node-4-x, 0), var(--node-4-y, 0));
}

.v3-hero-node span {
  color: #9eabc4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-hero-node strong {
  color: var(--white);
  font-size: 22px;
}

.v3-hero-node i {
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

.v3-hero-map__caption {
  max-width: 34ch;
  margin: 28px 0 0;
  color: #b8c5dc;
  font-size: 14px;
}

.v3-hero-facts {
  display: grid;
  margin-top: clamp(54px, 7vw, 88px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.v3-hero-fact {
  padding: 22px 24px 24px 0;
  border-right: 1px solid var(--line-dark);
}

.v3-hero-fact + .v3-hero-fact {
  padding-left: 24px;
}

.v3-hero-fact:last-child {
  border-right: 0;
}

.v3-hero-fact strong,
.v3-hero-fact span {
  display: block;
}

.v3-hero-fact strong {
  color: var(--white);
  font-size: 20px;
}

.v3-hero-fact span {
  margin-top: 5px;
  color: #aebbd3;
  font-size: 14px;
}

.v3-section {
  position: relative;
  overflow: clip;
  padding-block: var(--section-space);
}

.v3-section--white {
  background: var(--white);
}

.v3-section--paper {
  background: var(--paper);
}

.v3-section--ice {
  background: var(--ice);
}

.v3-section--navy {
  background: var(--navy);
  color: var(--white);
}

.v3-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
}

.v3-section-head > p,
.v3-section-copy {
  max-width: var(--measure-narrow);
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.v3-section--navy .v3-section-head > p,
.v3-section--navy .v3-section-copy {
  color: #c0cbe0;
}

.v3-editorial-grid {
  display: grid;
  margin-top: clamp(48px, 6vw, 82px);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.v3-editorial-item {
  display: grid;
  min-height: 210px;
  padding: 30px 34px 34px 0;
  border-bottom: 1px solid var(--line);
  align-content: start;
  grid-template-columns: 58px 1fr;
  gap: 20px;
}

.v3-editorial-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.v3-editorial-item:nth-child(even) {
  padding-left: 34px;
}

.v3-editorial-index {
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-editorial-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.v3-service-path {
  display: grid;
  margin-top: clamp(54px, 7vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.v3-service-step {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.v3-service-step:last-child {
  border-right: 0;
}

.v3-service-step::before {
  position: absolute;
  top: -5px;
  left: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

.v3-service-step span {
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-service-step h3 {
  margin-top: 34px;
}

.v3-service-step p {
  margin: 16px 0 0;
  color: var(--muted);
}

.v3-router-shell {
  display: grid;
  margin-top: clamp(50px, 6vw, 78px);
  border: 1px solid #334365;
  background: var(--navy-2);
  box-shadow: var(--shadow-strong);
  grid-template-columns: 230px minmax(0, 1fr);
}

.v3-router-aside {
  padding: 34px 28px;
  border-right: 1px solid #334365;
}

.v3-router-aside p {
  margin: 0;
  color: #b9c5dc;
  font-size: 14px;
}

.v3-router-progress {
  display: grid;
  margin-top: 30px;
  gap: 10px;
}

.v3-router-progress i {
  display: block;
  width: 100%;
  height: 3px;
  background: #334365;
}

.v3-router-progress i.is-active {
  background: var(--sky);
}

.v3-router-body {
  min-height: 580px;
  padding: clamp(32px, 5vw, 64px);
}

.v3-router-step[hidden] {
  display: none;
}

.v3-router-step h3 {
  max-width: 26ch;
  font-size: clamp(30px, 3.5vw, 46px);
}

.v3-router-options {
  display: grid;
  margin-top: 34px;
  gap: 10px;
}

.v3-router-option {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 14px 54px 14px 18px;
  border: 1px solid #415176;
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
  font-weight: 580;
  line-height: 1.45;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.v3-router-option::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--sky);
  content: "→";
  font-size: 22px;
  transform: translateY(-50%);
}

.v3-router-option:hover {
  border-color: var(--sky);
  background: rgba(139, 203, 255, 0.06);
  transform: translateX(3px);
}

.v3-router-controls {
  display: flex;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.v3-router-control {
  min-width: 94px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #415176;
  border-radius: 2px;
  background: transparent;
  color: #dce5f5;
  cursor: pointer;
  font-size: 16px;
}

.v3-router-control:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.v3-result-copy {
  max-width: 64ch;
  margin: 24px 0 0;
  color: #d0daec;
  font-size: 19px;
}

.v3-result-context {
  margin: 18px 0 0;
  color: var(--sky);
  font-size: 14px;
}

.v3-result-price {
  display: block;
  margin-top: 30px;
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.25;
}

.v3-result-price:empty {
  display: none;
}

.v3-result-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.v3-result-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--sky);
  font-size: 16px;
  font-weight: 650;
  text-underline-offset: 5px;
}

.v3-router-disclaimer {
  max-width: 66ch;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid #334365;
  color: #aebbd3;
  font-size: 14px;
}

.v3-product-grid {
  display: grid;
  margin-top: clamp(50px, 6vw, 82px);
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.v3-product-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(8, 20, 49, 0.06);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.v3-product-card:hover {
  border-color: #a6b4cf;
  box-shadow: var(--shadow-soft);
}

.v3-product-card summary {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 4vw, 46px);
  cursor: pointer;
  list-style: none;
}

.v3-product-card summary::-webkit-details-marker {
  display: none;
}

.v3-product-card summary::after {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  content: "+";
  font-size: 26px;
  place-items: center;
}

.v3-product-card[open] summary::after {
  content: "−";
}

.v3-product-card__type {
  display: block;
  margin-bottom: 58px;
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-product-card h3 {
  max-width: 14ch;
  font-size: clamp(34px, 4vw, 52px);
}

.v3-product-card summary p {
  max-width: 52ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.v3-product-card__expanded {
  padding: 0 clamp(28px, 4vw, 46px) clamp(32px, 4vw, 46px);
}

.v3-product-card__expanded ul {
  display: grid;
  margin: 0 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  gap: 10px;
  list-style: none;
}

.v3-product-card__expanded li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.v3-product-card__expanded li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

.v3-custom-band {
  display: grid;
  margin-top: 18px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--navy);
  color: var(--white);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 76px);
}

.v3-custom-band p {
  max-width: 62ch;
  margin: 0;
  color: #c4cee1;
}

.v3-custom-band__note {
  display: block;
  margin-top: 18px;
  color: var(--sky);
  font-size: 14px;
}

.v3-proof-layout {
  display: grid;
  margin-top: clamp(50px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.42fr) minmax(310px, 0.58fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.v3-proof-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #aeb9cc;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.v3-proof-frame img {
  width: 100%;
}

.v3-proof-copy h3 {
  max-width: 100%;
  font-size: clamp(32px, 3.1vw, 44px);
}

.v3-proof-copy p {
  margin: 22px 0 0;
  color: var(--muted);
}

.v3-proof-copy .v3-button {
  margin-top: 28px;
}

.v3-founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 112px);
  align-items: center;
}

.v3-founder-photo {
  position: relative;
  margin: 0;
}

.v3-founder-photo::before {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 56%;
  height: 44%;
  border-top: 1px solid var(--sky);
  border-left: 1px solid var(--sky);
  content: "";
}

.v3-founder-photo img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.v3-founder-copy > p {
  max-width: 62ch;
  color: #c4cee1;
}

.v3-founder-role {
  margin: 24px 0;
  color: var(--sky) !important;
  font-size: 16px;
}

.v3-evidence-grid {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.v3-evidence {
  padding: 20px 18px 22px 0;
  border-right: 1px solid var(--line-dark);
}

.v3-evidence + .v3-evidence {
  padding-left: 18px;
}

.v3-evidence:last-child {
  border-right: 0;
}

.v3-evidence strong,
.v3-evidence span {
  display: block;
}

.v3-evidence strong {
  color: var(--white);
  font-size: 24px;
}

.v3-evidence span {
  margin-top: 4px;
  color: #adb9d0;
  font-size: 14px;
}

.v3-evidence-note {
  margin-top: 20px !important;
  color: #9facbf !important;
  font-size: 14px;
}

.v3-contact {
  background: var(--cobalt);
  color: var(--white);
}

.v3-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}

.v3-contact p {
  max-width: 62ch;
  margin: 24px 0 0;
  color: #e4e9ff;
}

.v3-contact-action {
  display: grid;
  gap: 18px;
}

.v3-contact-note {
  margin: 0 !important;
  color: var(--white) !important;
  font-size: 14px;
}

.v3-footer {
  padding: 42px 0;
  border-top: 1px solid #263455;
  background: var(--navy);
  color: var(--white);
}

.v3-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.v3-footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.v3-footer-brand img {
  width: 188px;
}

.v3-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 22px;
  flex-wrap: wrap;
}

.v3-footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #c2cee2;
  font-size: 16px;
  text-decoration: none;
}

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

.v3-product-hero {
  min-height: auto;
}

.v3-product-hero h1 {
  max-width: 14ch;
  font-size: clamp(48px, 5.5vw, 76px);
}

.v3-ledger {
  margin-top: clamp(46px, 6vw, 78px);
  border-top: 1px solid var(--line);
}

.v3-ledger-row {
  display: grid;
  min-height: 154px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 170px minmax(220px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.v3-ledger-row > span {
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-ledger-row h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.v3-ledger-row p {
  margin: 0;
  color: var(--muted);
}

.v3-product-stage {
  display: grid;
  margin-top: clamp(48px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.28fr) minmax(240px, 0.48fr);
  gap: 20px;
  align-items: end;
}

.v3-product-figure {
  margin: 0;
}

.v3-product-frame {
  overflow: hidden;
  border: 1px solid #b2bdd0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.v3-product-frame--report {
  max-height: 610px;
}

.v3-product-frame--report img {
  width: 100%;
}

.v34-report-zoom {
  position: relative;
  display: block;
  color: inherit;
  cursor: zoom-in;
}

.v34-report-zoom img {
  transition: transform 180ms ease;
}

.v34-report-zoom:hover img {
  transform: scale(1.015);
}

.v34-report-zoom:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

.v34-report-zoom__action {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.v3-caption {
  display: flex;
  padding: 16px 0 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.v3-caption strong {
  color: var(--ink);
}

.v3-deliverables {
  display: grid;
  margin-top: clamp(48px, 6vw, 78px);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.v3-deliverable {
  padding: 28px 34px 32px 0;
  border-bottom: 1px solid var(--line);
}

.v3-deliverable:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.v3-deliverable:nth-child(even) {
  padding-left: 34px;
}

.v3-deliverable p {
  margin: 14px 0 0;
  color: var(--muted);
}

.v3-process {
  display: grid;
  margin: clamp(50px, 6vw, 78px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.v3-process-step {
  position: relative;
  min-height: 330px;
  padding: 32px 26px 30px 0;
  border-right: 1px solid var(--line-dark);
}

.v3-process-step + .v3-process-step {
  padding-left: 26px;
}

.v3-process-step:last-child {
  border-right: 0;
}

.v3-process-number {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-process-step h3 {
  margin-top: 54px;
  color: var(--white);
}

.v3-process-step p {
  margin: 16px 0 0;
  color: #bac6dc;
}

.v3-scope-grid {
  display: grid;
  margin-top: clamp(50px, 6vw, 78px);
  border: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.v3-scope-panel {
  padding: clamp(30px, 4vw, 50px);
}

.v3-scope-panel + .v3-scope-panel {
  border-left: 1px solid var(--line);
  background: #f2f4f7;
}

.v3-scope-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.v3-scope-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.v3-scope-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

.v3-scope-panel--out .v3-scope-list li::before {
  background: var(--signal);
}

.v3-price-band {
  background: var(--cobalt);
  color: var(--white);
}

.v3-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.v3-price-label {
  display: block;
  margin-bottom: 16px;
  color: #e0e6ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-price {
  display: block;
  max-width: 20ch;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.v3-price-meta,
.v3-price-aside p {
  margin: 22px 0 0;
  color: #e1e6ff;
}

.v3-price-aside .v3-button {
  margin-top: 28px;
}

.v3-trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
}

.v3-trust-copy p {
  color: var(--muted);
}

.v3-trust-copy .v3-evidence-grid {
  border-color: var(--line);
}

.v3-trust-copy .v3-evidence {
  border-color: var(--line);
}

.v3-trust-copy .v3-evidence strong {
  color: var(--ink);
}

.v3-trust-copy .v3-evidence span {
  color: var(--muted);
}

.v3-trust-copy .v3-evidence-note {
  color: var(--muted) !important;
}

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

.v3-faq-item {
  border-bottom: 1px solid var(--line);
}

.v3-faq-item summary {
  position: relative;
  min-height: 64px;
  padding: 18px 52px 18px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  list-style: none;
}

.v3-faq-item summary::-webkit-details-marker {
  display: none;
}

.v3-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--cobalt);
  content: "+";
  font-size: 25px;
  transform: translateY(-50%);
}

.v3-faq-item[open] summary::after {
  content: "−";
}

.v3-faq-answer {
  padding: 0 46px 22px 0;
  color: var(--muted);
}

.v3-faq-answer p {
  margin: 0;
}

.v3-decision-example {
  display: grid;
  margin-top: clamp(50px, 6vw, 78px);
  border-top: 1px solid var(--line-dark);
}

.v3-decision-example-box {
  margin-top: clamp(50px, 6vw, 78px);
  padding: clamp(30px, 5vw, 58px);
  background: var(--navy);
  color: var(--white);
}

.v3-decision-example-box .v3-decision-example {
  margin-top: 36px;
}

.v3-decision-row {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 170px 1fr;
  gap: 34px;
}

.v3-decision-row span {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-decision-row p {
  max-width: 70ch;
  margin: 0;
  color: #c1cde1;
}

.v3-decision-row.is-first p {
  color: var(--white);
  font-weight: 650;
}

.v31-lead-map {
  position: relative;
  min-height: 520px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 84% 14%, rgba(49, 92, 255, 0.22), transparent 30%),
    rgba(4, 12, 31, 0.7);
  box-shadow: var(--shadow-strong);
}

.v31-lead-map__meta {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #b8c5dc;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v31-live-signal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sky);
}

.v31-live-signal::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sky);
  content: "";
  box-shadow: 0 0 0 0 rgba(139, 203, 255, 0.48);
  animation: v31-signal-pulse 2.2s ease-out infinite;
}

.v31-lead-flow {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.v31-lead-flow::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 10px;
  width: 2px;
  background: linear-gradient(var(--sky), var(--cobalt));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  animation: v31-flow-grow 1.1s 180ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.v31-lead-flow li {
  position: relative;
  display: grid;
  min-height: 68px;
  padding: 13px 14px 13px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: minmax(0, 1fr) minmax(128px, auto);
  gap: 16px;
  align-items: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.v31-lead-flow li::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 4px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--navy-2);
  border-radius: 50%;
  background: var(--sky);
  content: "";
  transform: translateY(-50%);
}

.v31-lead-flow li:hover {
  background: rgba(139, 203, 255, 0.06);
  transform: translateX(4px);
}

.v31-lead-flow li.has-alert::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8d83;
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(255, 141, 131, 0.45);
  animation: v31-alert-pulse 2.6s ease-out infinite;
}

.v31-lead-flow span,
.v31-lead-flow small {
  display: block;
}

.v31-lead-flow span {
  color: var(--white);
  font-size: 18px;
  font-weight: 650;
}

.v31-lead-flow small {
  padding-right: 12px;
  color: #aebbd3;
  font-size: 14px;
  line-height: 1.35;
  text-align: right;
}

.v31-lead-flow .has-alert small {
  color: #ffc1bb;
}

.v31-lead-map__caption {
  max-width: 44ch;
  margin: 26px 0 0;
  color: #b8c5dc;
  font-size: 16px;
}

.v31-experience-strip .v3-hero-fact strong {
  font-size: clamp(22px, 2.3vw, 30px);
}

.v31-experience-strip .v3-hero-fact span {
  font-size: 16px;
}

.v31-problem-grid {
  display: grid;
  margin-top: clamp(50px, 6vw, 82px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px clamp(28px, 5vw, 70px);
}

.v31-problem-card {
  position: relative;
  min-height: 220px;
  padding: 32px 32px 34px 34px;
  border-left: 3px solid var(--cobalt);
  background: linear-gradient(120deg, rgba(237, 242, 248, 0.86), rgba(255, 255, 255, 0.2));
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.v31-problem-card--offset {
  margin-top: 38px;
}

.v31-problem-card:hover {
  background: var(--ice);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.v31-problem-mark {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 30px;
  background: var(--cobalt);
}

.v31-problem-card h3 {
  max-width: 19ch;
}

.v31-problem-card p {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.v31-products-layout {
  display: grid;
  margin-top: clamp(50px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.v31-product-card {
  position: relative;
  display: flex;
  min-height: 590px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(8, 20, 49, 0.06);
  flex-direction: column;
}

.v31-product-card--audit {
  overflow: hidden;
  border-color: #25365e;
  background:
    radial-gradient(circle at 84% 8%, rgba(49, 92, 255, 0.28), transparent 32%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.v31-product-card--consultation {
  min-height: 540px;
  margin-top: 50px;
}

.v31-product-card .v3-product-card__type {
  margin-bottom: 34px;
}

.v31-product-card--audit .v3-product-card__type {
  color: var(--sky);
}

.v31-product-card h3 {
  max-width: 14ch;
  font-size: clamp(38px, 4.4vw, 58px);
}

.v31-product-promise {
  max-width: 54ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.v31-product-card--audit .v31-product-promise {
  color: #d3dded;
}

.v31-product-card ul {
  display: grid;
  margin: 32px 0 36px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  gap: 12px;
  list-style: none;
}

.v31-product-card--audit ul {
  border-color: var(--line-dark);
}

.v31-product-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.v31-product-card--audit li {
  color: #c7d2e6;
}

.v31-product-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

.v31-product-card--audit li::before {
  background: var(--sky);
}

.v31-product-card .v3-button {
  margin-top: auto;
  align-self: flex-start;
}

.v31-implementation-band {
  margin-top: 18px;
  background:
    linear-gradient(100deg, rgba(49, 92, 255, 0.14), transparent 48%),
    var(--navy);
}

.v31-band-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 24px;
  align-items: center;
  color: var(--sky) !important;
  font-size: 16px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.v31-email-line {
  margin: 0 !important;
  color: var(--white) !important;
  font-size: 16px;
}

.v31-email-line a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  text-underline-offset: 4px;
}

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

@keyframes v31-signal-pulse {
  70%,
  100% {
    box-shadow: 0 0 0 10px rgba(139, 203, 255, 0);
  }
}

@keyframes v31-alert-pulse {
  75%,
  100% {
    box-shadow: 0 0 0 9px rgba(255, 141, 131, 0);
  }
}

[data-reveal] {
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal]:not(.is-visible) {
  transform: translateY(14px);
}

@media (max-width: 1120px) {
  .v3-global-nav {
    gap: 12px;
  }

  .v3-global-nav a {
    font-size: 16px;
  }

  .v3-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  }

  .v31-lead-flow li {
    grid-template-columns: minmax(104px, 0.85fr) minmax(0, 1.15fr);
    gap: 12px;
  }

  .v31-lead-flow small {
    min-width: 0;
  }

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

  .v3-process-step:nth-child(2) {
    border-right: 0;
  }

  .v3-process-step:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 920px) {
  .v3-global-nav {
    display: none;
  }

  .v3-mobile-nav {
    display: block;
  }

  .v3-product-nav {
    top: 0;
  }

  .v3-has-product-nav [id] {
    scroll-margin-top: 122px;
  }

  .v3-product-nav__inner {
    position: relative;
    display: block;
    padding-top: 10px;
  }

  .v3-product-nav__links {
    margin-top: 4px;
    padding-right: 48px;
  }

  .v3-product-nav__inner.has-horizontal-overflow::after {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 48px;
    height: 44px;
    background: linear-gradient(90deg, rgba(8, 20, 49, 0), var(--navy) 44%);
    color: var(--sky);
    content: "→";
    place-items: center end;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .v3-product-nav__inner.has-horizontal-overflow.is-scroll-end::after {
    opacity: 0;
  }

  .v3-hero {
    min-height: auto;
  }

  .v3-hero-grid,
  .v3-section-head,
  .v3-proof-layout,
  .v3-founder-layout,
  .v3-contact-layout,
  .v3-price-layout,
  .v3-trust-grid {
    grid-template-columns: 1fr;
  }

  .v3-hero-map {
    min-height: 350px;
    max-width: 680px;
  }

  .v3-section-head {
    align-items: start;
  }

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

  .v3-service-step:nth-child(2) {
    border-right: 0;
  }

  .v3-service-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .v3-product-stage {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  }

  .v3-ledger-row {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 14px 30px;
  }

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

  .v3-trust-copy {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  body.v3-page {
    font-size: 17px;
    line-height: 1.6;
  }

  .v3-page h1 {
    max-width: 13ch;
    font-size: clamp(43px, 12vw, 58px);
  }

  .v3-page h2 {
    max-width: 21ch;
    font-size: clamp(33px, 9.6vw, 43px);
  }

  .v3-page h3 {
    font-size: clamp(23px, 6.8vw, 29px);
  }

  .v3-header-inner {
    min-height: 72px;
  }

  .v3-brand img {
    width: 178px;
  }

  .v3-hero {
    padding: 58px 0 72px;
  }

  .v3-hero-lead,
  .v3-section-head > p,
  .v3-section-copy,
  .v3-result-copy {
    font-size: 17px;
  }

  .v3-actions,
  .v3-result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .v3-actions .v3-button,
  .v3-result-actions .v3-button {
    width: 100%;
  }

  .v3-hero-map {
    min-height: 328px;
    padding: 20px;
  }

  .v3-hero-map__meta {
    margin-bottom: 28px;
  }

  .v3-hero-map__nodes {
    gap: 10px;
  }

  .v3-hero-node {
    min-height: 98px;
    padding: 14px;
  }

  .v3-hero-node strong {
    font-size: 18px;
  }

  .v3-hero-map__caption {
    margin-top: 18px;
  }

  .v3-hero-facts,
  .v3-evidence-grid {
    grid-template-columns: 1fr;
  }

  .v3-hero-fact,
  .v3-hero-fact + .v3-hero-fact,
  .v3-evidence,
  .v3-evidence + .v3-evidence {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .v3-hero-fact:last-child,
  .v3-evidence:last-child {
    border-bottom: 0;
  }

  .v3-editorial-grid,
  .v3-product-grid,
  .v3-deliverables,
  .v3-scope-grid,
  .v3-product-stage {
    grid-template-columns: 1fr;
  }

  .v3-editorial-item,
  .v3-editorial-item:nth-child(even),
  .v3-deliverable,
  .v3-deliverable:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }

  .v3-editorial-item {
    min-height: auto;
    grid-template-columns: 44px 1fr;
  }

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

  .v3-service-step,
  .v3-service-step:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .v3-service-step:nth-child(n + 3) {
    border-top: 0;
  }

  .v3-service-step:last-child {
    border-bottom: 0;
  }

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

  .v3-router-aside {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid #334365;
  }

  .v3-router-progress {
    grid-template-columns: repeat(3, 1fr);
  }

  .v3-router-body {
    min-height: 620px;
    padding: 28px 20px;
  }

  .v3-router-option {
    font-size: 16px;
  }

  .v3-product-card summary {
    min-height: 340px;
  }

  .v3-product-card__type {
    margin-bottom: 42px;
  }

  .v3-custom-band {
    grid-template-columns: 1fr;
  }

  .v3-caption {
    flex-direction: column;
    gap: 4px;
  }

  .v3-ledger-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v3-ledger-row p {
    grid-column: auto;
  }

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

  .v3-process-step,
  .v3-process-step + .v3-process-step {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-dark);
  }

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

  .v3-process-step h3 {
    margin-top: 28px;
  }

  .v3-scope-panel + .v3-scope-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .v3-decision-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .v3-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .v3-page h1 {
    font-size: 41px;
  }

  .v3-page h2 {
    font-size: 32px;
  }

  .v3-hero-map__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .v3-hero-node span {
    font-size: 14px;
  }

  .v3-router-body {
    min-height: 660px;
  }
}

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

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

  [data-reveal],
  .motion-ready [data-reveal]:not(.is-visible),
  .v3-hero-node {
    transform: none !important;
  }
}

/* Factlever V3.6 — code-native visual layer */
.v36-synthetic-label {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  align-items: center;
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.v36-pathways {
  position: relative;
  display: grid;
  margin-top: clamp(30px, 5vw, 58px);
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.25fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: stretch;
}

.v36-pathways::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: calc((100% / 3.1) - 38px);
  width: clamp(36px, 4vw, 58px);
  height: 1px;
  background: var(--cobalt);
  content: "";
}

.v36-pathways__origin {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  padding: clamp(24px, 3.6vw, 42px);
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-strong);
}

.v36-pathways__origin > span,
.v36-pathway > span,
.v36-pathway > small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.v36-pathways__origin > span {
  color: var(--sky);
}

.v36-pathways__origin > strong {
  margin-top: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.v36-pathways__origin > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.v36-pathways__branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.v36-pathways__branches::before {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: -30px;
  width: 1px;
  background: linear-gradient(var(--cobalt), var(--line));
  content: "";
}

.v36-pathway {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line);
  background: var(--white);
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.v36-pathway::before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 29px;
  height: 1px;
  background: var(--line);
  content: "";
}

.v36-pathway:hover,
.v36-pathway:focus-within {
  border-color: var(--cobalt);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.v36-pathway > span {
  min-height: 3.1em;
  color: var(--muted);
}

.v36-pathway > h3 {
  margin-top: 14px;
  font-size: clamp(25px, 2.25vw, 32px);
}

.v36-pathway > p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.v36-pathway > small {
  margin-top: auto;
  padding-top: 22px;
  color: var(--positive);
}

.v36-pathway > a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  margin-top: 14px;
  align-items: center;
  gap: 8px;
  color: var(--cobalt);
  font-size: 16px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.v36-pathway--audit {
  border-top: 4px solid var(--cobalt);
}

.v36-pathway--decision {
  border-top: 4px solid var(--sky);
}

.v36-pathway--implementation {
  border-top: 4px solid var(--positive);
}

.v36-pathway--clarify {
  border-top: 4px solid var(--line);
  background: var(--paper);
}

.v36-proof-explorer {
  margin-top: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.v36-proof-explorer__meta {
  display: flex;
  min-height: 62px;
  padding: 14px clamp(18px, 3vw, 32px);
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.v36-proof-explorer__meta .v36-synthetic-label {
  color: var(--sky);
}

.v36-proof-explorer__meta > strong {
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
}

.v36-proof-tabs {
  display: grid;
  padding: 0 clamp(18px, 3vw, 32px);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v36-proof-tabs[hidden] {
  display: none;
}

.v36-proof-tabs button {
  min-height: 58px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.v36-proof-tabs button:hover,
.v36-proof-tabs button:focus-visible,
.v36-proof-tabs button[aria-selected="true"] {
  border-bottom-color: var(--sky);
  color: var(--white);
}

.v36-proof-panels {
  padding: clamp(24px, 4.5vw, 52px);
}

.v36-proof-panel {
  display: grid;
  min-height: 330px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.v36-proof-panel + .v36-proof-panel {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line-dark);
}

.v36-proof-explorer.is-enhanced .v36-proof-panel + .v36-proof-panel {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.v36-proof-panel[hidden] {
  display: none;
}

.v36-proof-panel .v3-eyebrow {
  color: var(--sky);
}

.v36-proof-panel h3 {
  max-width: 14ch;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}

.v36-proof-panel p {
  max-width: 54ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.v36-mini-funnel,
.v36-record-sample {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.v36-mini-funnel li {
  position: relative;
  display: flex;
  width: var(--funnel-width, 100%);
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.v36-mini-funnel li:nth-child(2) { --funnel-width: 88%; }
.v36-mini-funnel li:nth-child(3) { --funnel-width: 76%; }
.v36-mini-funnel li:nth-child(4) { --funnel-width: 64%; }
.v36-mini-funnel li:nth-child(5) { --funnel-width: 52%; }
.v36-mini-funnel li:nth-child(6) { --funnel-width: 40%; }

.v36-mini-funnel li.is-signal {
  border-color: var(--sky);
  background: rgba(49, 92, 255, 0.26);
}

.v36-mini-funnel span {
  font-size: 14px;
}

.v36-mini-funnel strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
}

.v36-record-sample li {
  display: grid;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: minmax(90px, auto) 1fr;
  gap: 18px;
  align-items: center;
}

.v36-record-sample strong {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
}

.v36-record-sample span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.v36-check-stack {
  display: grid;
  gap: 10px;
}

.v36-check-stack span {
  display: flex;
  min-height: 68px;
  padding: 14px 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v36-proof-explorer__action {
  display: flex;
  padding: 20px clamp(18px, 3vw, 32px);
  border-top: 1px solid var(--line-dark);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.v36-proof-explorer__action > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.v36-audit-proof {
  margin-top: clamp(26px, 4vw, 42px);
}

.v36-audit-proof .v36-proof-panel {
  min-height: 300px;
}

.v36-audit-proof .v36-proof-explorer__action > a:only-child {
  margin-left: auto;
}

.v36-audit-sources {
  display: grid;
  margin-top: 16px;
  grid-template-columns: 1fr;
  gap: 12px;
}

.v36-audit-source {
  border: 1px solid var(--line);
  background: var(--white);
}

.v36-audit-source > summary {
  position: relative;
  display: grid;
  min-height: 70px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  align-content: center;
  gap: 3px;
}

.v36-audit-source > summary::-webkit-details-marker {
  display: none;
}

.v36-audit-source > summary::after {
  position: absolute;
  right: 18px;
  color: var(--cobalt);
  content: "+";
  font-family: "IBM Plex Mono", monospace;
  font-size: 20px;
}

.v36-audit-source[open] > summary::after {
  content: "−";
}

.v36-audit-source > summary > span {
  padding-right: 32px;
  color: var(--ink);
  font-weight: 750;
}

.v36-audit-source > summary > small {
  padding-right: 32px;
  color: var(--muted);
  font-size: 14px;
}

.v36-audit-source > summary:hover,
.v36-audit-source > summary:focus-visible {
  background: var(--ice);
}

.v36-audit-source__grid {
  display: grid;
  padding: 0 18px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.v36-audit-source__grid .v3-product-figure {
  margin: 0;
  padding: 0;
}

.v36-system-map .v3-hero-node strong {
  max-width: calc(100% - 18px);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.16;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.v36-system-map .v3-hero-map__caption {
  max-width: 46ch;
}

.v36-audit-flow,
.v36-decision-tree {
  display: grid;
  margin: clamp(30px, 5vw, 54px) 0 0;
  padding: 0;
  list-style: none;
}

.v36-audit-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v36-audit-flow li,
.v36-decision-tree li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 240px;
  padding: clamp(20px, 2.3vw, 30px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
  flex-direction: column;
  transition: background-color 180ms ease, transform 180ms ease;
}

.v36-audit-flow li + li {
  border-left: 0;
}

.v36-audit-flow li::after,
.v36-decision-tree li::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -10px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--sky);
  border-right: 2px solid var(--sky);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.v36-audit-flow li:last-child::after,
.v36-decision-tree li:last-child::after {
  display: none;
}

.v36-audit-flow li:hover,
.v36-audit-flow li:focus-within,
.v36-decision-tree li:hover,
.v36-decision-tree li:focus-within {
  background: rgba(49, 92, 255, 0.18);
  transform: translateY(-4px);
}

.v36-audit-flow li > span,
.v36-decision-tree li > span {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v36-audit-flow li > strong,
.v36-decision-tree li > strong {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.2;
}

.v36-audit-flow li > small,
.v36-decision-tree li > small {
  margin-top: auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.48;
}

.v36-decision-tree {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v36-decision-tree li {
  min-height: 190px;
  border-color: var(--line);
  background: var(--paper);
}

.v36-decision-tree li + li {
  border-left: 0;
}

.v36-decision-tree li::after {
  border-color: var(--cobalt);
}

.v36-decision-tree li:hover,
.v36-decision-tree li:focus-within {
  background: var(--ice);
}

.v36-decision-tree li > span {
  color: var(--cobalt);
}

.v36-decision-tree li > strong {
  color: var(--ink);
}

.v36-decision-tree li > small {
  color: var(--muted);
}

.v36-implementation-map {
  display: grid;
  margin-top: clamp(30px, 5vw, 54px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.v36-implementation-map__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(49, 92, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 92, 255, 0.06) 1px, transparent 1px),
    var(--white);
  background-size: 28px 28px;
}

.v36-implementation-map__visual::before,
.v36-implementation-map__visual::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  background: rgba(49, 92, 255, 0.24);
  content: "";
  transform: translate(-50%, -50%);
}

.v36-implementation-map__visual::before {
  width: 72%;
  height: 1px;
}

.v36-implementation-map__visual::after {
  width: 1px;
  height: 72%;
}

.v36-implementation-map__center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(250px, 42%);
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  transform: translate(-50%, -50%);
}

.v36-implementation-map__center span,
.v36-implementation-map__center small {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 1.45;
  text-transform: uppercase;
}

.v36-implementation-map__center strong {
  margin: 10px 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
}

.v36-implementation-layers {
  position: absolute;
  z-index: 1;
  inset: 30px;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template: repeat(3, 1fr) / repeat(2, minmax(0, 1fr));
  gap: 22px 31%;
  list-style: none;
}

.v36-implementation-layers li {
  display: flex;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  gap: 10px;
  box-shadow: 0 9px 28px rgba(8, 20, 49, 0.08);
  transition: border-color 180ms ease, transform 180ms ease;
}

.v36-implementation-layers li:hover,
.v36-implementation-layers li:focus-within {
  border-color: var(--cobalt);
  transform: translateY(-3px);
}

.v36-implementation-layers li > span {
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v36-implementation-layers li > strong {
  min-width: 0;
  font-size: 15px;
  line-height: 1.25;
}

.v36-implementation-map__note {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 16px;
  left: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.v36-implementation-example {
  display: flex;
  min-width: 0;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  flex-direction: column;
}

.v36-implementation-example .v36-synthetic-label {
  color: var(--sky);
}

.v36-implementation-example h3 {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 38px);
}

.v36-implementation-example ol {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 1px;
  list-style: none;
}

.v36-implementation-example li {
  display: grid;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: minmax(110px, 0.42fr) 1fr;
  gap: 18px;
}

.v36-implementation-example li > span {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
}

.v36-implementation-example li > strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.45;
}

.v36-implementation-example > p {
  margin: auto 0 0;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .v36-pathways {
    grid-template-columns: 1fr;
  }

  .v36-pathways::before,
  .v36-pathways__branches::before,
  .v36-pathway::before {
    display: none;
  }

  .v36-pathways__origin {
    min-height: 220px;
  }

  .v36-implementation-map {
    grid-template-columns: 1fr;
  }

  .v36-implementation-map__visual {
    min-height: 500px;
  }
}

@media (max-width: 820px) {
  .v36-proof-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v36-audit-flow,
  .v36-decision-tree {
    grid-template-columns: 1fr;
  }

  .v36-audit-flow li,
  .v36-decision-tree li {
    min-height: 0;
    padding: 22px 22px 24px 76px;
  }

  .v36-audit-flow li + li,
  .v36-decision-tree li + li {
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }

  .v36-decision-tree li + li {
    border-left-color: var(--line);
  }

  .v36-audit-flow li::after,
  .v36-decision-tree li::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 29px;
    transform: rotate(135deg);
  }

  .v36-audit-flow li > span,
  .v36-decision-tree li > span {
    position: absolute;
    top: 26px;
    left: 24px;
  }

  .v36-audit-flow li > strong,
  .v36-decision-tree li > strong {
    margin-top: 0;
  }

  .v36-audit-flow li > small,
  .v36-decision-tree li > small {
    margin-top: 10px;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .v36-pathways__branches {
    grid-template-columns: 1fr;
  }

  .v36-pathways__origin {
    min-height: 0;
  }

  .v36-pathway {
    min-height: 0;
  }

  .v36-pathway > span {
    min-height: 0;
  }

  .v36-proof-explorer__meta,
  .v36-proof-explorer__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .v36-audit-sources {
    grid-template-columns: 1fr;
  }

  .v36-audit-proof .v36-proof-panel {
    gap: 20px;
  }

  .v36-audit-proof .v36-proof-explorer__action > a:only-child {
    margin-left: 0;
  }

  .v36-audit-source__grid {
    grid-template-columns: 1fr;
  }

  .v36-system-map .v3-hero-node strong {
    font-size: 16px;
  }

  .v36-proof-tabs {
    overflow: visible;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v36-proof-tabs button {
    min-height: 62px;
    padding-inline: 6px;
    text-align: left;
  }

  .v36-proof-panels {
    padding-inline: 20px;
  }

  .v36-proof-panel h3 {
    font-size: 31px;
  }

  .v36-mini-funnel li,
  .v36-mini-funnel li:nth-child(n) {
    width: 100%;
  }

  .v36-record-sample li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .v36-implementation-map__visual {
    display: flex;
    min-height: 0;
    padding: 20px;
    flex-direction: column;
  }

  .v36-implementation-map__visual::before,
  .v36-implementation-map__visual::after {
    display: none;
  }

  .v36-implementation-map__center {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 150px;
    transform: none;
  }

  .v36-implementation-layers {
    position: relative;
    inset: auto;
    margin-top: 14px;
    grid-template: none / repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .v36-implementation-layers li {
    min-height: 66px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .v36-implementation-map__note {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .v36-implementation-example li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .v36-pathway,
  .v36-pathways__origin,
  .v36-proof-panels,
  .v36-implementation-example {
    padding-inline: 18px;
  }

  .v36-implementation-layers {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v36-pathway,
  .v36-audit-flow li,
  .v36-decision-tree li,
  .v36-implementation-layers li {
    transition: none !important;
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .v36-pathways__origin,
  .v36-pathway,
  .v36-proof-explorer,
  .v36-proof-tabs button,
  .v36-audit-flow li,
  .v36-decision-tree li,
  .v36-implementation-map__visual,
  .v36-implementation-map__center,
  .v36-implementation-layers li,
  .v36-implementation-example {
    border: 1px solid ButtonText;
  }
}

@media (forced-colors: active) {
  .v3-button,
  .v3-router-option,
  .v3-router-control,
  .v3-hero-node,
  .v3-product-card {
    border: 1px solid ButtonText;
  }

  .v3-hero-map__pulse::before,
  .v3-service-step::before,
  .v3-scope-list li::before {
    forced-color-adjust: none;
  }
}

/* V3.2 — kontakt */
.v3-contact-page,
.v3-thank-you-page {
  background: var(--paper);
}

.v3-contact-hero {
  padding: clamp(52px, 6vw, 84px) 0 clamp(36px, 4vw, 56px);
  background: var(--navy);
  color: var(--white);
}

.v3-contact-hero h1 {
  max-width: 18ch;
  margin: 14px 0 18px;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.v3-contact-hero p {
  max-width: 700px;
  margin: 0;
  color: #c8d3e5;
  font-size: clamp(17px, 1.5vw, 20px);
}

.v3-contact-form-section {
  padding-top: clamp(28px, 3vw, 44px);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(104, 119, 145, 0.14) 50%, transparent calc(50% + 1px)),
    var(--paper);
}

.v3-contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.v3-contact-form-card {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.v3-contact-form-card__head {
  max-width: 680px;
  margin-bottom: 34px;
}

.v3-contact-form-card__head h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.v3-contact-form-card__head p {
  margin: 0;
  color: var(--muted);
}

.v3-contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.v3-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.v3-honeypot input {
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.v3-form-field {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.v3-form-field > span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.v3-form-field > span small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.v3-form-field > span strong,
.v3-form-consent strong {
  color: var(--signal);
}

.v3-form-field input,
.v3-form-field select,
.v3-form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #98a5ba;
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 17px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.v3-form-field select {
  padding-right: 42px;
}

.v3-form-field textarea {
  min-height: 174px;
  resize: vertical;
  line-height: 1.55;
}

.v3-form-field input:hover,
.v3-form-field select:hover,
.v3-form-field textarea:hover {
  border-color: var(--cobalt);
}

.v3-form-field input:focus-visible,
.v3-form-field select:focus-visible,
.v3-form-field textarea:focus-visible {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(139, 203, 255, 0.42);
  outline: 0;
}

.v3-form-field--wide {
  grid-column: 1 / -1;
}

.v3-form-consent {
  display: grid;
  min-height: 44px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.v3-form-consent input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--cobalt);
}

.v3-form-consent a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--cobalt);
  font-size: 16px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.v3-contact-warning {
  padding: 18px 20px;
  border-left: 4px solid var(--signal);
  background: var(--signal-soft);
  color: var(--navy);
}

.v3-contact-warning p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.v3-contact-submit {
  width: max-content;
  min-width: min(100%, 270px);
  min-height: 54px;
}

.v3-contact-next {
  position: sticky;
  top: 112px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.v3-contact-next h2 {
  margin: 14px 0 32px;
  font-size: clamp(30px, 3.5vw, 46px);
}

.v3-contact-next ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v3-contact-next li {
  display: grid;
  min-height: 128px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.v3-contact-next li > span {
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v3-contact-next li strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.v3-contact-next li p,
.v3-contact-next__note {
  margin: 0;
  color: #c8d3e5;
  font-size: 15px;
}

.v3-contact-next__note {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.v3-thank-you-main {
  display: grid;
  min-height: calc(100vh - 176px);
  padding: clamp(72px, 10vw, 140px) 24px;
  place-items: center;
}

.v3-thank-you-card {
  width: min(100%, 860px);
  padding: clamp(34px, 6vw, 72px);
  border-top: 5px solid var(--cobalt);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.v3-thank-you-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 1px solid var(--positive);
  background: var(--positive-soft);
  color: var(--positive);
  font-size: 30px;
  font-weight: 800;
  place-items: center;
}

.v3-thank-you-card h1 {
  max-width: 14ch;
  margin: 16px 0 22px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.v3-thank-you-card > p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 19px;
}

.v3-button--outline-dark {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.v3-button--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.v3-thank-you-note {
  margin-top: 30px !important;
  padding: 18px 20px;
  border-left: 3px solid var(--sky);
  background: var(--ice);
  font-size: 15px !important;
}

.v32-terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.v32-terms-layout h2 {
  max-width: 16ch;
  margin: 14px 0 20px;
  color: var(--white);
  font-size: clamp(36px, 4.8vw, 64px);
}

.v32-terms-layout > div:first-child > p {
  max-width: 700px;
  margin: 0;
  color: #c8d3e5;
  font-size: 18px;
}

.v32-terms-aside {
  display: grid;
  padding: 28px;
  border: 1px solid var(--line-dark);
  grid-template-columns: 42px 1fr;
  gap: 0 14px;
}

.v32-terms-aside > span {
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  color: var(--sky);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v32-terms-aside > p {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
  font-weight: 700;
}

.v32-terms-aside .v3-button {
  margin-top: 22px;
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .v3-contact-form-section {
    background: var(--paper);
  }

  .v3-contact-form-layout {
    grid-template-columns: 1fr;
  }

  .v32-terms-layout {
    grid-template-columns: 1fr;
  }

  .v3-contact-next {
    position: static;
  }
}

@media (max-width: 620px) {
  .v3-contact-hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .v3-contact-form {
    grid-template-columns: 1fr;
  }

  .v3-form-field--wide {
    grid-column: auto;
  }

  .v3-contact-submit,
  .v3-thank-you-card .v3-actions,
  .v3-thank-you-card .v3-button {
    width: 100%;
  }

  .v3-thank-you-main {
    padding-inline: 16px;
  }
}

@media (max-width: 1180px) {
  .v3-global-nav {
    display: none;
  }

  .v3-mobile-nav {
    display: block;
  }

  .v31-products-layout {
    grid-template-columns: 1fr;
  }

  .v31-product-card--consultation {
    min-height: auto;
    margin-top: 0;
  }
}

@media (max-width: 920px) {
  .v31-lead-map {
    min-height: auto;
    max-width: 680px;
  }

}

@media (max-width: 720px) {
  .v31-lead-map {
    padding: 20px;
  }

  .v31-lead-map__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .v31-lead-flow li {
    padding: 13px 20px 13px 34px;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .v31-lead-flow small {
    min-width: 0;
    padding-right: 0;
    text-align: left;
  }

  .v31-problem-grid {
    grid-template-columns: 1fr;
  }

  .v31-problem-card,
  .v31-problem-card--offset {
    min-height: auto;
    margin-top: 0;
    padding: 28px 24px;
  }

  .v31-product-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .v31-product-card .v3-button {
    width: 100%;
  }

  .v31-email-line {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v31-lead-flow::before {
    transform: scaleY(1);
  }

  .v31-lead-flow::before,
  .v31-live-signal::before,
  .v31-lead-flow li.has-alert::after {
    animation: none !important;
  }

  .v31-lead-flow li:hover,
  .v31-problem-card:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  .v31-lead-map,
  .v31-problem-card,
  .v31-product-card {
    border: 1px solid ButtonText;
  }

  .v31-lead-flow::before,
  .v31-lead-flow li::before,
  .v31-problem-mark {
    forced-color-adjust: none;
  }
}

/* V3.5: czytelność, progresywne ujawnianie i elementy decyzyjne */
.v3-visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.v3-mobile-disclosure {
  min-width: 0;
}

.v3-mobile-disclosure > summary {
  display: none;
}

.v3-mobile-disclosure--problems {
  margin-top: 28px;
}

.v3-mobile-disclosure--report > .v3-product-figure {
  height: 100%;
}

.v3-scope-grid > .v3-mobile-disclosure:nth-child(2) {
  border-left: 1px solid var(--line);
  background: #f2f4f7;
}

.v3-product-nav__links a[aria-current="location"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.v35-qualification-note {
  max-width: 62ch;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 650;
}

.v35-decision-document {
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid #cbd4e4;
  background: #fbfcff;
  color: var(--ink);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.v35-decision-document > header {
  display: flex;
  padding: 24px 28px;
  border-bottom: 1px solid #dce3ef;
  background: var(--white);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.v35-decision-document > header div {
  display: grid;
  gap: 3px;
}

.v35-decision-document > header div span,
.v35-decision-document__tag,
.v35-decision-document__question > span,
.v35-decision-document__grid section > span {
  color: var(--cobalt-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.v35-decision-document > header strong {
  color: var(--navy);
  font-size: 23px;
}

.v35-decision-document__tag {
  padding: 8px 10px;
  border: 1px solid #aebbd0;
  background: var(--ice);
}

.v35-decision-document__question {
  padding: 26px 28px;
  border-bottom: 1px solid #dce3ef;
  background: #eef3ff;
}

.v35-decision-document__question p {
  max-width: 60ch;
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 720;
  line-height: 1.35;
}

.v35-decision-document__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v35-decision-document__grid section {
  min-height: 180px;
  padding: 26px 28px;
  border-right: 1px solid #dce3ef;
  border-bottom: 1px solid #dce3ef;
}

.v35-decision-document__grid section:nth-child(even) {
  border-right: 0;
}

.v35-decision-document__grid section.is-first {
  background: var(--navy);
}

.v35-decision-document__grid section p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.v35-decision-document__grid section.is-first > span {
  color: #cfe8ff;
}

.v35-decision-document__grid section.is-first p {
  color: var(--white);
  font-weight: 650;
}

.v35-decision-document > footer {
  display: flex;
  padding: 16px 28px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  gap: 22px;
  flex-wrap: wrap;
}

.v35-decision-path__grid,
.v35-implementation-grid {
  display: grid;
  margin-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v35-decision-path__grid article,
.v35-implementation-grid article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.v35-decision-path__grid article > span,
.v35-implementation-grid article > span {
  color: var(--cobalt-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.v35-decision-path__grid h3,
.v35-implementation-grid h3 {
  margin-top: 34px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.v35-decision-path__grid p,
.v35-implementation-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.v35-related-paths {
  display: flex;
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--ice);
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.v35-related-paths p {
  margin: 0;
}

.v35-boundary {
  display: grid;
  padding: clamp(28px, 5vw, 54px);
  border-left: 5px solid var(--sky);
  background: var(--navy);
  color: var(--white);
  grid-template-columns: minmax(230px, 0.5fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.v35-boundary h2 {
  max-width: 100%;
  font-size: clamp(32px, 3vw, 44px);
}

.v35-boundary p {
  margin: 0;
  color: #dce5f5;
  font-size: 18px;
}

.v35-audit-proof-mobile {
  display: none;
}

.v32-terms-aside {
  display: block;
  padding: 0;
  border: 0;
}

.v32-terms-aside .v3-button {
  margin-top: 0;
}

/* Kontrast AA z bezpiecznym buforem dla tekstu zwykłego. */
.v3-founder-role {
  color: var(--cobalt-dark) !important;
}

.v3-section--navy .v3-founder-role,
.v3-hero .v3-founder-role {
  color: #cfe8ff !important;
}

.v3-panel-kicker {
  color: #cfe8ff;
}

.v3-custom-band .v3-eyebrow--light,
.v3-contact .v3-eyebrow--light,
.v3-price-band .v3-price-label {
  color: var(--white);
}

.v3-price-meta,
.v3-price-aside p,
.v3-contact p {
  color: var(--white);
}

@media (max-width: 920px) {
  .v3-product-nav__inner {
    display: grid;
    min-height: 54px;
    padding-top: 0;
    grid-template-columns: minmax(82px, 112px) minmax(0, 1fr);
    gap: 8px;
  }

  .v3-product-nav strong {
    overflow: hidden;
    max-width: 112px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v3-product-nav__links {
    margin-top: 0;
    padding: 0 44px 0 4px;
    scroll-padding-inline: 8px;
    scroll-snap-type: x proximity;
  }

  .v3-product-nav__links a {
    min-height: 52px;
    padding-block: 6px;
    scroll-snap-align: start;
  }

  .v3-product-nav__inner.has-horizontal-overflow::before,
  .v3-product-nav__inner.has-horizontal-overflow::after {
    position: absolute;
    z-index: 2;
    bottom: 0;
    display: grid;
    width: 44px;
    height: 52px;
    color: #cfe8ff;
    pointer-events: none;
    place-items: center;
    transition: opacity 160ms ease;
  }

  .v3-product-nav__inner.has-horizontal-overflow::before {
    left: min(112px, 32vw);
    background: linear-gradient(90deg, var(--navy) 48%, rgba(8, 20, 49, 0));
    content: "←";
    place-items: center start;
  }

  .v3-product-nav__inner.has-horizontal-overflow::after {
    right: 0;
    background: linear-gradient(90deg, rgba(8, 20, 49, 0), var(--navy) 48%);
    content: "→";
    place-items: center end;
  }

  .v3-product-nav__inner.is-scroll-start::before,
  .v3-product-nav__inner.is-scroll-end::after {
    opacity: 0;
  }

  .v3-has-product-nav [id] {
    scroll-margin-top: 66px;
  }

  .v35-decision-path__grid,
  .v35-implementation-grid {
    grid-template-columns: 1fr;
  }

  .v35-decision-path__grid article,
  .v35-implementation-grid article {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  body.v3-page {
    --section-space: 58px;
  }

  .v3-page h1,
  .v3-page .v3-contact-hero h1 {
    max-width: 16ch;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.03;
  }

  .v3-page h2 {
    font-size: clamp(30px, 8.8vw, 39px);
  }

  .v3-page h3 {
    font-size: clamp(21px, 6.3vw, 27px);
  }

  .v3-header-inner {
    min-height: 68px;
  }

  .v3-brand,
  .v3-brand img {
    min-width: 0;
    width: 158px;
  }

  .v3-hero {
    padding: 40px 0 50px;
  }

  .v3-hero-grid {
    gap: 32px;
  }

  .v3-kicker,
  .v3-eyebrow,
  .v3-panel-kicker {
    margin-bottom: 13px;
  }

  .v3-hero-lead {
    margin-top: 19px;
    font-size: 17px;
    line-height: 1.55;
  }

  .v3-actions {
    margin-top: 24px;
    gap: 8px;
  }

  .v3-actions .v3-button--outline {
    min-height: 44px;
    padding-block: 9px;
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .v3-hero-note {
    margin-top: 14px;
    font-size: 14px;
  }

  .v35-qualification-note {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.45;
  }

  .v3-hero-map {
    min-height: 0;
    padding: 16px;
  }

  .v3-hero-map__meta {
    margin-bottom: 16px;
  }

  .v3-hero-map__nodes {
    gap: 8px;
  }

  .v3-hero-node {
    min-height: 72px;
    padding: 11px;
  }

  .v3-hero-node strong {
    font-size: 16px;
  }

  .v3-hero-node i {
    right: 10px;
    bottom: 10px;
    width: 6px;
    height: 6px;
  }

  .v3-hero-map__caption {
    margin-top: 14px;
    font-size: 14px;
  }

  .v3-hero-facts {
    margin-top: 32px;
  }

  .v3-hero-fact,
  .v3-hero-fact + .v3-hero-fact {
    padding: 11px 0;
  }

  .v3-hero-fact strong {
    font-size: 17px;
  }

  .v3-hero-fact span {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.42;
  }

  .v31-lead-flow li {
    min-height: 46px;
    padding: 10px 16px 10px 32px;
  }

  .v31-lead-flow small {
    display: none;
  }

  .v31-lead-map__caption {
    margin-top: 14px;
  }

  .v3-home-page #o-factlever .v3-evidence-grid {
    display: none;
  }

  .v3-router-body {
    min-height: 520px;
    padding: 24px 18px;
  }

  .v3-mobile-disclosure {
    width: 100%;
  }

  .v3-mobile-disclosure > summary {
    display: flex;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid #aeb9cb;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 720;
  }

  .v3-mobile-disclosure > summary::-webkit-details-marker {
    display: none;
  }

  .v3-mobile-disclosure > summary::after {
    color: var(--cobalt-dark);
    content: "+";
    font-family: "IBM Plex Mono", monospace;
    font-size: 22px;
  }

  .v3-mobile-disclosure[open] > summary::after {
    content: "−";
  }

  .v3-section--navy .v3-mobile-disclosure > summary,
  .v3-contact-next .v3-mobile-disclosure > summary {
    border-color: #53617c;
    background: var(--navy-2);
    color: var(--white);
  }

  .v3-section--navy .v3-mobile-disclosure > summary::after,
  .v3-contact-next .v3-mobile-disclosure > summary::after {
    color: #cfe8ff;
  }

  .v3-mobile-disclosure--problems {
    margin-top: 16px;
  }

  .v3-mobile-disclosure--problems .v31-problem-grid {
    margin-top: 10px;
  }

  .v3-product-stage {
    gap: 14px;
  }

  .v3-mobile-disclosure--report > summary {
    margin-bottom: 10px;
  }

  .v3-mobile-disclosure--process > .v3-process {
    margin-top: 8px;
  }

  .v35-audit-support {
    margin-top: 16px;
  }

  .v35-audit-support[open] > summary {
    margin-bottom: 10px;
  }

  .v3-scope-grid {
    border: 0;
    gap: 10px;
  }

  .v3-scope-grid > .v3-scope-panel,
  .v3-scope-grid > .v3-mobile-disclosure {
    border: 1px solid var(--line);
  }

  .v3-scope-grid > .v3-mobile-disclosure:nth-child(2) {
    border-left: 1px solid var(--line);
  }

  .v3-mobile-disclosure--scope .v3-scope-panel {
    padding: 24px 20px;
    border: 0;
  }

  .v3-mobile-disclosure--scope .v3-scope-panel h3 {
    font-size: 22px;
  }

  .v35-decision-document > header {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .v35-decision-document__question {
    padding: 20px 18px;
  }

  .v35-decision-document__question p {
    font-size: 19px;
  }

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

  .v35-decision-document__grid section,
  .v35-decision-document__grid section:nth-child(even) {
    min-height: 0;
    padding: 20px 18px;
    border-right: 0;
  }

  .v35-decision-document > footer {
    padding: 14px 18px;
    gap: 8px 16px;
  }

  .v35-decision-path__grid,
  .v35-implementation-grid {
    margin-top: 30px;
  }

  .v35-decision-path__grid article,
  .v35-implementation-grid article {
    padding: 26px 22px;
  }

  .v35-decision-path__grid h3,
  .v35-implementation-grid h3 {
    margin-top: 20px;
  }

  .v35-related-paths {
    padding: 20px;
    flex-direction: column;
  }

  .v35-boundary {
    padding: 26px 22px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v3-audit-page .v3-trust-copy > p:not(.v3-founder-role):not(.v35-audit-proof-mobile),
  .v3-audit-page .v3-trust-copy .v3-evidence-grid {
    display: none;
  }

  .v3-audit-page .v3-trust-copy .v35-audit-proof-mobile {
    display: block;
    margin-top: 16px;
  }

  .v3-contact-next .v3-mobile-disclosure {
    margin-bottom: 16px;
  }

  .v3-contact-next .v3-mobile-disclosure > ol {
    margin-top: 4px;
  }

  .v32-terms-layout h2 {
    font-size: clamp(32px, 9vw, 42px);
  }
}

@media (max-width: 390px) {
  .v3-page h1,
  .v3-page .v3-contact-hero h1 {
    font-size: 36px;
  }

  .v3-product-nav__inner {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .v3-product-nav strong {
    max-width: 88px;
    font-size: 14px;
  }

  .v3-product-nav__inner.has-horizontal-overflow::before {
    left: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v3-product-nav__links,
  .v3-mobile-disclosure > summary,
  .v35-decision-document {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (forced-colors: active) {
  .v35-decision-document,
  .v35-decision-path__grid article,
  .v35-implementation-grid article,
  .v3-mobile-disclosure > summary,
  .v35-boundary {
    border: 1px solid ButtonText;
  }

  .v3-form-field input:focus-visible,
  .v3-form-field select:focus-visible,
  .v3-form-field textarea:focus-visible {
    outline: 3px solid Highlight;
    outline-offset: 3px;
  }
}

/* V3.5: reduced motion means no running animation or transition. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .v3-page *,
  .v3-page *::before,
  .v3-page *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Final V3.6 narrow override stays after the V3.5 responsive layer. */
@media (max-width: 360px) {
  .v36-system-map .v3-hero-node {
    padding-inline: 8px;
  }

  .v36-system-map .v3-hero-node strong {
    max-width: 100%;
    font-size: 14px;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .v36-system-map .v3-hero-node i {
    display: none;
  }
}
