@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #2b261f;
  --soft-ink: #4a4036;
  --muted: #746b60;
  --canvas: #fbfaf6;
  --porcelain: #f7f6f0;
  --mist: #eee9df;
  --line: #d8d0c2;
  --teal-25: #f0fffb;
  --teal-50: #e2faf5;
  --teal-100: #c6f3ea;
  --teal-300: #66dccb;
  --teal-500: #20bfae;
  --teal-700: #127e73;
  --clay: #b86b55;
  --ochre: #b58a2a;
  --pass: #16a34a;
  --fail: #dc2626;
  --shadow: 0 24px 60px rgba(43, 38, 31, 0.1);
  --soft-shadow: 0 16px 40px rgba(43, 38, 31, 0.07);
  --content: min(1200px, calc(100vw - 48px));
  --wide: min(1360px, calc(100vw - 48px));
  --page-x: clamp(24px, 4vw, 56px);
  --rail-page: min(1440px, calc(100vw - var(--page-x)));
  --section-y: clamp(76px, 7.5vw, 112px);
  --section-y-tight: clamp(48px, 6vw, 76px);
  --section-y-standard: var(--section-y);
  --major-y: clamp(84px, 8vw, 128px);
  --card-pad: clamp(28px, 4vw, 48px);
  --gap: clamp(24px, 4vw, 56px);
  --stack-lg: 24px;
  --measure-copy-wide: 74ch;
  --radius-ui: 12px;
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--canvas);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


main {
  flex: 1 0 auto;
}

.site-header,
.site-footer {
  flex: 0 0 auto;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-logo,
.footer-logo {
  display: block;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("assets/logo.png") center / contain no-repeat;
  -webkit-mask: url("assets/logo.png") center / contain no-repeat;
}

.brand-logo {
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--ink);
}


.nav-toggle {
  display: none;
}


.hero-content.centered {
  justify-self: center;
  align-self: end;
  max-width: 900px;
  padding-bottom: clamp(48px, 8vw, 96px);
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 14em;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.6vw, 5rem);
  line-height: 1;
}


h2 {
  max-width: 18em;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.2vw, 3.55rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  line-height: 1.14;
}

p {
  color: var(--soft-ink);
  text-wrap: pretty;
}

.hero-content p {
  max-width: 56ch;
  margin-bottom: 30px;
  font-size: clamp(1.13rem, 1.45vw, 1.36rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--ink);
  color: var(--canvas);
}

.button-secondary {
  border: 1px solid rgba(18, 126, 115, 0.34);
  background: rgba(240, 255, 251, 0.72);
  color: var(--ink);
}


.section-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.lead {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.56;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading.wide {
  max-width: 1040px;
}

.problem-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(44px, 7vw, 108px);
}

.problem-folders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: clamp(30px, 4vw, 44px);
  padding-top: 12px;
}

.folder-tab {
  position: relative;
  isolation: isolate;
  min-height: 88px;
  padding: 30px 18px 18px;
  border: 1px solid #dccfbd;
  border-radius: var(--radius-ui);
  background: #faf8f2;
  color: #2b241e;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.88rem, 1.06vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(43, 38, 31, 0.06);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    min-height 180ms ease,
    box-shadow 180ms ease;
}

.folder-tab::before,
.folder-tab::after {
  position: absolute;
  content: "";
}

.folder-tab::before {
  top: -11px;
  left: 18px;
  width: 86px;
  height: 22px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: var(--radius-ui) var(--radius-ui) 0 0;
  background: #f3ebdd;
  color: #dccfbd;
}

.folder-tab::after {
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: inherit;
}

.folder-tab > span {
  position: relative;
  z-index: 1;
}

.folder-label {
  display: block;
}

.folder-copy {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--soft-ink);
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  opacity: 0;
  transition:
    max-height 180ms ease,
    margin-top 180ms ease,
    opacity 160ms ease;
}

.folder-tab.is-active,
.folder-tab[aria-selected="true"] {
  min-height: 148px;
  border-color: rgba(32, 191, 174, 0.58);
  background: var(--teal-25);
  box-shadow: 0 18px 34px rgba(43, 38, 31, 0.09);
}

.folder-tab.is-active::before,
.folder-tab[aria-selected="true"]::before {
  border-color: rgba(32, 191, 174, 0.58);
  border-top: 4px solid var(--teal-500);
  background: var(--teal-50);
}

.folder-tab.is-active .folder-copy,
.folder-tab[aria-selected="true"] .folder-copy {
  max-height: 6.5rem;
  margin-top: 14px;
  opacity: 1;
}

.folder-tab:focus-visible {
  outline: 3px solid rgba(51, 198, 166, 0.42);
  outline-offset: 4px;
}

.mirror-visual {
  position: relative;
  display: grid;
  min-height: clamp(470px, 42vw, 660px);
  place-items: center;
  margin: 0;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(216, 208, 194, 0.76);
  border-radius: var(--radius-ui);
  background:
    linear-gradient(145deg, rgba(250, 248, 242, 0.92), rgba(247, 246, 240, 0.74)),
    var(--porcelain);
}

.mirror-image-stack {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  aspect-ratio: 1;
}

.mirror-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mirror-image.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .folder-tab,
  .folder-copy,
  .mirror-image {
    transition: none;
  }
}

.expandable-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.expandable-tile {
  border: 1px solid rgba(216, 208, 194, 0.88);
  border-radius: 16px;
  background: rgba(251, 250, 246, 0.9);
  box-shadow: 0 12px 32px rgba(43, 38, 31, 0.06);
}

.expandable-tile.is-open {
  border-color: rgba(18, 126, 115, 0.38);
  background: #fffef9;
}

.expandable-tile button {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
}

.plus {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.plus::before,
.plus::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-700);
  content: "";
}

.plus::after {
  transform: rotate(90deg);
}

.is-open .plus::after {
  transform: rotate(0deg);
}

.tile-panel {
  padding: 0 20px 20px;
}

.tile-panel p {
  margin-bottom: 0;
  color: var(--soft-ink);
}

.contrast-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}


.panel-image {
  position: relative;
  display: grid;
  height: clamp(220px, 20vw, 260px);
  margin: 0 0 28px;
  overflow: hidden;
  place-items: center;
  background: transparent;
}

