:root {
  color-scheme: dark;
  --ink: #f6f3ef;
  --muted: #a7a9b3;
  --soft: #dedfe8;
  --line: rgba(255, 255, 255, 0.1);
  --panel: rgba(27, 28, 33, 0.92);
  --panel-strong: #202128;
  --page: #060d17;
  --section-a: #0a1119;
  --section-b: #0d141d;
  --section-c: #080e15;
  --blue: #70a8ff;
  --brand-blue: #1f6fff;
  --brand-blue-strong: #185ee8;
  --teal: #58d5c6;
  --mint: #58cf7b;
  --amber: #ffcb62;
  --coral: #ff9a7a;
  --violet: #9d8cff;
  --green: #58cf7b;
  --rose: #ff78a5;
  --gold: #ffd166;
  --shadow: 0 28px 76px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(46, 93, 118, 0.76) 0, rgba(13, 24, 37, 0.96) 28rem, #060d17 64rem),
    linear-gradient(90deg, rgba(112, 168, 255, 0.08), rgba(88, 207, 123, 0.045), rgba(255, 154, 122, 0.055)),
    var(--page);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

@view-transition {
  navigation: auto;
}

main {
  view-transition-name: marketing-page;
}

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
  }

  ::view-transition-old(marketing-page) {
    animation: marketing-page-out 140ms ease-out both;
  }

  ::view-transition-new(marketing-page) {
    animation: marketing-page-in 180ms ease-out both;
  }

}

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

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

  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-old(marketing-page),
  ::view-transition-new(marketing-page) {
    animation: none;
  }
}

@keyframes marketing-page-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes marketing-page-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

p,
h1,
h2,
h3,
dl,
dd,
ul,
ol {
  margin: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(82, 168, 255, 0.9);
  outline-offset: 4px;
}

.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;
}

.bounded {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.bounded.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  min-height: 64px;
  margin: 12px auto 0;
  padding: 9px 10px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(44, 44, 46, 0.86), rgba(30, 31, 36, 0.8)),
    rgba(19, 21, 27, 0.64);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.brand-link,
.brand-copy,
.site-nav,
.footer-links,
.footer-contact,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 11px;
  min-width: 0;
}

.brand-logo-shell {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.brand-copy {
  gap: 2px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-word,
.brand-iq {
  color: rgba(246, 243, 239, 0.96);
  letter-spacing: 0;
}

.brand-iq {
  color: rgba(255, 255, 255, 0.99);
}

.site-nav {
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.site-nav a,
.header-action,
.button,
.text-link {
  min-height: 40px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.91rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
}

.site-nav a[aria-current="page"] {
  border: 1px solid rgba(118, 147, 255, 0.34);
  background: rgba(79, 124, 255, 0.17);
  color: #e7ecff;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid transparent;
  text-align: center;
}

.header-action {
  color: rgba(255, 255, 255, 0.96);
  background: var(--brand-blue);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 24px rgba(31, 111, 255, 0.28);
}

.button.primary {
  color: #ffffff;
  border-color: transparent;
  background: var(--brand-blue);
  box-shadow: 0 14px 28px rgba(31, 111, 255, 0.26);
}

.header-action-icon {
  display: inline-flex;
  color: currentColor;
  font-size: 1.03rem;
  opacity: 0.9;
}

.header-action-label-short {
  display: none;
}

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

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  list-style: none;
}

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

.mobile-nav-menu[open] .mobile-nav-toggle,
.mobile-nav-toggle:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.11);
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 4px;
  width: min(230px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(44, 44, 46, 0.9), rgba(25, 26, 31, 0.86)),
    rgba(11, 15, 22, 0.76);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
}

.mobile-nav-panel a[aria-current="page"] {
  border: 1px solid rgba(118, 147, 255, 0.34);
  background: rgba(79, 124, 255, 0.17);
  color: #e7ecff;
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(169, 150, 255, 0.55);
  background: rgba(169, 150, 255, 0.12);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.header-action:hover {
  background: var(--brand-blue-strong);
}

.button.primary:hover {
  background: var(--brand-blue-strong);
}

.button.secondary:hover,
.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.13);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(620px, 76vh);
  margin-top: -84px;
  padding: 138px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(6, 13, 23, 0.98), rgba(6, 13, 23, 0.78) 48%, rgba(6, 13, 23, 0.48)),
    linear-gradient(180deg, rgba(6, 13, 23, 0.16), #060d17 96%),
    linear-gradient(90deg, rgba(112, 168, 255, 0.16), rgba(88, 207, 123, 0.06) 46%, rgba(255, 154, 122, 0.08));
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-top: 14px;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: 3.15rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy,
.page-intro p,
.section-heading p,
.split > div > p,
.policy-strip > div > p,
.footer-brand p,
.contact-band p,
.product-preview-band p,
.product-proof-grid > div > p,
.trust-summary p,
.limits-band p,
.notice-box p,
.prose p {
  color: var(--muted);
}

.hero-copy {
  max-width: 660px;
  margin-top: 24px;
  font-size: 1.28rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.product-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(112, 168, 255, 0.08), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow);
}

