:root {
  --navy: #002244;
  --navy-2: #073456;
  --navy-3: #0d4768;
  --blue: #009cda;
  --blue-dark: #006ca8;
  --teal: #087d83;
  --teal-dark: #056268;
  --teal-soft: #e9f7f6;
  --gold: #ef9102;
  --gold-soft: #fff4dd;
  --red: #d9485f;
  --ink: #0b1c2f;
  --muted: #53657a;
  --soft-ink: #718198;
  --line: #dbe4ed;
  --line-strong: #c6d3df;
  --surface: #ffffff;
  --canvas: #f5f8fb;
  --canvas-blue: #eef6fb;
  --shadow-small: 0 8px 22px rgba(0, 34, 68, 0.08);
  --shadow-large: 0 24px 70px rgba(0, 34, 68, 0.17);
  --shell: 1240px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
}

h1 {
  font-size: 64px;
  font-weight: 760;
}

h2 {
  font-size: 42px;
  font-weight: 740;
}

h3 {
  font-size: 24px;
  font-weight: 720;
}

p {
  color: var(--muted);
}

::selection {
  background: #bdeaf3;
  color: var(--navy);
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-150%);
}

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

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

.section {
  padding: 104px 0;
}

.soft-section {
  background: var(--canvas);
  border-block: 1px solid var(--line);
}

.white-section {
  background: #fff;
}

.dark-section {
  background: var(--navy);
  color: #fff;
}

.dark-section p {
  color: #bdd0df;
}

.section-label,
.nav-label {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-label-light {
  color: #61d8da;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #d7e9f4;
  font-size: 14px;
  font-weight: 700;
}

.status-line span {
  width: 9px;
  height: 9px;
  background: #55d1c9;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 209, 201, 0.14);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(8, 125, 131, 0.2);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-blue {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 108, 168, 0.2);
}

.button-blue:hover {
  background: #005888;
}

.button-secondary,
.button-quiet {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--navy);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--navy);
  background: var(--canvas);
}

.button-bright {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.button-bright:hover {
  background: #eaf7fb;
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 760;
}

.text-link:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(198, 211, 223, 0.8);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), 1380px);
  height: 100%;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 174px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-menu > summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 6px;
  color: #30445a;
  font-size: 14px;
  font-weight: 680;
  list-style: none;
  cursor: pointer;
}

.nav-menu > summary::-webkit-details-marker {
  display: none;
}

.desktop-nav > a:hover,
.nav-menu > summary:hover,
.desktop-nav .is-current {
  background: var(--canvas);
  color: var(--navy);
}

.nav-menu {
  position: relative;
}

.nav-menu[open] > summary {
  background: var(--navy);
  color: #fff;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  display: grid;
  width: 720px;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-large);
  transform: translateX(-38%);
}

.nav-panel-lead {
  padding: 18px;
  background: var(--navy);
  border-radius: 6px;
  color: #fff;
}

.nav-panel-lead .nav-label {
  margin-bottom: 8px;
  color: #67dfe0;
  font-size: 11px;
}

.nav-panel-lead strong {
  display: block;
  max-width: 14rem;
  font-size: 18px;
  line-height: 1.3;
}

.nav-panel-lead a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 740;
}

.nav-product {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
}

.nav-product:hover {
  background: var(--canvas);
  border-color: var(--line);
}

.nav-product-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-weight: 800;
}

.nav-product-skill .nav-product-mark {
  background: transparent;
}

.nav-product-logo img,
.app-logo img,
.app-symbol-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.nav-product-support .nav-product-mark {
  background: var(--blue-dark);
  font-size: 11px;
}

.nav-product span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.nav-product strong {
  color: var(--ink);
  font-size: 15px;
}

.nav-product small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.nav-product em {
  color: var(--teal-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 740;
}

.nav-product-support em {
  color: var(--blue-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions .button-quiet {
  border-color: transparent;
  background: transparent;
}

.menu-button,
.mobile-navigation {
  display: none;
}

.hero-colour-rail {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  height: 5px;
  grid-template-columns: 1.3fr 1fr 0.7fr 0.4fr;
}

.hero-colour-rail span:nth-child(1) { background: var(--teal); }
.hero-colour-rail span:nth-child(2) { background: var(--blue); }
.hero-colour-rail span:nth-child(3) { background: var(--gold); }
.hero-colour-rail span:nth-child(4) { background: var(--red); }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 0;
  background: var(--navy);
  color: #fff;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
}

.home-hero h1 {
  max-width: 980px;
  margin: 0 auto 22px;
}

.hero-lead {
  max-width: 790px;
  margin: 0 auto;
  color: #c8d9e6;
  font-size: 20px;
  line-height: 1.65;
}

.home-hero .button-row {
  justify-content: center;
  margin-top: 30px;
}

.suite-stage {
  height: 450px;
  max-width: 1160px;
  margin: 42px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.31);
  color: var(--ink);
  text-align: left;
}

.suite-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f7fafc;
  border-bottom: 1px solid var(--line);
}