.panel-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.function-section {
  width: min(1320px, calc(100vw - 48px));
}

.function-tabs {
  padding: 16px;
  border: 1px solid rgba(216, 208, 194, 0.72);
  border-radius: 30px;
  background: linear-gradient(180deg, #fffef9, var(--porcelain));
  box-shadow: var(--soft-shadow);
}

.function-tablist {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.function-tablist button {
  min-height: 108px;
  padding: 14px 12px;
  border: 1px solid rgba(216, 208, 194, 0.86);
  border-radius: 16px;
  background: rgba(251, 250, 246, 0.8);
  color: var(--soft-ink);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}

.function-tablist button[aria-selected="true"] {
  border-color: rgba(18, 126, 115, 0.45);
  background: var(--teal-100);
  color: var(--ink);
  box-shadow: inset 0 -5px 0 rgba(32, 191, 174, 0.42);
}

.function-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  min-height: 430px;
  margin-top: 16px;
  padding: clamp(24px, 4vw, 52px);
  border-radius: 22px;
  background: var(--ink);
  color: var(--canvas);
}

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

.function-panel h3,
.function-panel p,
.function-panel strong {
  color: var(--canvas);
}

.function-panel h3 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.04;
}

.benefit-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 24px;
}

.benefit-pair div {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 16px;
  background: rgba(251, 250, 246, 0.08);
}

.benefit-pair strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.benefit-pair p {
  margin-bottom: 0;
}


.proof-band-heading {
  max-width: 940px;
  margin: 0 auto 44px;
  text-align: center;
}

.proof-band h2,
.proof-band h3,
.proof-band p {
  color: var(--canvas);
}

.proof-band-heading p {
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.proof-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


.proof-tiles h3,
.proof-tiles p {
  color: var(--ink);
}


.cta-section {
  padding-bottom: clamp(70px, 8vw, 120px);
}


.cta-card > p {
  max-width: min(100%, 1080px);
  font-size: 1.16rem;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}


.alternating-section {
  display: grid;
  gap: 30px;
}

.alternating-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 500px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(216, 208, 194, 0.72);
  border-radius: 0;
  background: rgba(247, 246, 240, 0.72);
}

.alternating-row.reverse .row-copy {
  order: 2;
}

.kicker {
  margin-bottom: 16px;
  color: var(--teal-700);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.row-copy p:not(.kicker) {
  max-width: 68ch;
  font-size: 1.05rem;
}

.alternating-row .row-copy h2 {
  max-width: 14em;
  font-size: clamp(1.95rem, 2.25vw, 2.75rem);
}

.visual-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 194, 0.9);
  border-radius: 22px;
  background: #fffef9;
  box-shadow: var(--soft-shadow);
}

.artefact-visual,
.report-visual,
.roadmap-visual,
.expert-visual,
.rescan-visual,
.trusted-visual {
  padding: 34px;
}

.artefact-visual::before,
.artefact-visual::after {
  position: absolute;
  content: "";
}

.artefact-visual::before {
  inset: 86px 52px auto;
  height: 170px;
  border: 1px solid rgba(43, 38, 31, 0.2);
  border-radius: 16px;
  background: repeating-linear-gradient(180deg, transparent 0 22px, rgba(216, 208, 194, 0.88) 23px);
}

.artefact-visual::after {
  right: 72px;
  bottom: 72px;
  width: 92px;
  height: 34px;
  border-radius: 999px;
  background: var(--teal-500);
}

.visual-card > span,
.roadmap-visual > span {
  position: relative;
  z-index: 1;
  color: var(--teal-700);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  min-height: 146px;
  padding: 22px;
  border-radius: 18px;
  background: var(--porcelain);
}

.metric span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric strong {
  color: var(--pass);
  font-size: 2.3rem;
}

.metric.maturity strong {
  color: var(--teal-700);
}

.finding-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.finding-list span {
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.roadmap-visual ol {
  display: grid;
  gap: 14px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-visual li {
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32, 191, 174, 0.72), rgba(216, 208, 194, 0.38));
}

.expert-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-25), #fffef9);
}

.expert-dot {
  width: 86px;
  height: 86px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--canvas);
}

.expert-lines {
  position: absolute;
  bottom: 62px;
  left: 80px;
  right: 80px;
  display: grid;
  gap: 12px;
}

.expert-lines span {
  height: 16px;
  border-radius: 999px;
  background: rgba(18, 126, 115, 0.18);
}

.rescan-visual,
.trusted-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.rescan-visual span,
.trusted-visual span {
  display: grid;
  min-height: 160px;
  place-items: center;
  border: 1px solid rgba(18, 126, 115, 0.26);
  border-radius: 18px;
  background: var(--teal-25);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.partner-hero {
  overflow: hidden;
  background: #fdfbf4;
}

.partner-backdrop {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: #fdfbf4;
  box-shadow: none;
}

.partner-backdrop img {
  display: block;
  width: 100%;
  max-height: min(560px, 58vh);
  object-fit: contain;
  object-position: center;
}

@media (min-width: 861px) {
  .partner-hero-inner {
    position: relative;
    min-height: clamp(650px, 80vh, 840px);
  }

  .partner-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

  .partner-hero .hero-content::before {
    position: absolute;
    z-index: -1;
    inset: -84px -260px -84px -48px;
    content: "";
    background: linear-gradient(
      90deg,
      #fdfbf4 0%,
      rgba(253, 251, 244, 0.99) 68%,
      rgba(253, 251, 244, 0.9) 84%,
      rgba(253, 251, 244, 0) 100%
    );
    pointer-events: none;
  }

  .partner-backdrop {
    position: absolute;
    top: 50%;
    right: max(-28px, -2vw);
    z-index: 1;
    width: min(980px, 70vw);
    min-height: 0;
    overflow: visible;
    background: transparent;
    transform: translateY(-50%);
  }

  .partner-backdrop img {
    max-height: min(640px, 68vh);
  }
}

.partner-benefits .split-layout,
.expert-proof .split-layout {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
}

.partner-leverage-visual,
.proof-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(216, 208, 194, 0.78);
  border-radius: 28px;
  background:
    radial-gradient(circle at 34% 32%, rgba(32, 191, 174, 0.24), transparent 13rem),
    var(--porcelain);
  box-shadow: var(--soft-shadow);
}