.product-shot img {
  width: 100%;
  height: auto;
}

.product-shot figcaption {
  padding: 13px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(20, 21, 27, 0.92);
  font-size: 0.88rem;
  line-height: 1.45;
}

.proof-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent, var(--mint));
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.proof-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--accent, var(--mint));
  border-radius: var(--radius);
  background: var(--accent-soft, rgba(156, 230, 189, 0.14));
  font-size: 1rem;
}

.proof-list b {
  color: var(--soft);
}

.proof-list p {
  margin-top: 5px;
  color: var(--muted);
}

.proof-list.compact {
  margin-top: 24px;
}

.proof-list.compact li {
  min-height: auto;
  padding: 14px;
}

.workflow-list article,
.process-steps article,
.capability-list article,
.trust-grid article,
.notice-box,
.contact-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.marketing-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.marketing-icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-chip,
.step-mark,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--accent, var(--mint));
  background: var(--accent-soft, rgba(156, 230, 189, 0.14));
}

.icon-chip {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.step-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  font-size: 1.22rem;
}

.mini-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.accent-card {
  position: relative;
  overflow: hidden;
}

.accent-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent, var(--mint));
}

.accent-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--accent, var(--mint)), transparent 70%);
  opacity: 0.9;
}

.accent-blue {
  --accent: var(--blue);
  --accent-soft: rgba(82, 168, 255, 0.15);
}

.accent-teal {
  --accent: var(--teal);
  --accent-soft: rgba(68, 215, 196, 0.14);
}

.accent-amber {
  --accent: var(--amber);
  --accent-soft: rgba(240, 189, 93, 0.15);
}

.accent-coral {
  --accent: var(--coral);
  --accent-soft: rgba(240, 143, 114, 0.15);
}

.accent-violet {
  --accent: var(--violet);
  --accent-soft: rgba(169, 150, 255, 0.15);
}

.accent-green {
  --accent: var(--green);
  --accent-soft: rgba(86, 214, 129, 0.14);
}

.substance-band,
.product-preview-band,
.trust-summary,
.process-band,
.trust-process-band,
.union-leadership-band,
.rep-band,
.union-control-band,
.questions-band,
.capability-band,
.trust-grid-band,
.limits-band,
.contact-grid-band,
.expectation-band,
.security-band,
.support-band,
.copy-band,
.contact-band {
  padding: 86px 0;
}

.substance-band,
.process-band,
.trust-process-band,
.union-leadership-band,
.trust-grid-band,
.contact-grid-band,
.security-band,
.support-band {
  background:
    linear-gradient(90deg, rgba(112, 168, 255, 0.055), transparent 34%),
    var(--section-a);
}

.product-preview-band,
.rep-band,
.capability-band,
.limits-band,
.copy-band {
  background:
    linear-gradient(120deg, rgba(88, 207, 123, 0.04), transparent 40%),
    var(--section-b);
}

.trust-summary,
.union-control-band,
.questions-band,
.expectation-band,
.contact-band {
  background:
    linear-gradient(110deg, rgba(255, 203, 98, 0.045), transparent 36%),
    var(--section-c);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.workflow-list,
.leadership-grid,
.capability-list,
.trust-grid,
.contact-grid,
.process-timeline,
.process-steps {
  display: grid;
  gap: 16px;
}

.workflow-list article,
.leadership-grid article,
.capability-list article,
.trust-grid article,
.contact-grid article,
.process-timeline li,
.process-steps article {
  min-height: 164px;
  padding: 22px;
}

.workflow-list p,
.leadership-grid p,
.capability-list p,
.trust-grid p,
.contact-grid p,
.process-timeline p,
.process-steps p,
.check-list {
  margin-top: 10px;
  color: var(--muted);
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
}

.product-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 48px;
  align-items: center;
}

.product-proof-grid.reverse {
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.92fr);
}

.three-up {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.three-up article {
  min-height: 210px;
  padding: 24px;
}

.policy-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: start;
}

.policy-statements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-statements li {
  position: relative;
  padding-top: 26px;
}

.policy-statements li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(100%, 116px);
  height: 2px;
  border-radius: 999px;
  background: var(--accent, var(--mint));
}

.policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--accent, var(--mint));
  border-radius: var(--radius);
  background: var(--accent-soft, rgba(156, 230, 189, 0.14));
  font-size: 1.08rem;
}