.suite-stage-top > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stage-kicker {
  padding: 4px 7px;
  background: var(--navy);
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.suite-stage-top strong {
  font-size: 15px;
}

.suite-stage-top p {
  margin: 0;
  font-size: 12px;
}

.suite-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.suite-tabs button {
  position: relative;
  display: grid;
  min-height: 76px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.suite-tabs button:last-child {
  border-right: 0;
}

.suite-tabs button::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 3px;
  background: transparent;
  content: "";
}

.suite-tabs button[aria-selected="true"] {
  background: #f6fbfb;
}

.suite-tabs button[aria-selected="true"]::after {
  background: var(--teal);
}

.suite-tabs button:nth-child(2)[aria-selected="true"] {
  background: #f4f9ff;
}

.suite-tabs button:nth-child(2)[aria-selected="true"]::after {
  background: var(--blue-dark);
}

.suite-tabs button:nth-child(3)[aria-selected="true"] {
  background: #fffaf0;
}

.suite-tabs button:nth-child(3)[aria-selected="true"]::after {
  background: var(--gold);
}

.app-dot,
.app-symbol {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-weight: 830;
}

.app-dot {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

.app-symbol {
  width: 52px;
  height: 52px;
  font-size: 20px;
}

.app-dot-teal,
.app-symbol-teal { background: var(--teal); }
.app-dot-blue,
.app-symbol-blue { background: var(--blue-dark); }
.app-dot-gold,
.app-symbol-gold { background: var(--gold); color: var(--navy); }

.app-dot-blue,
.app-symbol-blue,
.ledger-mark-blue,
.portfolio-mark-blue {
  font-size: 12px;
  letter-spacing: 0;
}

.app-dot-brand {
  background: #fff;
  border: 1px solid var(--line);
}

.app-dot-brand img {
  width: 24px;
  height: 24px;
}

.app-logo,
.app-symbol-logo { background: transparent; }

.app-symbol-oneproof {
  padding: 5px;
  background: #fff;
  border: 1px solid var(--line);
}

.suite-tabs button > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.suite-tabs strong {
  font-size: 13px;
}

.suite-tabs small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suite-tabs em {
  padding: 3px 6px;
  background: var(--canvas);
  border-radius: 4px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
}

.suite-panels > section {
  display: grid;
  min-height: 318px;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
}

.stage-copy {
  align-self: center;
  padding: 24px 34px;
}

.availability {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.availability.available {
  background: #dcf8ec;
  color: #056044;
}

.availability.developing {
  background: #e6f2ff;
  color: #005d96;
}

.availability.direction {
  background: var(--gold-soft);
  color: #7b4900;
}

.stage-copy h2 {
  margin-bottom: 15px;
  font-size: 27px;
}

.stage-copy p:not(.availability) {
  margin-bottom: 18px;
  font-size: 15px;
}

.stage-copy a {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 780;
}

.stage-image {
  display: flex;
  align-items: flex-end;
  max-height: 318px;
  overflow: hidden;
  padding: 22px 0 0 18px;
  background: #e9f5f6;
}

.stage-image img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-bottom: 0;
  border-radius: 8px 0 0;
  box-shadow: var(--shadow-large);
}

.support-ui {
  align-self: stretch;
  max-height: 318px;
  margin: 20px 0 0 18px;
  overflow: hidden;
  background: #f7faff;
  border: 1px solid #cad9e8;
  border-right: 0;
  border-bottom: 0;
  border-radius: 8px 0 0;
  box-shadow: var(--shadow-large);
}

.support-ui-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 17px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
}

.support-ui-bar strong {
  margin-right: auto;
}

.ui-status {
  padding: 4px 8px;
  background: var(--blue-dark);
  border-radius: 4px;
}

.support-ui-grid {
  display: grid;
  min-height: 315px;
  grid-template-columns: 145px 1fr;
}

.support-ui-grid aside {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 14px 10px;
  background: #eef4fa;
  border-right: 1px solid #d7e2ed;
}

.support-ui-grid aside span {
  display: flex;
  justify-content: space-between;
  padding: 8px 9px;
  border-radius: 5px;
  color: #52657b;
  font-size: 11px;
}

.support-ui-grid aside span.is-active {
  background: #dbeafe;
  color: #0c4d83;
  font-weight: 750;
}

.ticket-list {
  padding: 20px;
}

.ticket-list > p {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.ticket-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}

.ticket-list strong {
  font-size: 12px;
}

.ticket-list span {
  color: var(--muted);
  font-size: 10px;
}

.ticket-list em,
.priority-high,
.priority-medium {
  grid-area: 1 / 2 / 3 / 3;
  align-self: center;
  padding: 3px 6px;
  background: #eef2f7;
  border-radius: 4px;
  color: #42566c;
  font-size: 9px;
  font-style: normal;
  font-weight: 760;
}

.ticket-list .priority-high,
.mini-ticket i.priority-high {
  background: #ffe8ec;
  color: #a31f39;
}

.ticket-list .priority-medium,
.mini-ticket i.priority-medium {
  background: var(--gold-soft);
  color: #7b4900;
}

.connection-map {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  background: var(--canvas-blue);
}

.connection-map::before,
.connection-map::after {
  position: absolute;
  z-index: 0;
  background: #8dbfd4;
  content: "";
}

.connection-map::before {
  top: 50%;
  left: 18%;
  width: 64%;
  height: 2px;
}

.connection-map::after {
  top: 27%;
  bottom: 23%;
  left: 50%;
  width: 2px;
}

.connection-core,
.connection-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-small);
  font-size: 12px;
  font-weight: 760;
}

.connection-core {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
}

.connection-core img {
  width: 55px;
}

.connection-node {
  width: 132px;
  min-height: 68px;
  padding: 10px;
}

.connection-node small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.node-one { top: 16%; left: 8%; border-top: 4px solid var(--teal); }
.node-two { top: 16%; right: 8%; border-top: 4px solid var(--blue-dark); }
.node-three { right: 8%; bottom: 12%; border-top: 4px solid var(--gold); }

.suite-ledger {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 318px;
  padding: 24px;
  background: #f2f7fb;
}

.suite-ledger-head,
.suite-ledger > a,
.suite-ledger-direction {
  display: grid;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 5px 14px rgba(0, 34, 68, 0.055);
}

.suite-ledger-head {
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 11px 14px;
}

.suite-ledger-head img {
  width: 112px;
}

.suite-ledger-head span {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 750;
  text-align: right;
}

.suite-ledger > a {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 12px;
  color: var(--navy);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease, border-color 180ms ease;
}

.suite-ledger > a:hover {
  border-color: #9fc0cf;
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}

.suite-ledger > a > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.suite-ledger > a strong {
  font-size: 13px;
}

.suite-ledger > a small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ledger-mark,
.portfolio-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  background: var(--blue-dark);
  border-radius: 7px;
  color: #fff;
  font-weight: 820;
}

.ledger-mark-logo,
.portfolio-mark-logo {
  background: transparent;
}

.ledger-mark img,
.portfolio-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-ledger-direction {
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 11px 12px;
  border-color: #ead9b5;
  background: #fffaf0;
}

.suite-ledger-direction > span {
  color: #785218;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.suite-ledger-direction strong {
  font-size: 11px;
  line-height: 1.35;
}

.intro-band {
  padding-block: 76px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 70px;
  align-items: end;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 1.7;
}