.capabilities-section {
  width: min(1380px, calc(100vw - 48px));
}

.capabilities-section .section-heading {
  max-width: 1120px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article {
  min-height: 278px;
  padding: 24px;
  border: 1px solid rgba(216, 208, 194, 0.8);
  border-radius: 20px;
  background: #fffef9;
  box-shadow: 0 10px 28px rgba(43, 38, 31, 0.05);
}

.capability-grid p {
  font-size: 1rem;
  line-height: 1.52;
}

.capability-grid article:first-child p {
  max-width: 28ch;
}

.cap-icon {
  display: block;
  width: 104px;
  height: 104px;
  margin-bottom: 28px;
}

.cap-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.proof-visual {
  display: grid;
  min-height: 570px;
  place-items: center;
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  background: #f8f6f2;
}

.proof-visual img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
}

.stacked-proof {
  display: grid;
  gap: 12px;
}

.stacked-proof button {
  min-height: 94px;
  padding: 20px 22px;
  border: 1px solid rgba(216, 208, 194, 0.86);
  border-radius: 16px;
  background: #fffef9;
  color: var(--soft-ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
  text-align: left;
  text-wrap: pretty;
}

.stacked-proof button.is-active,
.stacked-proof button:hover {
  border-color: rgba(18, 126, 115, 0.42);
  background: var(--teal-50);
  color: var(--ink);
}
@media (max-width: 1120px) {
  .function-tablist,
  .proof-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .function-tablist button {
    min-height: 82px;
  }

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

}

@media (max-width: 860px) {
  :root {
    --content: min(100vw - 40px, 760px);
    --wide: min(100vw - 32px, 760px);
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(216, 208, 194, 0.9);
    border-radius: 999px;
    background: rgba(251, 250, 246, 0.9);
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
  }

  .hero-content,
  .hero-content.centered {
    padding: 28px;
    text-align: left;
  }

  h1,
  .partner-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.02;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.08;
  }


  .section {
    padding: 58px 0;
  }

  .section-grid,
  .split-layout,
  .alternating-row,
  .alternating-row.reverse,
  .function-panel {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .alternating-row.reverse .row-copy {
    order: 0;
  }

  .mirror-visual,
  .partner-leverage-visual,
  .proof-visual {
    min-height: 440px;
  }

  .problem-folders {
    gap: 14px;
  }

  .folder-tab {
    min-height: 78px;
    padding: 27px 14px 15px;
  }

  .folder-tab::before {
    left: 14px;
    width: 74px;
  }

  .mirror-image-stack {
    width: min(100%, 390px);
  }

  .contrast-panels,
  .benefit-pair,
  .route-cards,
  .capability-grid,
  .proof-tiles {
    grid-template-columns: 1fr;
  }

  .proof-tiles article,
  .capability-grid article {
    min-height: auto;
  }

  .function-tablist {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .function-tablist button {
    min-width: 160px;
    scroll-snap-align: start;
  }

  .function-panel {
    min-height: auto;
  }

  .function-panel h3 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .proof-band {
    padding: 54px 20px;
  }

  .partner-hero {
    min-height: 620px;
  }

  .visual-card {
    min-height: 300px;
  }

  .rescan-visual,
  .trusted-visual {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 430px) {
  :root {
    --content: calc(100vw - 32px);
    --wide: calc(100vw - 24px);
  }

  .hero-content,
  .hero-content.centered,
  .alternating-row,
  .cta-card,
  .function-panel {
    padding: 22px;
  }


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

  .button {
    justify-content: center;
  }

  .proof-band {
    width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .section-heading,
  .alternating-row,
  .function-panel,
  .proof-tiles article,
  .capability-grid article {
    animation: rise 0.7s ease both;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
body {
display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
  margin: 0;
  min-width: 320px;

  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
background: var(--canvas);
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  width: min(1440px, calc(100vw - var(--page-x)));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 208, 194, 0.62);
  backdrop-filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav a {
font-weight: 600;
  text-decoration: none;
min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--soft-ink);
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--teal-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(650px, 80vh, 840px);
  margin: 0;
  align-items: center;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(216, 208, 194, 0.72);
  border-radius: 0;
  background: var(--canvas);
}

.hero-home {
  width: 100%;
}

.image-hero {
  grid-template-columns: 1fr;
}

.hero-inner {
  display: grid;
  width: min(1380px, calc(100vw - var(--page-x)));
  grid-template-columns: minmax(610px, 1fr) minmax(390px, 0.92fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  padding: var(--major-y) 0;
}

.hero-content {
position: relative;
  z-index: 1;
  align-self: center;
width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-content h1 span {
  display: block;
  white-space: nowrap;
}

.hero-content p,
.hero-content .button-row {
  max-width: 590px;
}

.hero-content h1 {
  max-width: 12.4em;
  font-size: clamp(3.6rem, 4.55vw, 5.2rem);
  line-height: 0.98;
}

.hero-figure {
  display: grid;
  width: min(100%, 620px);
  margin: 0;
  justify-self: end;
  place-items: center;
}

.hero-figure img {
  display: block;
  width: 100%;
  max-height: min(620px, 64vh);
  object-fit: contain;
  object-position: center bottom;
}

.section {
margin: 0 auto;
width: min(1240px, calc(100vw - var(--page-x)));
  padding: var(--section-y) 0;
}

.section-heading .lead {
  max-width: 62ch;
}

.problem-section {
  width: min(1440px, calc(100vw - var(--page-x)));
}

.partner-hero .hero-content {
  width: auto;
}
.partner-hero h1 {
  max-width: 13.4em;
  font-size: clamp(2.65rem, 3.65vw, 3.75rem);
  line-height: 1.04;
}

.problem-section .section-copy h2,
.partner-benefits h2,
.expert-proof h2 {
  max-width: 100%;
}

.problem-section .section-copy h2 {
  font-size: clamp(2rem, 2.75vw, 3rem);
}

.contrast-panel,
.visual-card,
.partner-leverage-visual,
.proof-visual,
.cta-card {
  border-radius: 0;
  box-shadow: none;
}

.expandable-tile,
.route-card,
.capability-grid article,
.stacked-proof button {
  border-radius: 6px;
  box-shadow: none;
}

.contrast-panel {
min-height: 390px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(216, 208, 194, 0.82);
  border-radius: 22px;
background: #fffef9;
}

.contrast-panel.featured {
border-color: rgba(18, 126, 115, 0.4);
background: var(--teal-25);
}

.cycle-band {
  width: 100%;
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--canvas) 0%, var(--mist) 100%);
}

.cycle-inner {
  width: var(--rail-page);
  margin: 0 auto;
}

.cycle-heading {
  width: min(980px, 100%);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.cycle-stage-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  margin: clamp(48px, 6vw, 72px) 0 0;
  padding: 0;
  list-style: none;
}

.cycle-stage-cards li {
  min-height: 360px;
  padding: clamp(30px, 3.4vw, 44px) clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(18, 126, 115, 0.34);
  background: rgba(251, 250, 246, 0.8);
  text-align: center;
}

.stage-number {
  display: block;
  margin-bottom: 38px;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
}

.stage-number.green {
  color: var(--teal-700);
}

.stage-number.orange {
  color: var(--ochre);
}

.cycle-stage-cards h3 {
  margin-bottom: 24px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cycle-stage-cards p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.52;
}

.function-section {
  width: var(--rail-page);
}

.function-section .section-heading .lead {
  max-width: var(--measure-copy-wide);
}

.function-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid rgba(216, 208, 194, 0.95);
  border-radius: 18px;
  background: var(--porcelain);
  box-shadow: none;
}

.function-tablist {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
  padding: 0;
  border: 0;
}

.function-tablist button {
  display: grid;
  min-height: 235px;
  grid-template-rows: 2.45em 1fr;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding: 22px 14px 16px;
  border-color: rgba(216, 208, 194, 0.78);
  border-radius: 10px;
  background: var(--porcelain);
  color: rgba(43, 38, 31, 0.55);
  font-size: clamp(1rem, 1.15vw, 1.24rem);
  text-align: center;
}

.function-tablist button span {
  display: grid;
  min-height: 2.45em;
  align-items: start;
  justify-items: center;
  max-width: 9.5em;
  line-height: 1.12;
  color: inherit;
}

.function-tablist button[aria-selected="true"] {
  border-color: rgba(43, 38, 31, 0.32);
  background: var(--porcelain);
  color: var(--ink);
  box-shadow: none;
}

.function-sketch {
  position: relative;
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
  opacity: 0.84;
}

.function-tablist button[aria-selected="true"] .function-sketch {
  opacity: 1;
}

.function-sketch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.function-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 88px);
  align-content: center;
  min-height: 0;
  margin-top: 0;
  padding: clamp(34px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.function-panel h3,
.function-panel p,
.function-panel strong {
  color: var(--ink);
}

.function-panel h3 {
  max-width: 620px;
  font-size: clamp(2.15rem, 3vw, 3.55rem);
  font-weight: 500;
  line-height: 1.03;
}

.function-copy {
  align-self: start;
}

.function-cta {
  margin-top: 36px;
  border: 1px solid rgba(43, 38, 31, 0.28);
  background: transparent;
  color: var(--ink);
}

.benefit-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--stack-lg) * 2);
  margin: 34px 0 0;
}

.benefit-pair div {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.benefit-pair div + div {
  padding-top: 0;
}

.benefit-pair strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 500;
}

.benefit-pair p {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
}

.proof-band {
  width: 100%;
  padding: var(--section-y) 0;
  border-radius: 0;
  background: var(--teal-700);
}

.proof-band-inner {
  width: min(1380px, calc(100vw - var(--page-x)));
  margin: 0 auto;
}

.proof-tiles article {
border: 1px solid rgba(255, 254, 249, 0.5);

  background: #fffef9;
min-height: 270px;
  padding: 24px;
  border-radius: 8px;
}

.proof-tiles p {
margin-bottom: 0;
font-size: 1rem;
  line-height: 1.52;
}

.cta-card {
padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(216, 208, 194, 0.72);
  border-radius: 28px;
background: var(--porcelain);
}

.site-footer {
  width: 100%;
  padding: 58px 0 34px;
  background: #171a1e;
  color: rgba(251, 250, 246, 0.72);
}

.footer-inner {
  display: grid;
  width: min(1320px, calc(100vw - var(--page-x)));
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(48px, 14vw, 260px);
  margin: 0 auto;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--canvas);
}