.policy-statements b {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.policy-statements p {
  margin-top: 8px;
  color: var(--soft);
  line-height: 1.55;
}

.page-intro {
  padding: 112px 0 64px;
  background:
    linear-gradient(135deg, rgba(112, 168, 255, 0.12), transparent 38%),
    linear-gradient(225deg, rgba(255, 154, 122, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(6, 13, 23, 0.2), var(--section-a)),
    var(--page);
}

.page-intro p {
  margin-top: 22px;
  font-size: 1.18rem;
}

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

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.process-timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.process-timeline li {
  min-height: 310px;
}

.process-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent, var(--mint));
  font-size: 0.78rem;
  font-weight: 900;
}

.knowledge-layer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(240, 143, 114, 0.12), rgba(82, 168, 255, 0.06)),
    rgba(8, 20, 31, 0.86);
  box-shadow: var(--shadow);
}

.knowledge-layer .icon-chip {
  margin-bottom: 0;
}

.knowledge-layer p {
  margin-top: 10px;
  color: var(--muted);
}

.question-kit {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 203, 98, 0.11), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow);
}

.question-kit ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.question-kit li {
  position: relative;
  padding-left: 22px;
}

.question-kit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, var(--amber));
}

.question-kit .button {
  margin-top: 22px;
}

.trust-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid article a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent, var(--mint));
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-grid article h2 {
  margin-top: 0;
  font-size: 1.75rem;
  line-height: 1.05;
}

.notice-box {
  padding: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 46px;
  padding: 12px 12px 12px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.check-list li:nth-child(2)::before {
  background: var(--blue);
}

.check-list li:nth-child(3)::before {
  background: var(--amber);
}

.check-list li:nth-child(4)::before {
  background: var(--coral);
}

.boundary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    var(--panel);
}

.boundary-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  color: var(--blue);
  border: 1px solid rgba(112, 168, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(112, 168, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.boundary-list b {
  color: var(--soft);
}

.boundary-list p {
  margin-top: 5px;
  color: var(--muted);
}

.prose {
  max-width: 840px;
}

.prose h2 {
  margin-top: 32px;
  font-size: 1.7rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-top: 12px;
}

.prose a {
  color: var(--mint);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-band .split {
  grid-template-columns: 1fr auto;
}

.contact-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-band-rule {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr;
  gap: 10px;
  width: min(1120px, calc(100% - 40px));
  margin: 42px auto 0;
}

.contact-band-rule span {
  height: 4px;
  border-radius: 999px;
}

.contact-band-rule span:nth-child(1) {
  background: var(--blue);
}

.contact-band-rule span:nth-child(2) {
  background: var(--teal);
}

.contact-band-rule span:nth-child(3) {
  background: var(--amber);
}

.contact-band-rule span:nth-child(4) {
  background: var(--coral);
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(112, 168, 255, 0.055), rgba(88, 207, 123, 0.035), rgba(255, 154, 122, 0.045)),
    #050b12;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(220px, auto);
  gap: 28px;
  align-items: start;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 42px 0;
}

.footer-logo {
  width: fit-content;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 16px;
}

.footer-links {
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-contact a {
  color: var(--soft);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--mint);
}

.footer-contact {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .site-nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .split,
  .split.reverse,
  .preview-grid,
  .product-proof-grid,
  .product-proof-grid.reverse,
  .three-up,
  .policy-strip,
  .policy-statements,
  .leadership-grid,
  .process-steps,
  .process-timeline,
  .trust-grid,
  .contact-grid,
  .contact-band .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .knowledge-layer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .bounded,
  .bounded.narrow,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 8px;
    min-height: 60px;
    padding: 8px;
  }

  .brand-copy {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    margin-top: -80px;
    padding: 136px 0 44px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .proof-list li,
  .workflow-list article,
  .leadership-grid article,
  .capability-list article,
  .trust-grid article,
  .contact-grid article,
  .process-timeline li,
  .process-steps article,
  .notice-box,
  .question-kit {
    min-height: auto;
    padding: 18px;
  }

  .substance-band,
  .product-preview-band,
  .trust-summary,
  .process-band,
  .trust-process-band,
  .union-leadership-band,
  .rep-band,
  .union-control-band,
  .questions-band,
  .capability-band,
  .trust-grid-band,
  .limits-band,
  .contact-grid-band,
  .expectation-band,
  .security-band,
  .support-band,
  .copy-band,
  .contact-band {
    padding: 60px 0;
  }

  .page-intro {
    padding: 108px 0 54px;
  }

  .contact-band-rule {
    width: min(100% - 28px, 1120px);
  }
}

@media (max-width: 420px) {
  .header-action-label-full {
    display: none;
  }

  .header-action-label-short {
    display: inline;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    display: none;
  }
}