.product-showcase {
  background: var(--canvas);
}

.product-showcase > .shell {
  display: grid;
  gap: 72px;
}

.product-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-small);
}

.product-band-support {
  grid-template-columns: 0.86fr 1.14fr;
  background: #f8fbff;
}

.product-band-copy {
  padding: 48px;
}

.product-heading,
.directory-heading,
.product-hero-brand,
.supportproof-wordmark {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-heading {
  margin-bottom: 28px;
}

.product-heading p {
  margin: 0 0 2px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.product-band-support .product-heading p {
  color: var(--blue-dark);
}

.product-heading h2 {
  margin: 0;
  font-size: 32px;
}

.product-band-copy > h3 {
  margin-bottom: 18px;
  font-size: 31px;
}

.product-band-copy > p {
  font-size: 16px;
}

.check-list,
.tick-grid {
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
}

.check-list li,
.tick-grid li {
  position: relative;
  padding-left: 27px;
  color: #344a61;
  font-size: 14px;
}

.check-list li::before,
.tick-grid li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: #fff;
  content: "\2713";
  font-size: 11px;
  font-weight: 900;
}

.product-band-support .check-list li::before {
  background: var(--blue-dark);
}

.product-band-media {
  align-self: stretch;
  min-width: 0;
  padding: 42px 0 42px 26px;
  overflow: hidden;
  background: #e9f5f6;
}

.media-tabs,
.feature-nav {
  display: flex;
  gap: 6px;
}

.media-tabs {
  margin: 0 28px 18px 0;
}

.media-tabs button,
.feature-nav button {
  min-height: 38px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
}

.media-tabs button.is-active,
.feature-nav button.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.product-band-media img {
  width: 100%;
  min-width: 670px;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow-large);
}

.support-workspace {
  position: relative;
  align-self: center;
  margin: 38px 0 38px 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #c9d8e7;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow-large);
}

.workspace-top {
  display: grid;
  height: 52px;
  grid-template-columns: 130px 1fr 34px;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}

.support-brand {
  font-size: 13px;
  font-weight: 800;
}

.workspace-search {
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  color: #c9d9e8;
}

.workspace-avatar {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: #d9eff7;
  border-radius: 50%;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.workspace-body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 135px 1fr;
}

.workspace-body > aside {
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 15px 9px;
  background: #f0f5f9;
  border-right: 1px solid #d9e3ec;
}

.workspace-body > aside strong {
  margin: 8px 7px 4px;
  color: #6d7e90;
  font-size: 9px;
  text-transform: uppercase;
}

.workspace-body > aside span {
  display: flex;
  justify-content: space-between;
  padding: 7px 8px;
  border-radius: 5px;
  color: #53667a;
  font-size: 10px;
}

.workspace-body > aside span.active {
  background: #dceafe;
  color: #084d82;
  font-weight: 760;
}

.workspace-main {
  min-width: 0;
  padding: 19px;
}

.workspace-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.workspace-title small {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 750;
}

.workspace-title h4 {
  margin: 3px 0 0;
  font-size: 15px;
}

.workspace-title p {
  margin: 3px 0 0;
  font-size: 9px;
}

.status-open {
  padding: 4px 7px;
  background: #e6f2ff;
  border-radius: 4px;
  color: #005d96;
  font-size: 9px;
  font-weight: 780;
  white-space: nowrap;
}

.workspace-layout {
  display: grid;
  grid-template-columns: 1fr 145px;
  gap: 15px;
  padding-top: 15px;
}

.conversation-label,
.request-detail > p {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 760;
}

.message {
  margin-bottom: 10px;
  padding: 11px;
  background: #f6f8fb;
  border-radius: 6px;
}

.message.agent-message {
  background: #eaf4ff;
}

.message strong {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 9px;
}

.message strong small {
  color: var(--soft-ink);
  font-weight: 500;
}

.message p {
  margin: 6px 0 0;
  color: #41566c;
  font-size: 9px;
  line-height: 1.5;
}

.attachment {
  margin-top: 8px;
  padding: 6px 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #30475d;
  font-size: 8px;
}

.attachment span {
  float: right;
  color: var(--soft-ink);
}

.reply-box {
  display: flex;
  min-height: 53px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--soft-ink);
  font-size: 9px;
}

.reply-box button {
  padding: 6px 8px;
  background: var(--blue-dark);
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-size: 8px;
}

.request-detail {
  padding: 11px;
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.request-detail dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.request-detail dl div {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}

.request-detail dl div:last-child {
  border-bottom: 0;
}

.request-detail dt {
  color: var(--soft-ink);
  font-size: 8px;
}

.request-detail dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.illustrative-label {
  margin: 0;
  padding: 7px 12px;
  background: #edf3f8;
  border-top: 1px solid var(--line);
  color: #60758a;
  font-size: 9px;
  text-align: center;
}

.principle-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 68px 0 38px;
  border-block: 1px solid rgba(255, 255, 255, 0.17);
}

.principle-lines article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.principle-lines article:last-child {
  border-right: 0;
}

.principle-lines span,
.outcome-lines article > strong,
.value-rows article > span {
  display: block;
  margin-bottom: 32px;
  color: #63d9db;
  font-size: 13px;
  font-weight: 800;
}

.principle-lines h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.principle-lines p {
  margin: 0;
  font-size: 14px;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
  align-items: start;
}

.proof-layout > div:first-child h2 {
  margin-bottom: 20px;
  font-size: 38px;
}

.proof-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.proof-links > a {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  transition: padding 160ms ease, color 160ms ease;
}

.proof-links > a:hover {
  padding-inline: 12px;
  color: var(--teal-dark);
}

.proof-links > a > span:first-child {
  display: grid;
  gap: 4px;
}

.proof-links strong {
  font-size: 16px;
}

.proof-links small {
  color: var(--muted);
  font-size: 13px;
}

.proof-links-dark {
  border-color: rgba(255, 255, 255, 0.18);
}