.footer-brand p,
.footer-bottom p {
  color: rgba(251, 250, 246, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: rgba(251, 250, 246, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: rgba(251, 250, 246, 0.7);
  text-decoration: none;
}

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

.footer-bottom {
  display: block;
  width: min(1320px, calc(100vw - var(--page-x)));
  margin: 72px auto 0;
}

.footer-bottom p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.68rem, 1vw, 0.88rem);
  letter-spacing: 0.01em;
  line-height: 1.35;
  white-space: nowrap;
}
@media (max-width: 1320px) and (min-width: 861px) {
  .cycle-stage-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cycle-stage-cards li {
    min-height: 260px;
    text-align: left;
  }

  .stage-number {
    margin-bottom: 24px;
  }

  .cycle-stage-cards p {
    max-width: 58ch;
  }
}

@media (min-width: 960px) {
  .cta-card > p {
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(520px, 1.02fr) minmax(320px, 0.98fr);
    gap: 40px;
  }

  .hero-content h1 {
    max-width: 12.4em;
    font-size: clamp(2.8rem, 4.45vw, 3.6rem);
  }

  .partner-hero h1 {
    font-size: clamp(2.45rem, 3.8vw, 3.25rem);
  }

  .function-tabs {
    grid-template-columns: 1fr;
  }

  .function-tablist {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .function-tablist button {
    min-height: 218px;
    padding: 20px 12px;
    font-size: 0.96rem;
  }

  .function-sketch {
    height: 138px;
  }
}

@media (max-width: 860px) {
  .function-section {
    width: min(760px, calc(100vw - 40px));
  }

  .site-header {
    width: min(100vw - 32px, 760px);
    min-height: 68px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    padding: 12px;
  }

  .hero {
    width: 100%;
    min-height: auto;
    border-radius: 0;
  }

  .hero-inner {
    width: min(100vw - 40px, 760px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 50px;
  }

  .hero-content {
    width: auto;
    padding: 0;
  }

  .image-hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .hero-figure {
    order: -1;
    width: 100%;
    justify-self: center;
  }

  .partner-hero .hero-figure,
  .partner-backdrop {
    order: -1;
  }

  .partner-backdrop {
    min-height: 300px;
  }

  .partner-backdrop img {
    max-height: 300px;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 8.3vw, 3.15rem);
  }

  .partner-hero h1 {
    font-size: clamp(2.2rem, 7.4vw, 2.9rem);
  }

  .hero-content p,
  .lead {
    font-size: 1rem;
    line-height: 1.46;
  }

  .hero-figure img {
    max-height: 340px;
  }

  .proof-band-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100vw - 40px, 760px);
  }

  .cycle-stage-cards,
  .function-panel,
  .partner-benefits .split-layout,
  .expert-proof .split-layout,
  .proof-split,
  .footer-inner,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .partner-benefits .split-layout,
  .expert-proof .split-layout {
    gap: 30px;
  }

  .partner-benefits .split-layout > div,
  .expert-proof .split-layout > div {
    min-width: 0;
  }

  .partner-leverage-visual,
  .proof-visual {
    width: 100%;
    min-height: 390px;
  }

  .proof-visual img {
    max-height: 390px;
  }

  .cap-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
  }

  .stacked-proof {
    width: 100%;
  }

  .cycle-stage-cards li {
    min-height: auto;
    padding: 28px 24px;
  }

  .cycle-stage-cards p,
  .proof-tiles p,
  .capability-grid p,
  .stacked-proof button {
    font-size: 1rem;
  }

  .function-tablist {
    display: grid;
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 16px;
    scroll-snap-type: x proximity;
  }

  .function-tablist button {
    min-width: 0;
    min-height: 158px;
    padding: 16px 10px;
    font-size: 0.82rem;
  }

  .function-sketch {
    height: 82px;
  }

  .function-panel h3 {
    font-size: clamp(1.9rem, 7.6vw, 2.65rem);
  }

  .function-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .partner-benefits h2,
  .expert-proof h2,
  .capabilities-section h2,
  .proof-band-heading h2 {
    font-size: clamp(1.62rem, 6.3vw, 2.08rem);
  }

  .expandable-tile button {
    gap: 10px;
    font-size: 0.78rem;
  }

  .expandable-tile button span:first-child {
    flex: 1;
  }

  .footer-bottom {
    gap: 24px;
    margin-top: 48px;
  }
}

@media (max-width: 430px) {
  .site-header,
  .hero-content,
  .proof-band-inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100vw - 32px);
  }

  .image-hero {
    padding-top: 0;
  }

  .function-tabs {
    padding: 12px;
  }

  .function-tablist {
    gap: 8px;
  }

  .function-tablist button {
    min-height: 124px;
    padding: 12px 6px;
    font-size: 0.72rem;
  }

  .function-sketch {
    height: 60px;
  }

  .function-panel {
    padding: 32px 18px;
  }

  .hero-inner {
    width: calc(100vw - 32px);
  }

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

  .mirror-visual {
    min-height: 360px;
    padding: 14px;
  }

  .mirror-image-stack {
    width: min(100%, 330px);
  }

  .footer-bottom p {
    font-size: 0.56rem;
    letter-spacing: 0;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8.1vw, 2.24rem);
  }

  .partner-hero h1 {
    font-size: clamp(1.92rem, 7.7vw, 2.12rem);
  }

  h2,
  .cycle-heading h2,
  .partner-benefits h2,
  .expert-proof h2,
  .capabilities-section h2,
  .proof-band-heading h2 {
    font-size: clamp(1.42rem, 5.9vw, 1.82rem);
  }

  .hero-content p,
  .lead,
  .cycle-stage-cards p,
  .proof-tiles p,
  .capability-grid p,
  .proof-visual p {
    font-size: 1rem;
  }

  .cycle-heading,
  .proof-band-heading,
  .section-heading {
    width: 100%;
    max-width: 100%;
  }
}
.button,
.nav-toggle,
.site-nav,
.site-nav a,
.expandable-tile,
.contrast-panel,
.cycle-stage-cards li,
.function-tabs,
.function-tablist button,
.function-panel,
.visual-card,
.metric,
.rescan-visual span,
.trusted-visual span,
.partner-backdrop,
.partner-leverage-visual,
.proof-visual,
.capability-grid article,
.stacked-proof button,
.proof-tiles article,
.cta-card,
.route-card {
  border-radius: var(--radius-ui);
}

.route-card {
border: 1px solid rgba(18, 126, 115, 0.28);
  border-radius: 18px;

  text-decoration: none;
display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0;
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  background: #fffef9;
}