.proof-links-dark > a {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.proof-links-dark > a:hover {
  color: #67dfe0;
}

.proof-links-dark small {
  color: #b9cedd;
}

.cta-section {
  padding-block: 68px;
  background: var(--navy-2);
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 26px;
}

.cta-inner img {
  width: 64px;
  height: 64px;
}

.cta-inner p {
  margin-bottom: 4px;
  color: #64d9da;
  font-size: 13px;
  font-weight: 750;
}

.cta-inner h2 {
  max-width: 680px;
  margin: 0;
  font-size: 31px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  width: min(calc(100% - 48px), var(--shell));
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 0.7fr));
  gap: 54px;
  margin-inline: auto;
  padding: 70px 0 54px;
}

.footer-brand .brand img {
  width: 185px;
}

.footer-brand > p {
  max-width: 330px;
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}

.footer-brand .footer-note {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-group strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 14px;
}

.footer-group a {
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
}

.footer-group a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  width: min(calc(100% - 48px), var(--shell));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 58px;
  color: #60768b;
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.page-hero,
.product-hero,
.legal-hero {
  overflow: hidden;
  background: var(--canvas-blue);
  border-bottom: 1px solid var(--line);
}

.page-hero {
  padding: 42px 0 92px;
}

.page-hero h1 {
  max-width: 970px;
  margin-bottom: 24px;
}

.page-hero .shell > p:not(.section-label) {
  max-width: 790px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.65;
}

.page-hero-products {
  position: relative;
  background: #f4f9fc;
}

.page-hero-products::after,
.about-hero::after,
.trust-hero::after,
.contact-hero::after {
  position: absolute;
  inset: auto max(4vw, calc((100% - var(--shell)) / 2)) 0 auto;
  width: min(420px, 32vw);
  height: 5px;
  background: var(--teal);
  box-shadow: 110px 0 0 var(--blue), 220px 0 0 var(--gold), 300px 0 0 var(--red);
  content: "";
}

.page-hero > .shell,
.about-hero > .shell,
.trust-hero > .shell,
.contact-hero > .shell {
  position: relative;
  z-index: 1;
}

.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-status-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #354b61;
  font-size: 13px;
  font-weight: 700;
}

.status-dot-live,
.status-dot-build {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot-live { background: #0d9a68; }
.status-dot-build { background: var(--blue-dark); }

.product-directory {
  display: grid;
  gap: 70px;
}

.directory-product {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.directory-product > *:not(.directory-image):not(.mini-support-preview) {
  grid-column: 1;
}

.directory-skill {
  background: #f4fbfa;
}

.directory-support {
  background: #f5f9ff;
}

.directory-heading {
  align-self: end;
}

.directory-heading p {
  margin: 0 0 5px;
}

.directory-heading h2 {
  margin: 0;
  font-size: 36px;
}

.directory-heading div > span {
  color: var(--muted);
  font-size: 13px;
}

.directory-product > p {
  margin: -25px 0 0;
  font-size: 17px;
}

.tick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: -30px 0 0;
}

.directory-product .button-row {
  align-self: start;
  margin-top: -25px;
}

.directory-image,
.mini-support-preview {
  grid-area: 1 / 2 / 6 / 3;
  align-self: center;
}

.directory-image {
  margin-right: -47px;
}

.directory-image img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow-large);
}

.mini-support-preview {
  overflow: hidden;
  background: #fff;
  border: 1px solid #cbd9e7;
  border-radius: 8px;
  box-shadow: var(--shadow-large);
}

.mini-support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  background: var(--navy);
  color: #fff;
}

.mini-support-head span {
  color: #b9d0e1;
  font-size: 11px;
}

.mini-ticket {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.mini-ticket:last-child {
  border-bottom: 0;
}

.mini-ticket i {
  width: 9px;
  height: 9px;
  background: #9fb2c5;
  border-radius: 50%;
}

.mini-ticket > span {
  display: grid;
}

.mini-ticket strong {
  font-size: 13px;
}

.mini-ticket small,
.mini-ticket em {
  color: var(--muted);
  font-size: 10px;
}

.mini-ticket em {
  font-style: normal;
}

.compare-section {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 70px;
}

.comparison-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.55fr;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row strong,
.comparison-row span {
  font-size: 13px;
}

.comparison-row a {
  color: var(--teal-dark);
  font-weight: 750;
}

.comparison-head {
  min-height: 48px;
  background: #edf3f7;
  color: #52677d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.tag-live { background: #dcf8ec; color: #056044; }
.tag-build { background: #e6f2ff; color: #005d96; }
.tag-direction { background: var(--gold-soft); color: #754400; }

.faq-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 2px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 730;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-dark);
  font-size: 18px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  padding: 0 48px 22px 2px;
}

.faq-list details p {
  margin: 0;
}

.dark-section .faq-list {
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-section .faq-list details {
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-section .faq-list summary {
  color: #fff;
}

.dark-section .faq-list summary span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #67dfe0;
}

.product-hero {
  padding: 40px 0 0;
}

.product-hero .breadcrumbs {
  margin-bottom: 48px;
}

.product-hero-brand img {
  width: 220px;
  height: auto;
}

.supportproof-wordmark .app-symbol {
  width: 46px;
  height: 46px;
}

.supportproof-wordmark strong {
  font-size: 26px;
}

.product-hero h1 {
  max-width: 1060px;
  margin: 34px 0 23px;
}

.product-hero .shell > p:not(.honesty-note) {
  max-width: 840px;
  font-size: 20px;
  line-height: 1.65;
}

.product-hero .button-row {
  margin-top: 30px;
}

.hero-product-image {
  width: min(1120px, 100%);
  margin: 66px auto -1px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow-large);
}

.hero-product-image img {
  width: 100%;
}

.honesty-note {
  margin: 24px 0 70px;
  padding-left: 14px;
  border-left: 3px solid var(--blue-dark);
  color: #486076;
  font-size: 13px;
}

.outcome-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-block: 1px solid var(--line-strong);
}

.outcome-lines article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line-strong);
}

.outcome-lines article:last-child {
  border-right: 0;
}

.outcome-lines article > strong {
  margin-bottom: 26px;
  color: var(--teal-dark);
}

.outcome-lines h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.outcome-lines p {
  margin: 0;
  font-size: 14px;
}