.route-card-image {
  display: grid;
  height: clamp(180px, 18vw, 250px);
  margin: 0;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(216, 208, 194, 0.72);
  background: linear-gradient(180deg, #fffef9, var(--porcelain));
}

.route-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.route-card span,
.route-card small {
  padding-right: 24px;
  padding-left: 24px;
}

.route-card span {
display: block;
  margin-bottom: 14px;
  font-size: 1.24rem;
  font-weight: 700;
margin: 22px 0 8px;
}

.route-card small {
color: var(--muted);
padding-bottom: 24px;
  font-size: 0.96rem;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .route-card {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  .route-card span,
  .route-card small {
    padding-right: 18px;
    padding-left: 18px;
  }
}
.partner-leverage-visual {
  display: block;
  min-height: clamp(560px, 45vw, 700px);
  background: #fffef9;
}

.leverage-visual-frame {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #fffef9;
}

.leverage-visual-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 160ms ease;
}

.leverage-visual-image.is-active {
  opacity: 1;
}

.partner-benefits .expandable-tile {
  display: block;
  grid-template-columns: none;
  min-height: auto;
}

.partner-benefits .expandable-tile button,
.partner-benefits .tile-panel {
  grid-column: auto;
}

.partner-benefits .expandable-tile button {
  padding: 18px 20px;
}

.partner-benefits .tile-panel {
  padding: 0 20px 20px;
}

@media (max-width: 860px) {
  .partner-leverage-visual {
    min-height: min(640px, 112vw);
  }
}

@media (max-width: 430px) {
  .partner-benefits .expandable-tile button {
    padding: 15px 12px;
  }

  .partner-benefits .tile-panel {
    padding: 0 12px 16px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .leverage-visual-image {
    transition: none;
  }
}


.contact-hero .hero-content,
.apply-hero .hero-content,
.legal-hero .hero-content {
  justify-self: center;
  align-self: center;
  text-align: center;
}

.contact-hero .hero-content h1,
.apply-hero .hero-content h1,
.legal-hero .hero-content h1,
.contact-hero .hero-content p,
.apply-hero .hero-content p,
.legal-hero .hero-content p {
  margin-right: auto;
  margin-left: auto;
}

.contact-hero .hero-content h1,
.apply-hero .hero-content h1,
.legal-hero .hero-content h1,
.contact-hero .hero-content p,
.apply-hero .hero-content p,
.legal-hero .hero-content p,
.about-hero .hero-content h1,
.about-hero .hero-content p,
.about-hero .hero-content li {
  color: var(--ink);
  opacity: 1;
}


.about-hero .hero-content.centered {
  justify-self: start;
  align-self: center;
  text-align: left;
}

.founders-grid article {
  min-height: 230px;
}

.contact-routing-cards .contrast-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
}


.apply-submit-section a {
  color: var(--teal-700);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

@media (max-width: 1120px) {
  .contrast-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .brand span:last-child {
    display: inline;
  }

  .about-hero .hero-content,
  .about-hero .hero-content.centered {
    width: min(100%, 760px);
    text-align: left;
  }

  .contact-routing-cards .contrast-panel,
  .process-grid article,
  .founders-grid article {
    min-height: auto;
  }


  .about-hero .hero-content,
  .contact-hero .hero-content,
  .apply-hero .hero-content,
  .legal-hero .hero-content {
    padding: 48px 0;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    display: inline;
    font-size: 0.92rem;
  }
}
.about-hero,
.contact-hero,
.apply-hero,
.legal-hero {
  min-height: clamp(340px, 46vh, 520px);
  border-bottom: 1px solid rgba(216, 208, 194, 0.72);
  background:
    linear-gradient(135deg, rgba(226, 250, 245, 0.55), rgba(251, 250, 246, 0.98) 54%),
    var(--canvas);
}

.about-hero {
  display: grid;
  min-height: clamp(520px, 68vh, 760px);
  align-items: center;
  border-bottom: 0;
  background: var(--canvas);
}

.about-hero-inner {
  display: grid;
  width: min(1320px, calc(100vw - var(--page-x)));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  justify-self: center;
  padding: clamp(56px, 8vw, 112px) 0;
}

.about-hero .hero-content,
.contact-hero .hero-content,
.apply-hero .hero-content,
.legal-hero .hero-content {
width: min(1240px, calc(100vw - var(--page-x)));
  max-width: 1240px;
  margin: 0 auto;
padding: clamp(56px, 8vw, 108px) 0;
}

.about-hero .hero-content {
text-align: left;
max-width: 760px;
  padding: 0;
}

.about-hero-image {
  display: grid;
  min-height: clamp(320px, 34vw, 520px);
  margin: 0;
  overflow: visible;
  place-items: center;
  background: var(--canvas);
}

.about-hero-image img {
  display: block;
  width: 100%;
  max-height: clamp(320px, 36vw, 560px);
  opacity: 0.82;
  filter: saturate(0.58) contrast(0.96) brightness(1.02);
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: center;
}

.about-hero h1,
.contact-hero h1,
.apply-hero h1,
.legal-hero h1 {
  font-size: clamp(2.7rem, 4vw, 4.25rem);
  line-height: 1.04;
}

.about-combination-list {
  max-width: 58ch;
  margin: 0 0 28px;
  padding-left: 1.1rem;
  color: var(--soft-ink);
}

.about-combination-list li {
  margin: 8px 0;
  color: var(--soft-ink);
}

.contact-routing-cards article,
.process-grid article,
.about-founders-section .capability-grid article {
  min-height: auto;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-founders-section p,
.about-location-section p,
.contact-routing-cards p,
.process-grid p,
.legal-list p {
  max-width: 68ch;
}


.about-founders-section .capability-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}


.about-founders-section h3 {
  max-width: 14em;
}

.about-location-section {
  border: 0;
  border-top: 0;
  background: transparent;
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 0;
}

.contact-routing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 88px);
}


.apply-qualification-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(36px, 7vw, 108px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.apply-qualification-copy {
  max-width: 820px;
}

.apply-qualification-visual {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  background: var(--canvas);
}

.apply-qualification-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--canvas) 0%, rgba(251, 250, 246, 0) 20%),
    linear-gradient(180deg, var(--canvas) 0%, rgba(251, 250, 246, 0) 16%, rgba(251, 250, 246, 0) 82%, var(--canvas) 100%);
  content: "";
  pointer-events: none;
}

.apply-qualification-visual img {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.7) contrast(0.96) brightness(1.03);
  mix-blend-mode: multiply;
  object-fit: cover;
  object-position: right center;
}

.process-grid {
  gap: clamp(28px, 5vw, 72px);
}