.feature-workspace {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-nav {
  padding: 16px;
  background: #edf3f7;
  border-bottom: 1px solid var(--line);
}

.feature-view > div {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: 40px;
  padding: 44px 0 0 44px;
}

.feature-view h2 {
  margin-bottom: 16px;
  font-size: 32px;
}

.feature-view img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-bottom: 0;
  border-radius: 8px 0 0;
  box-shadow: var(--shadow-large);
}

.capability-section {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 70px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-strong);
}

.capability-list article {
  min-height: 190px;
  padding: 26px 24px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.capability-list article:nth-child(2n) {
  border-right: 0;
}

.capability-list span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-list h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.capability-list p {
  margin: 0;
  font-size: 14px;
}

.support-preview-section {
  background: #f4f8fc;
}

.support-workspace-large {
  margin: 54px 0 0;
  border-right: 1px solid #c9d8e7;
  border-radius: 8px;
}

.support-workspace-large .workspace-body {
  min-height: 570px;
  grid-template-columns: 180px 1fr;
}

.support-workspace-large .workspace-main {
  padding: 30px;
}

.support-workspace-large .workspace-layout {
  grid-template-columns: 1fr 240px;
  gap: 24px;
}

.support-workspace-large .workspace-title h4 {
  font-size: 21px;
}

.support-workspace-large .message,
.support-workspace-large .request-detail {
  padding: 15px;
}

.support-workspace-large .message strong,
.support-workspace-large .message p,
.support-workspace-large .request-detail dd,
.support-workspace-large .conversation-label,
.support-workspace-large .request-detail > p {
  font-size: 12px;
}

.support-workspace-large .request-detail dt,
.support-workspace-large .workspace-title small,
.support-workspace-large .workspace-title p {
  font-size: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-block: 1px solid var(--line-strong);
}

.process-steps article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line-strong);
}

.process-steps article:last-child {
  border-right: 0;
}

.process-steps span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-bottom: 32px;
  background: var(--blue-dark);
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.process-steps p {
  margin: 0;
  font-size: 14px;
}

.suite-hero {
  padding-bottom: 0;
  background: #edf6f9;
}

.suite-hero .button-row {
  margin-top: 30px;
}

.suite-architecture {
  position: relative;
  height: 490px;
  margin-top: 68px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow-large);
  color: #fff;
}

.suite-architecture::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.suite-architecture::after {
  position: absolute;
  top: 49%;
  right: 21%;
  left: 21%;
  height: 2px;
  background: #6ba2ba;
  content: "";
}

.architecture-centre,
.architecture-product {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}

.architecture-centre {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: #fff;
  color: var(--navy);
  transform: translate(-50%, -50%);
}

.architecture-centre img {
  width: 70px;
}

.architecture-centre strong {
  margin-top: -18px;
  font-size: 18px;
}

.architecture-centre span {
  margin-top: -24px;
  color: var(--muted);
  font-size: 10px;
}

.architecture-product {
  top: 50%;
  width: 190px;
  height: 128px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-50%);
}

.architecture-skill { left: 8%; border-top: 5px solid var(--teal); }
.architecture-support { right: 8%; border-top: 5px solid var(--blue); }

.architecture-product i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

.architecture-skill i { background: var(--teal); }
.architecture-support i { background: var(--blue-dark); }

.architecture-product strong {
  margin-top: -10px;
  font-size: 15px;
}

.architecture-product small {
  margin-top: -13px;
  color: var(--muted);
  font-size: 10px;
}

.architecture-foundation {
  position: absolute;
  right: 12%;
  bottom: 26px;
  left: 12%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
}

.architecture-foundation span {
  padding: 10px;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: #c6d9e7;
  font-size: 11px;
  text-align: center;
}

.architecture-foundation span:last-child {
  border-right: 0;
}

.suite-portfolio {
  max-width: 980px;
  margin: 64px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 30px 70px rgba(0, 34, 68, 0.2);
}

.suite-portfolio-head {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 20px;
  background: var(--navy);
  border-top: 5px solid var(--gold);
  color: #fff;
}

.suite-portfolio-head img {
  width: 158px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 5px;
}

.suite-portfolio-head span {
  color: #c9dbe8;
  font-size: 12px;
  font-weight: 700;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  transition: background 180ms ease, padding 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-row:hover {
  padding-inline: 27px 17px;
  background: #f7fbfd;
}

.portfolio-row > span:nth-child(2) {
  display: grid;
}

.portfolio-row strong {
  font-size: 16px;
}

.portfolio-row small {
  color: var(--muted);
  font-size: 12px;
}

.portfolio-row b {
  font-size: 18px;
  font-weight: 500;
}

.portfolio-mark {
  width: 46px;
  height: 46px;
}

.portfolio-direction {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff9ed;
}

.portfolio-direction > span {
  color: #785218;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-direction strong {
  font-size: 13px;
  line-height: 1.45;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-block: 1px solid var(--line-strong);
}

.model-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line-strong);
}

.model-grid article:last-child {
  border-right: 0;
}

.model-grid span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-grid h3 {
  margin: 28px 0 11px;
  font-size: 20px;
}

.model-grid p {
  margin: 0;
  font-size: 14px;
}

.status-section {
  background: #f4f8fa;
  border-block: 1px solid var(--line);
}

.status-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.status-column {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.status-heading span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-heading-live span { background: #0d9a68; }
.status-heading-build span { background: var(--blue-dark); }
.status-heading-direction span { background: var(--gold); }

.status-column article {
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
}

.status-column article:last-child {
  border-bottom: 0;
}

.status-column h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.status-column p {
  font-size: 13px;
}

.status-column a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 760;
}

.journey-section {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
}

.journey-section ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.journey-section li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 6px 16px;
  padding: 23px 2px;
  border-bottom: 1px solid var(--line-strong);
}

.journey-section li > span {
  grid-row: 1 / 3;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-section li strong {
  font-size: 16px;
}

.journey-section li p {
  margin: 0;
  font-size: 13px;
}

.about-hero,
.trust-hero,
.contact-hero {
  position: relative;
}

.about-mark {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 58px;
  padding-top: 38px;
  border-top: 1px solid var(--line-strong);
}

.about-mark img {
  width: 110px;
}

.about-mark span {
  color: var(--navy);
  font-size: 24px;
  font-weight: 740;
  line-height: 1.35;
}

.company-position {
  display: grid;
  max-width: 930px;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-top: 58px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-large);
}