.process-grid .stage-number {
  grid-row: span 2;
  margin: 0;
  color: var(--teal-700);
  font-size: 1rem;
  line-height: 1.2;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.apply-submit-section {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding-right: 0;
  padding-left: 0;
}

.legal-document {
  width: min(900px, calc(100vw - var(--page-x)));
}

.legal-list {
  padding: 0;
  border: 0;
  background: transparent;
}


.legal-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-list h3 {
  max-width: none;
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.legal-list p {
  margin-bottom: 0;
}

.legal-source-copy > p,
.legal-source-copy > ul,
.legal-source-copy > ol {
  max-width: 72ch;
  margin-bottom: 18px;
}

.legal-source-copy > h2 {
  max-width: 28em;
  margin: 42px 0 14px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.legal-source-copy ul,
.legal-source-copy ol {
  padding-left: 1.4rem;
  color: var(--soft-ink);
}

.legal-source-copy li {
  margin: 10px 0;
  padding-left: 0.25rem;
  line-height: 1.65;
}

.legal-source-copy li > ul,
.legal-source-copy li > ol {
  margin-top: 10px;
}

.legal-source-copy a {
  color: var(--teal-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 1120px) {
  .contact-routing-cards {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 860px) {
  .about-hero,
  .contact-hero,
  .apply-hero,
  .legal-hero {
    min-height: 280px;
  }

  .about-hero .hero-content,
  .about-hero .hero-content.centered,
  .contact-hero .hero-content,
  .contact-hero .hero-content.centered,
  .apply-hero .hero-content,
  .apply-hero .hero-content.centered,
  .legal-hero .hero-content,
  .legal-hero .hero-content.centered {
    width: var(--content);
    max-width: var(--content);
    margin-right: auto;
    margin-left: auto;
    padding: 48px 0;
  }

  .about-hero h1,
  .contact-hero h1,
  .apply-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.15rem, 8vw, 2.75rem);
  }

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

  .apply-qualification-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .apply-qualification-visual {
    width: min(100%, 360px);
    justify-self: start;
  }

  .process-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 16px;
  }
}
.about-summary-section {
  padding-top: clamp(68px, 7vw, 108px);
}

.about-summary-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.about-summary-grid h2 {
  position: sticky;
  top: 96px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.about-summary-grid p {
  max-width: 66ch;
  font-size: clamp(1.05rem, 1.2vw, 1.16rem);
}

.about-summary-grid .about-combination-list {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.about-summary-grid .about-combination-list li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.about-summary-grid .about-combination-list li::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 14px;
  background: var(--teal-500);
  content: "";
}

.about-founders-section {
  padding-top: clamp(54px, 6vw, 88px);
}

.about-founders-section h2 {
margin-bottom: clamp(28px, 4vw, 44px);
border-top: 0;
}

.about-founders-section .capability-grid article {
display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 5vw, 72px);
padding-top: 0;
  border-top: 0;
}

.about-founders-section .capability-grid article + article {
  padding-top: clamp(28px, 4vw, 44px);
}

.about-founders-section .capability-grid article:first-child p,
.about-founders-section .capability-grid p {
  max-width: 72ch;
}

.about-location-image {
  display: grid;
  width: min(1320px, 100%);
  margin: clamp(16px, 2.4vw, 28px) auto -1px;
  overflow: visible;
  place-items: center;
  background: var(--canvas);
}

.about-location-image img {
  display: block;
  width: 100%;
  max-height: clamp(260px, 34vw, 520px);
  opacity: 0.76;
  filter: saturate(0.48) contrast(0.94) brightness(1.04);
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: center;
}

.contact-routing-section .section-heading {
  margin-bottom: clamp(22px, 4vw, 42px);
}

.contact-routing-cards article {
display: flex;

  flex-direction: column;
  align-items: flex-start;
min-height: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(18, 126, 115, 0.24);
  border-radius: var(--radius-ui);
  background: #fffef9;
}

.contact-route-image {
  display: grid;
  width: 100%;
  height: clamp(240px, 22vw, 310px);
  margin: 0 0 clamp(28px, 3vw, 42px);
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(216, 208, 194, 0.72);
  background: linear-gradient(180deg, #fffef9, var(--porcelain));
}

.contact-route-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.contact-routing-cards h3,
.contact-routing-cards p {
  padding-right: clamp(24px, 3vw, 34px);
  padding-left: clamp(24px, 3vw, 34px);
}

.contact-routing-cards h3 {
  margin-bottom: 14px;
}

.contact-routing-cards p {
  margin-bottom: 18px;
}

.contact-routing-cards .button {
margin-top: auto;
width: auto;
  max-width: calc(100% - 48px);
  margin: auto clamp(24px, 3vw, 34px) clamp(24px, 3vw, 34px);
  background: var(--teal-700);
  color: var(--canvas);
}

.contact-routing-cards .button:hover {
  background: var(--teal-500);
  color: var(--ink);
}

.apply-qualification-section,
.apply-submit-section {
  border: 0;
}

.process-grid article {
min-height: auto;
display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0 22px;
border-top: 0;
}

.legal-list article {
padding: 30px 0;
border-top: 0;
}

.legal-list article + article {
  padding-top: 10px;
}

@media (max-width: 1120px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    order: -1;
    min-height: 320px;
  }

  .about-summary-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-summary-grid h2 {
    position: static;
  }

  .about-summary-grid .about-combination-list {
    grid-template-columns: 1fr;
  }

  .about-founders-section .capability-grid article {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  .about-summary-grid .about-combination-list li {
    min-height: auto;
  }

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

  .about-hero-inner {
    width: var(--content);
    gap: 24px;
    padding: 42px 0 56px;
  }

  .about-hero-image {
    min-height: 230px;
  }

  .about-hero-image img {
    max-height: 280px;
  }

  .contact-route-image {
    height: 220px;
  }
}
/* Contact hero uses the same layered illustration treatment as Partner. */
.contact-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 62vh, 720px);
  overflow: hidden;
  background: #fdfbf4;
}

.contact-hero-inner {
  position: relative;
  display: grid;
  width: min(1320px, calc(100vw - var(--page-x)));
  min-height: inherit;
  align-items: center;
  justify-self: center;
  padding: clamp(60px, 8vw, 108px) 0;
}

.contact-hero .hero-content.centered {
  position: relative;
  z-index: 2;
  justify-self: start;
  width: auto;
  max-width: 650px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-hero .hero-content.centered::before {
  position: absolute;
  z-index: -1;
  inset: -56px -96px -56px -48px;
  content: "";
  background: #fdfbf4;
  pointer-events: none;
}

.contact-hero .hero-content h1,
.contact-hero .hero-content p {
  margin-right: 0;
  margin-left: 0;
}

.contact-backdrop {
  position: absolute;
  top: 54%;
  right: clamp(32px, 6vw, 112px);
  z-index: 1;
  width: min(820px, 54vw);
  margin: 0;
  transform: translateY(-50%);
}

.contact-backdrop img {
  display: block;
  width: 100%;
  max-height: clamp(320px, 36vw, 500px);
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 860px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-inner {
    width: var(--content);
    min-height: auto;
    gap: 24px;
    padding: 42px 0 56px;
  }

  .contact-hero .hero-content.centered {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .contact-hero .hero-content.centered::before {
    display: none;
  }

  .contact-backdrop {
    position: relative;
    top: auto;
    right: auto;
    order: -1;
    width: 100%;
    transform: none;
  }

  .contact-backdrop img {
    max-height: 250px;
  }
}
/* Version 2 404 migration unit */
.error-page {
  display: grid;
  min-height: calc(100svh - 72px);
  place-items: center;
  overflow: hidden;
  padding: var(--section-y-tight) 0 var(--section-y-standard);
  background: var(--canvas);
}

.error-page-inner {
  position: relative;
  display: grid;
  width: var(--rail-page);
  min-height: clamp(540px, 66svh, 720px);
  isolation: isolate;
  place-items: center;
}

.error-page-inner::before {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: min(1680px, 100vw);
  aspect-ratio: 16 / 9;
  content: "";
  background: var(--canvas);
  mix-blend-mode: multiply;
  opacity: 0.92;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.error-page-video,
.error-page-poster {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(1680px, 100vw);
  max-width: none;
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: multiply;
  opacity: 0.86;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.error-page-poster {
  opacity: 0;
  transition: opacity 180ms ease;
}

.error-page.is-video-complete .error-page-video {
  opacity: 0;
}

.error-page.is-video-complete .error-page-poster {
  opacity: 0.86;
}

.error-page-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(680px, 92%);
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
}

.error-page.is-video-intro:not(.is-copy-visible) .error-page-copy {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.99);
  animation: error-copy-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) 4.15s forwards;
}

.error-page.is-copy-visible .error-page-copy {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.error-page-copy::before {
  position: absolute;
  z-index: -1;
  inset: -16px -28px -20px;
  content: "";
  background: radial-gradient(
    ellipse at center,
    rgba(251, 250, 246, 0.96) 0%,
    rgba(251, 250, 246, 0.84) 58%,
    rgba(251, 250, 246, 0) 76%
  );
  pointer-events: none;
}

@keyframes error-copy-reveal {
  to {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

.error-page-copy .kicker {
  margin-bottom: 16px;
}

.error-page-copy h1 {
  max-width: 11em;
  font-size: clamp(2.65rem, 3.65vw, 3.75rem);
  line-height: 1.04;
}

.error-page-copy p:not(.kicker) {
  max-width: 34em;
  color: var(--soft-ink);
  font-size: clamp(1.13rem, 1.45vw, 1.36rem);
  line-height: 1.5;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .error-page {
    min-height: auto;
    padding-top: 42px;
  }

  .error-page-inner {
    width: min(760px, calc(100vw - 40px));
    min-height: clamp(520px, 72svh, 680px);
  }

  .error-page-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .error-page-video,
  .error-page-poster {
    width: min(980px, 174vw);
    opacity: 0.72;
  }

  .error-page.is-video-complete .error-page-poster {
    opacity: 0.72;
  }

  .error-page-copy {
    width: min(560px, 100%);
    padding-right: 0;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-page.is-video-intro:not(.is-copy-visible) .error-page-copy {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    animation: none;
  }

  .error-page.is-copy-visible .error-page-copy {
    transition: none;
  }
}

/* Factory navigation: adapted from the approved Version 2 two-stage menu. */
.nav-item {
  position: relative;
}

.nav-item--has-menu {
  display: inline-flex;
  align-items: center;
}

.site-nav .nav-link--factory {
  display: inline-flex;
  align-items: center;
}

.ui-chevron {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: currentColor;
  opacity: 0.9;
  pointer-events: none;
}

.ui-chevron::before,
.ui-chevron::after {
  position: absolute;
  top: 6px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.ui-chevron::before {
  left: 1px;
  transform: rotate(45deg);
}

.ui-chevron::after {
  right: 1px;
  transform: rotate(-45deg);
}

.ui-chevron--down {
  margin-left: 8px;
  transform: translateY(2px);
}

.ui-chevron--right {
  margin-left: auto;
  transform: rotate(-90deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 30px);
  left: -124px;
  z-index: 60;
  display: grid;
  width: min(440px, calc(100vw - 48px));
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  padding: 10px;
  border: 1px solid rgba(216, 208, 194, 0.9);
  border-radius: 20px;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transform-origin: top left;
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    visibility 140ms ease;
  visibility: hidden;
}

@media (max-width: 1120px) and (min-width: 861px) {
  .nav-menu {
    right: 0;
    left: auto;
  }
}

.nav-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 30px;
  content: "";
}

.nav-menu::after {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.nav-item--has-menu:hover .nav-menu,
.nav-item--has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-menu__primary,
.nav-menu__functions {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.site-nav .nav-menu__item {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 8px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.site-nav .nav-menu__item:hover,
.site-nav .nav-menu__item:focus-visible,
.site-nav .nav-menu__item[aria-current="page"],
.nav-menu__item--branch[aria-expanded="true"] {
  background: var(--mist);
  color: var(--ink);
  outline: none;
  text-decoration: none;
}

.nav-menu__functions {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-4px);
  transition:
    opacity 160ms ease,
    transform 180ms ease,
    visibility 0s linear 240ms;
  visibility: hidden;
}

.nav-menu.is-functions-open .nav-menu__functions,
.nav-menu:has(.nav-menu__item--branch:hover) .nav-menu__functions,
.nav-menu:has(.nav-menu__functions:hover) .nav-menu__functions,
.nav-menu:has(.nav-menu__functions:focus-within) .nav-menu__functions {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
  visibility: visible;
}

.nav-menu__item span {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100svh - 92px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(216, 208, 194, 0.9);
    border-radius: 14px;
    background: rgba(251, 250, 246, 0.96);
  }

  .nav-item--has-menu {
    display: block;
  }

  .site-nav .nav-link--factory {
    min-height: 46px;
    padding: 12px;
  }

  .nav-menu {
    position: static;
    width: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    margin-top: 4px;
    padding: 4px 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu::before,
  .nav-menu::after {
    content: none;
  }

  .nav-menu__functions {
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu.is-functions-open .nav-menu__functions {
    display: grid;
  }

  .site-nav .nav-menu__item {
    min-height: 44px;
    padding: 8px 12px;
  }

  .nav-menu__item span {
    white-space: normal;
  }
}