.company-position > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.company-position > div:last-child {
  border-right: 0;
}

.company-position-brand {
  display: grid !important;
  align-content: center;
  gap: 8px !important;
  background: var(--navy);
}

.company-position-brand img {
  width: 155px;
  padding: 7px 9px;
  background: #fff;
  border-radius: 5px;
}

.company-position-brand span {
  color: #c7dae7;
  font-size: 11px;
  font-weight: 700;
}

.company-position > div:not(.company-position-brand) > span:last-child {
  display: grid;
}

.company-position strong {
  color: var(--navy);
  font-size: 15px;
}

.company-position small {
  color: var(--muted);
  font-size: 11px;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 84px;
}

.story-layout > div:last-child p {
  color: #354b61;
  font-size: 18px;
  line-height: 1.8;
}

.values-section {
  background: var(--navy);
  color: #fff;
}

.values-section p {
  color: #bdd0df;
}

.value-rows {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
  border-block: 1px solid rgba(255,255,255,0.18);
}

.value-rows article {
  min-height: 250px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.value-rows article:last-child {
  border-right: 0;
}

.value-rows article > span {
  margin-bottom: 38px;
}

.value-rows h3 {
  margin-bottom: 11px;
  font-size: 18px;
}

.value-rows p {
  margin: 0;
  font-size: 13px;
}

.company-products {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.company-product {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 156px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-product:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-small);
}

.company-product > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.company-product small {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.company-product-build small {
  color: var(--blue-dark);
}

.company-product strong {
  font-size: 20px;
}

.company-product em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.trust-grid article {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-grid article > h2 {
  margin-bottom: 15px;
  font-size: 27px;
}

.trust-grid article > .check-list {
  margin-top: auto;
}

.trust-grid article > .button,
.trust-grid article > .text-link {
  align-self: flex-start;
}

.procurement-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.contact-options {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.contact-options > a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 142px;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line-strong);
}

.contact-options > a:hover {
  padding-inline: 10px;
  color: var(--teal-dark);
}

.contact-options .app-symbol {
  width: 48px;
  height: 48px;
}

.contact-options a > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.contact-options small {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-options strong {
  color: var(--ink);
  font-size: 16px;
}

.contact-options p {
  margin: 2px 0 0;
  font-size: 12px;
}

.contact-form-wrap {
  padding: 34px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form > div:first-child {
  margin-bottom: 12px;
}

.contact-form h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.contact-form label {
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.contact-form label span {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 125, 131, 0.14);
  outline: 0;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 12px;
}

.form-status {
  margin: 0;
  font-size: 12px;
}

.direct-email {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
}

.direct-email a {
  color: var(--teal-dark);
  font-weight: 750;
}

.response-routes {
  display: grid;
  grid-template-columns: 1fr repeat(4, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.response-routes > a {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.response-routes > a:hover {
  border-color: var(--teal);
}

.response-routes > a strong {
  font-size: 14px;
}

.response-routes > a span {
  color: var(--muted);
  font-size: 12px;
}

.legal-hero {
  padding: 40px 0 76px;
}

.legal-hero h1 {
  margin-bottom: 18px;
}

.legal-hero .shell > p:not(.section-label) {
  max-width: 760px;
  font-size: 18px;
}

.legal-hero .shell > span {
  color: var(--soft-ink);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 90px;
  align-items: start;
}

.legal-layout > aside {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-layout > aside strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.legal-layout > aside a {
  color: var(--muted);
  font-size: 12px;
}

.legal-layout > aside a:hover {
  color: var(--teal-dark);
}

.legal-copy > section {
  padding: 0 0 40px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.legal-copy h2 {
  margin-bottom: 17px;
  font-size: 25px;
}

.legal-copy p,
.legal-copy li {
  color: #3f5369;
  font-size: 16px;
  line-height: 1.75;
}

.legal-copy a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 0;
  background: var(--canvas-blue);
  text-align: center;
}

.not-found img {
  width: 90px;
  margin: 0 auto 28px;
}

.not-found .shell > p:first-of-type {
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.not-found h1 {
  margin-bottom: 16px;
  font-size: 48px;
}

.not-found .button-row {
  justify-content: center;
  margin-top: 28px;
}

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

@keyframes panel-arrive {
  from {
    opacity: 0.35;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes live-status {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 154, 104, 0); }
  50% { box-shadow: 0 0 0 5px rgba(13, 154, 104, 0.13); }
}

.home-hero .status-line,
.home-hero h1,
.home-hero .hero-lead,
.home-hero > .shell > .button-row,
.home-hero .suite-stage {
  animation: hero-rise 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero h1 { animation-delay: 70ms; }
.home-hero .hero-lead { animation-delay: 130ms; }
.home-hero > .shell > .button-row { animation-delay: 190ms; }
.home-hero .suite-stage { animation-delay: 250ms; }

.suite-panels > section.panel-entering,
.feature-view > div.panel-entering,
[data-image-panel].panel-entering {
  animation: panel-arrive 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.status-dot-live,
.status-heading-live > span {
  animation: live-status 2.8s ease-in-out infinite;
}

.product-band,
.directory-product,
.company-product,
.contact-options > a,
.status-column {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.product-band:hover,
.directory-product:hover,
.company-product:hover,
.contact-options > a:hover,
.status-column:hover {
  border-color: #aabfce;
  box-shadow: 0 18px 46px rgba(0, 34, 68, 0.13);
  transform: translateY(-4px);
}

.product-band-media img,
.hero-product-image img,
.feature-view img {
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms ease;
}

.product-band:hover .product-band-media img,
.hero-product-image:hover img,
.feature-workspace:hover .feature-view img {
  transform: translateY(-3px);
}

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

[data-reveal].is-visible {
  animation: hero-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-order, 0) * 55ms);
}

@media (max-width: 1120px) {
  h1 { font-size: 54px; }
  h2 { font-size: 37px; }
  .header-actions .button-quiet { display: none; }
  .desktop-nav { gap: 0; }
  .desktop-nav > a, .nav-menu > summary { padding-inline: 10px; }
  .suite-panels > section { grid-template-columns: 0.8fr 1.2fr; }
  .product-band, .product-band-support { grid-template-columns: 0.92fr 1.08fr; }
  .product-band-copy { padding: 38px; }
  .product-band-copy > h3 { font-size: 27px; }
  .workspace-layout { grid-template-columns: 1fr 125px; }
  .directory-product { grid-template-columns: 0.9fr 1.1fr; gap: 40px; padding: 38px; }
  .directory-image { margin-right: -39px; }
  .response-routes { grid-template-columns: repeat(2, 1fr); }
  .response-routes > div { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  :root { --header-height: 70px; }
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .section { padding: 82px 0; }
  .desktop-nav, .header-actions { display: none; }
  .header-inner { width: calc(100% - 32px); }
  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
  }
  .menu-button > span:not(.sr-only) { width: 20px; height: 2px; background: var(--navy); transition: transform 160ms ease, opacity 160ms ease; }
  .menu-button[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-navigation {
    position: absolute;
    inset: 100% 0 auto;
    display: block;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 20px 18px 40px;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .mobile-navigation nav { display: grid; max-width: 680px; gap: 4px; margin: auto; }
  .mobile-navigation p { margin: 14px 10px 4px; color: var(--soft-ink); font-size: 11px; font-weight: 800; text-transform: uppercase; }
  .mobile-navigation a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 700; }
  .mobile-navigation a small { color: var(--soft-ink); font-size: 10px; }
  .suite-tabs { grid-template-columns: 1fr; }
  .suite-tabs button { border-right: 0; border-bottom: 1px solid var(--line); }
  .suite-tabs button:last-child { border-bottom: 0; }
  .suite-stage { height: auto; }
  .suite-panels > section { grid-template-columns: 1fr; }
  .stage-copy { padding: 34px; }
  .stage-image, .support-ui { max-height: none; margin: 0 0 0 34px; padding-top: 0; }
  .connection-map { min-height: 360px; }
  .suite-ledger { min-height: 360px; }
  .split-heading, .proof-layout, .faq-layout, .capability-section, .journey-section, .story-layout, .procurement-layout { grid-template-columns: 1fr; gap: 38px; }
  .product-band, .product-band-support { grid-template-columns: 1fr; }
  .product-band-media { min-height: 460px; }
  .product-band-media img { min-width: 620px; }
  .support-workspace { margin: 0 0 34px 34px; }
  .principle-lines, .model-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-lines article:nth-child(2), .model-grid article:nth-child(2) { border-right: 0; }
  .principle-lines article:nth-child(-n+2), .model-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.17); }
  .outcome-lines, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .outcome-lines article:nth-child(2), .process-steps article:nth-child(2) { border-right: 0; }
  .outcome-lines article:nth-child(-n+2), .process-steps article:nth-child(-n+2) { border-bottom: 1px solid var(--line-strong); }
  .footer-main { grid-template-columns: 1.2fr repeat(3, 0.8fr); gap: 30px; }
  .directory-product { grid-template-columns: 1fr; }
  .directory-product > *:not(.directory-image):not(.mini-support-preview) { grid-column: 1; }
  .directory-product > p, .directory-product .tick-grid, .directory-product .button-row { margin-top: 0; }
  .directory-image, .mini-support-preview { grid-area: auto; }
  .directory-image { margin: 15px -39px -39px 18px; }
  .compare-section { grid-template-columns: 1fr; gap: 35px; }
  .feature-view > div { grid-template-columns: 1fr; padding: 34px 0 0 34px; }
  .feature-view img { margin-top: 10px; }
  .support-workspace-large .workspace-body { grid-template-columns: 145px 1fr; }
  .support-workspace-large .workspace-layout { grid-template-columns: 1fr 190px; }
  .status-board { grid-template-columns: 1fr; }
  .value-rows { grid-template-columns: repeat(2, 1fr); }
  .value-rows article:nth-child(2n) { border-right: 0; }
  .value-rows article { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .value-rows article:last-child { border-bottom: 0; }
  .company-products { grid-template-columns: 1fr 1fr; }
  .company-products > div { grid-column: 1 / -1; }
  .company-position { grid-template-columns: 1fr 1fr; }
  .company-position-brand { grid-column: 1 / -1; }
  .company-position > div:nth-child(2) { border-right: 1px solid var(--line); }
  .company-position > div:nth-child(3) { border-right: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .legal-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 50px; }
}

@media (max-width: 680px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 21px; }
  .shell { width: calc(100% - 28px); }
  .section { padding: 68px 0; }
  .brand img { width: 154px; }
  .home-hero { padding-top: 54px; }
  .home-hero h1 { font-size: 36px; }
  .hero-lead, .page-hero .shell > p:not(.section-label), .product-hero .shell > p:not(.honesty-note) { font-size: 16px; }
  .home-hero .button-row .button { width: 100%; }
  .suite-stage { height: 280px; margin-top: 28px; }
  .suite-stage-top { align-items: flex-start; gap: 10px; }
  .suite-stage-top > p { display: none; }
  .suite-tabs { grid-template-columns: repeat(3, 1fr); }
  .suite-tabs button { min-height: 66px; grid-template-columns: 32px 1fr; gap: 7px; padding: 9px 8px; border-right: 1px solid var(--line); border-bottom: 0; }
  .suite-tabs button:last-child { border-right: 0; }
  .suite-tabs .app-dot { width: 32px; height: 32px; }
  .suite-tabs small, .suite-tabs em { display: none; }
  .suite-tabs strong { font-size: 11px; }
  .suite-panels > section { min-height: 158px; height: 158px; }
  .stage-copy { display: none; }
  .stage-image, .support-ui { height: 158px; max-height: 158px; margin: 0; padding: 10px 0 0 10px; }
  .stage-image img { min-height: 148px; object-fit: cover; object-position: top left; }
  .support-ui { padding: 0; }
  .support-ui-grid { grid-template-columns: 112px 1fr; }
  .support-ui-grid aside { padding-inline: 6px; }
  .ticket-list { padding: 14px; }
  .connection-map { min-height: 158px; height: 158px; }
  .suite-ledger { min-height: 158px; height: 158px; align-content: start; gap: 5px; overflow: hidden; padding: 8px; }
  .suite-ledger-head { display: none; }
  .suite-ledger > a { grid-template-columns: 28px minmax(0, 1fr) auto; gap: 8px; min-height: 42px; padding: 5px 7px; }
  .suite-ledger > a small { display: none; }
  .suite-ledger > a strong { font-size: 11px; }
  .ledger-mark { width: 28px; height: 28px; border-radius: 5px; font-size: 9px; }
  .suite-ledger .tag { padding: 3px 5px; font-size: 8px; }
  .suite-ledger-direction { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; min-height: 48px; padding: 6px 8px; }
  .suite-ledger-direction > span { display: none; }
  .suite-ledger-direction strong { font-size: 9px; }
  .connection-core { width: 110px; height: 110px; }
  .connection-node { width: 105px; }
  .node-one { left: 4%; }
  .node-two, .node-three { right: 4%; }
  .split-heading { gap: 25px; }
  .split-heading > p { font-size: 16px; }
  .product-showcase > .shell { gap: 42px; }
  .product-band-copy { padding: 28px 22px; }
  .product-band-copy > h3 { font-size: 26px; }
  .product-band-media { min-height: 340px; padding: 24px 0 24px 18px; }
  .media-tabs { overflow-x: auto; margin-right: 14px; }
  .media-tabs button { flex: 0 0 auto; }
  .product-band-media img { min-width: 480px; }
  .support-workspace { margin: 0 0 22px 18px; }
  .workspace-top { grid-template-columns: 95px 1fr 30px; }
  .workspace-body { min-height: 370px; grid-template-columns: 96px 1fr; }
  .workspace-body > aside { padding-inline: 5px; }
  .workspace-body > aside span { padding-inline: 5px; }
  .workspace-main { padding: 12px; }
  .workspace-layout { grid-template-columns: 1fr; }
  .request-detail { display: none; }
  .principle-lines, .model-grid, .outcome-lines, .process-steps, .value-rows { grid-template-columns: 1fr; }
  .principle-lines article, .model-grid article, .outcome-lines article, .process-steps article, .value-rows article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .principle-lines article, .value-rows article { border-bottom-color: rgba(255,255,255,0.17); }
  .principle-lines article:last-child, .model-grid article:last-child, .outcome-lines article:last-child, .process-steps article:last-child, .value-rows article:last-child { border-bottom: 0; }
  .cta-inner { grid-template-columns: 50px 1fr; }
  .cta-inner img { width: 48px; height: 48px; }
  .cta-inner h2 { font-size: 24px; }
  .cta-inner .button-row, .cta-inner > .button { grid-column: 1 / -1; }
  .cta-inner .button-row .button, .cta-inner > .button { width: 100%; }
  .footer-main { grid-template-columns: repeat(2, 1fr); padding-top: 50px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .breadcrumbs { margin-bottom: 38px; }
  .page-hero { padding-bottom: 70px; }
  .page-hero-products::after, .about-hero::after, .trust-hero::after, .contact-hero::after { display: none; }
  .directory-product { padding: 26px 20px; }
  .tick-grid { grid-template-columns: 1fr; }
  .directory-image { margin: 10px -21px -27px 0; }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 600px; }
  .faq-list summary { font-size: 15px; }
  .product-hero { padding-top: 28px; }
  .product-hero h1 { margin-top: 28px; }
  .hero-product-image { margin-top: 46px; }
  .feature-nav { overflow-x: auto; }
  .feature-nav button { flex: 0 0 auto; }
  .feature-view > div { padding: 26px 0 0 20px; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-list article { border-right: 0; min-height: auto; }
  .support-workspace-large { margin-top: 34px; }
  .support-workspace-large .workspace-body { grid-template-columns: 100px 1fr; }
  .support-workspace-large .workspace-main { padding: 14px; }
  .support-workspace-large .workspace-layout { grid-template-columns: 1fr; }
  .suite-portfolio { margin-top: 42px; }
  .portfolio-row { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 12px; padding: 15px; }
  .portfolio-row b { display: none; }
  .portfolio-direction { grid-template-columns: 1fr auto; gap: 12px; padding: 15px; }
  .portfolio-direction > span { grid-column: 1 / -1; }
  .journey-section li { grid-template-columns: 50px 1fr; }
  .about-mark { align-items: flex-start; }
  .about-mark img { width: 78px; }
  .about-mark span { font-size: 19px; }
  .company-position { grid-template-columns: 1fr; }
  .company-position-brand { grid-column: auto; }
  .company-position > div { min-height: 80px; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .company-position > div:last-child { border-bottom: 0; }
  .story-layout > div:last-child p { font-size: 16px; }
  .company-products { grid-template-columns: 1fr; }
  .company-products > div { grid-column: auto; }
  .contact-form-wrap { padding: 24px 18px; }
  .response-routes { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-layout > aside { position: static; }
  .not-found h1 { font-size: 38px; }
}

@media (max-width: 420px) {
  .home-hero h1 { font-size: 36px; }
  .suite-tabs em { display: none; }
  .connection-map { display: grid; min-height: auto; gap: 10px; padding: 20px; }
  .connection-map::before, .connection-map::after { display: none; }
  .connection-core, .connection-node { position: static; width: 100%; min-height: 76px; transform: none; }
  .connection-core { height: 100px; }
  .workspace-body { grid-template-columns: 82px 1fr; }
  .workspace-body > aside strong, .workspace-body > aside span b { display: none; }
  .workspace-body > aside span { font-size: 8px; }
  .product-hero-brand { align-items: flex-start; flex-direction: column; }
  .supportproof-wordmark { flex-wrap: wrap; }
  .company-product { grid-template-columns: 46px 1fr; }
  .company-product > span:last-child { display: none; }
  .contact-options > a { grid-template-columns: 42px 1fr; }
  .contact-options > a > span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .legal-layout > aside {
    display: none !important;
  }
  body {
    color: #000;
  }
  .section,
  .legal-hero {
    padding: 24px 0;
  }
  .legal-layout {
    display: block;
  }
}
