@font-face {
  font-family: "Courier Prime";
  src: url("fonts/courier-prime-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #231f20;
  --paper: #f4f2ec;
  --white: #ffffff;
  --teal: #156082;
  --teal-deep: #0d3e49;
  --teal-darkest: #092f38;
  --mist: #dcebed;
  --gold: #e6c14d;
  --line: rgba(35, 31, 32, 0.24);
  --line-light: rgba(255, 255, 255, 0.28);
  --sans: "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Courier Prime", "Courier New", monospace;
  --edge: clamp(1.25rem, 4.2vw, 4.75rem);
  --section: clamp(4rem, 7vw, 6.75rem);
  --max: 90rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.075rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  border: 2px solid var(--ink);
  font-weight: 750;
  transform: translateY(-180%);
}

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

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

.shell {
  width: min(calc(100% - (2 * var(--edge))), var(--max));
  margin-inline: auto;
}

.mono,
.eyebrow,
.section-label,
.breadcrumb,
.card-label,
.page-code,
.fact-label {
  font-family: var(--mono);
  letter-spacing: 0.035em;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(244, 242, 236, 0.96);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  flex: 0 0 auto;
  width: clamp(10rem, 15vw, 12.8rem);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.15rem);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--teal);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  font-weight: 750;
}

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

.mobile-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 1rem var(--edge) 1.4rem;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.mobile-panel a {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  border-bottom: 1px solid var(--ink);
}

.hero-grid {
  min-height: min(46rem, calc(100svh - 7.6rem));
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(25rem, 0.87fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) var(--edge) clamp(3.75rem, 7vw, 6rem);
}

.eyebrow,
.section-label,
.breadcrumb,
.card-label,
.page-code,
.fact-label {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.eyebrow::before {
  width: 2.75rem;
  height: 2px;
  background: var(--teal);
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(3.75rem, 6.3vw, 7.2rem);
  font-weight: 800;
}

.hero h1 .join {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero h1 .join::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.03em;
  left: -0.03em;
  height: 0.18em;
  background: var(--gold);
  content: "";
}

.hero-intro {
  max-width: 39rem;
  margin: 0 0 2rem;
  font-size: clamp(1.16rem, 1.55vw, 1.48rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 2px solid currentColor;
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
}

.hero-system {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.25rem, 4vw, 4rem);
  background: var(--teal-deep);
  color: var(--white);
}

.hero-system::after {
  position: absolute;
  right: -5.5rem;
  bottom: -4.5rem;
  width: 22rem;
  height: 22rem;
  background: url("brand/novantis-duck.svg") center / contain no-repeat;
  content: "";
  filter: invert(1);
  opacity: 0.055;
}

.system-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.system-heading span:last-child {
  color: var(--gold);
}

.sightline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: clamp(2.5rem, 6vh, 5rem) 0;
}

.sightline::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: 2px;
  background: var(--line-light);
  content: "";
}

.sight-step {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 0.72rem 0;
}

.sight-marker {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--teal-deep);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.sight-step strong {
  display: block;
  margin-bottom: 0.08rem;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.18;
}

.sight-step small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

.system-note {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin: 0;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.45;
}

.proof-strip {
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 7.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--ink);
}

.proof-item:first-child {
  border-left: 1px solid var(--ink);
}

.proof-item span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.proof-item strong {
  font-size: 1.02rem;
  line-height: 1.3;
}

.section {
  padding-block: var(--section);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 6.5rem);
}

.section-label {
  padding-top: 0.45rem;
  color: var(--teal);
}

.section-title h2,
.page-hero h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  font-weight: 790;
}

.section-title h2 {
  max-width: 12ch;
}

.section-title p {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
}

.offer-list {
  border-top: 1px solid var(--ink);
}

.offer-row {
  display: grid;
  grid-template-columns: 4rem minmax(14rem, 0.95fr) minmax(17rem, 1.05fr) auto;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.offer-row:hover,
.offer-row:focus-visible {
  color: var(--teal);
  padding-inline: 1rem;
}

.offer-number {
  font-family: var(--mono);
  font-size: 0.85rem;
}

.offer-row h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.05;
}

.offer-row p {
  margin: 0;
  font-size: 1.03rem;
}

.offer-arrow {
  font-size: 1.8rem;
  line-height: 1;
}

.dark-section {
  background: var(--teal-darkest);
  color: var(--white);
}

.dark-section .section-label {
  color: var(--gold);
}

.dark-section .section-title p {
  color: rgba(255, 255, 255, 0.74);
}

.home-evidence .section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.proof-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-theme-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.7vw, 2.5rem);
  border-right: 1px solid var(--line-light);
}

.proof-theme-card:first-child {
  border-left: 1px solid var(--line-light);
}

.proof-theme-card span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.proof-theme-card h3 {
  max-width: 16ch;
  margin: auto 0 1rem;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  line-height: 1.04;
}

.proof-theme-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.5;
}

.section-action {
  margin: 2rem 0 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.method-step {
  min-height: 15.5rem;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.25rem;
  border-right: 1px solid var(--line-light);
}

.method-step:first-child {
  border-left: 1px solid var(--line-light);
}

.method-step span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.83rem;
}

.method-step h3 {
  margin: 4.5rem 0 0.7rem;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.48;
}

.method-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.method-footer p {
  max-width: 48rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.experience-card {
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border: 1px solid var(--ink);
  background: var(--white);
}

.experience-card:nth-child(1) {
  grid-column: span 7;
  background: var(--teal);
  color: var(--white);
}

.experience-card:nth-child(2) {
  grid-column: span 5;
  background: var(--gold);
}

.experience-card:nth-child(3) {
  grid-column: span 5;
  background: var(--paper);
}

.experience-card:nth-child(4) {
  grid-column: span 7;
  background: var(--ink);
  color: var(--white);
}

.experience-card .card-label {
  max-width: 28rem;
  opacity: 0.86;
}

.experience-card h3 {
  max-width: 17ch;
  margin: 4rem 0 1rem;
  font-size: clamp(1.75rem, 3.1vw, 3.25rem);
}

.experience-card p {
  max-width: 42rem;
  margin: 0;
  font-size: 0.98rem;
}

.evidence-note {
  max-width: 50rem;
  margin: 1.5rem 0 0;
  font-family: var(--mono);
  font-size: 0.86rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.engagement-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--ink);
}

.engagement-card:first-child {
  border-left: 1px solid var(--ink);
}

.engagement-card:nth-child(2) {
  background: var(--mist);
}

.engagement-card h3 {
  margin: auto 0 1rem;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.engagement-card p {
  margin: 0 0 1.5rem;
}

.engagement-card strong {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: uppercase;
}

.role-section {
  background: var(--mist);
}

.role-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.role-copy h2 {
  max-width: 13ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.role-copy > p:not(.section-label) {
  max-width: 40rem;
}

.role-note {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ink);
  font-weight: 650;
}

.role-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.role-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ink);
}

.role-list span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.role-list strong {
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.35;
}

.partner-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
  border: 1px solid var(--ink);
  background: var(--white);
}

.partner-copy,
.partner-modes {
  padding: clamp(2rem, 4vw, 4.2rem);
}

.partner-copy {
  border-right: 1px solid var(--ink);
}

.partner-copy h2 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
}

.partner-copy p {
  max-width: 38rem;
  margin: 0;
}

.partner-mode {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.partner-mode:last-child {
  border-bottom: 0;
}

.partner-mode span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.partner-mode strong,
.partner-mode small {
  display: block;
}

.partner-mode strong {
  margin-bottom: 0.2rem;
  font-size: 1.08rem;
}

.partner-mode small {
  color: rgba(35, 31, 32, 0.7);
  font-size: 0.91rem;
  line-height: 1.45;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.founder-visual {
  position: relative;
  max-width: 28rem;
  padding: 2.5rem 2.5rem 0;
  background: var(--mist);
  border: 1px solid var(--ink);
}

.founder-visual::before {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 4.6rem;
  height: 4.6rem;
  background: var(--gold);
  border: 1px solid var(--ink);
  content: "";
}

.founder-visual img {
  width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.founder-caption {
  margin-inline: -2.5rem;
  padding: 1.1rem 1.3rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.84rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.founder-copy h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.founder-lead {
  max-width: 44rem;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.48;
}

.founder-copy p:not(.founder-lead) {
  max-width: 44rem;
}

.cta-section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  background: var(--gold);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.cta-grid h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.8rem, 6.2vw, 6.4rem);
}

.site-footer {
  padding-block: 3rem;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

.footer-logo {
  width: min(15rem, 60vw);
  padding: 0.75rem;
  background: var(--paper);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  gap: 0.45rem 2.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding-block: clamp(3.75rem, 6.5vw, 6.5rem);
  border-bottom: 1px solid var(--ink);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
  color: var(--teal);
}

.breadcrumb a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
}

.page-intro {
  margin: 0;
  font-size: clamp(1.14rem, 1.65vw, 1.45rem);
  line-height: 1.5;
}

.page-accent-teal {
  background: var(--teal-deep);
  color: var(--white);
}

.page-accent-teal .breadcrumb,
.page-accent-teal .page-code {
  color: var(--gold);
}

.page-accent-gold {
  background: var(--gold);
}

.page-code {
  display: block;
  margin-bottom: 1rem;
  color: var(--teal);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(13rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
}

.content-rail {
  align-self: start;
  position: sticky;
  top: 7.5rem;
}

.content-rail p {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.83rem;
  text-transform: uppercase;
}

.content-rail a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.content-main {
  min-width: 0;
}

.content-main > section {
  padding-bottom: clamp(4rem, 8vw, 7rem);
  scroll-margin-top: 8rem;
}

.content-main > section:last-child {
  padding-bottom: 0;
}

.content-main h2 {
  max-width: 16ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.content-main h3 {
  margin: 2.4rem 0 0.8rem;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 1.12;
}

.content-main p,
.content-main ul,
.content-main ol {
  max-width: 49rem;
}

.content-main .lead {
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
  line-height: 1.5;
}

.plain-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.plain-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--line);
}

.plain-list li::before {
  position: absolute;
  top: 1.28rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--gold);
  border: 1px solid var(--ink);
  content: "";
}

.dark-section .plain-list {
  border-top-color: var(--line-light);
}

.dark-section .plain-list li,
.dark-section .content-rail a {
  border-bottom-color: var(--line-light);
}

.dark-section .plain-list li::before {
  border-color: var(--white);
}

.service-note {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.74);
}

.service-end {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
}

.service-end > p {
  max-width: 48rem;
  margin: 0;
}

.service-end > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.output-grid,
.insight-grid,
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.output-card,
.insight-card,
.fact-card {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--ink);
}

.output-card h3,
.insight-card h3,
.fact-card h3 {
  margin: 2.8rem 0 0.7rem;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
}

.output-card p,
.insight-card p,
.fact-card p {
  margin: 0;
  font-size: 0.97rem;
}

.dark-section .fact-grid-dark .fact-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line-light);
  color: var(--white);
}

.dark-section .fact-grid-dark .fact-card h3 {
  color: var(--white);
}

.dark-section .fact-grid-dark .fact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.dark-section .fact-grid-dark .fact-label {
  color: var(--gold);
}

.callout {
  margin: 2.4rem 0;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--mist);
  border-left: 0.55rem solid var(--teal);
}

.callout p {
  margin: 0;
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  font-weight: 650;
  line-height: 1.48;
}

.experience-intro {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.experience-intro .section-head {
  margin-bottom: 0;
}

.evidence-theme {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  border-top: 1px solid var(--ink);
}

.evidence-theme-head {
  display: grid;
  grid-template-columns: minmax(13rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.evidence-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  line-height: 0.9;
}

.evidence-theme-head .section-label {
  max-width: 16rem;
  margin: 0;
  padding: 0;
}

.evidence-theme-head h2 {
  max-width: 19ch;
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 4.6vw, 5.2rem);
  line-height: 0.98;
}

.evidence-theme-head > div:last-child > p {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
}

.dark-section .evidence-number {
  color: var(--gold);
}

.dark-section .evidence-theme-head > div:last-child > p {
  color: rgba(255, 255, 255, 0.74);
}

.evidence-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, auto);
  border: 1px solid var(--ink);
}

.dark-section .evidence-pair {
  border-color: var(--line-light);
}

.evidence-story {
  display: grid;
  grid-row: 1 / span 6;
  grid-template-rows: subgrid;
  padding: clamp(1.7rem, 3.4vw, 3.25rem);
  background: var(--white);
  color: var(--ink);
  border-top: 0.48rem solid var(--gold);
}

.evidence-story:first-child {
  grid-column: 1;
}

.evidence-story + .evidence-story {
  grid-column: 2;
  border-left: 1px solid var(--ink);
}

.evidence-story-founder {
  border-top-color: var(--teal);
}

.evidence-source {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.evidence-story h3 {
  max-width: 17ch;
  margin: 2.3rem 0 1rem;
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  line-height: 1.02;
}

.evidence-context {
  margin: 0 0 2rem;
  color: rgba(35, 31, 32, 0.72);
  font-size: 1rem;
}

.evidence-details {
  display: grid;
  grid-row: 4 / span 3;
  grid-template-rows: subgrid;
  margin: 0;
}

.evidence-details div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.evidence-details dt {
  margin-bottom: 0.3rem;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.evidence-details dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.territory-section {
  border-top: 1px solid var(--ink);
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.territory-card {
  padding: clamp(1.7rem, 3.2vw, 3rem);
  border-bottom: 1px solid var(--ink);
}

.territory-card:nth-child(odd) {
  border-right: 1px solid var(--ink);
}

.territory-card > span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.territory-card h3 {
  max-width: 16ch;
  margin: 2rem 0 1.4rem;
  font-size: clamp(1.65rem, 2.7vw, 2.8rem);
  line-height: 1.08;
}

.territory-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.territory-card li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.35rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.5;
}

.territory-card li::before {
  position: absolute;
  top: 1.18rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--gold);
  border: 1px solid var(--ink);
  content: "";
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.contact-primary a.contact-email {
  display: inline-block;
  margin: 1.5rem 0 2.2rem;
  color: var(--teal);
  font-size: clamp(1.45rem, 3.2vw, 3rem);
  font-weight: 760;
  line-height: 1.2;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.contact-prompts {
  border-top: 1px solid var(--ink);
}

.contact-prompt {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-prompt span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.contact-prompt p {
  margin: 0;
}

.legal-copy {
  max-width: 54rem;
}

.legal-copy h2 {
  margin-top: 3.5rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.legal-copy h3 {
  margin-top: 2.3rem;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-copy p,
.legal-copy li {
  font-size: 1rem;
}


@media (max-width: 1120px) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a:not(.nav-cta) {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

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

  .method-step:nth-child(3) {
    border-right: 1px solid var(--line-light);
  }

  .method-step:nth-child(n + 4) {
    border-top: 1px solid var(--line-light);
  }

}

@media (max-width: 820px) {
  body {
    font-size: 1rem;
  }

  .header-inner {
    min-height: 4.65rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .section-head,
  .content-grid,
  .partner-band,
  .role-band,
  .founder-grid,
  .contact-grid,
  .cta-grid,
  .footer-top,
  .footer-bottom,
  .evidence-theme-head,
  .evidence-pair,
  .proof-theme-grid,
  .service-end,
  .logo-board,
  .type-board,
  .territory-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    min-height: 39rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14.5vw, 5.4rem);
  }

  .hero-system {
    min-height: 42rem;
  }

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

  .proof-item:nth-child(odd) {
    border-left: 1px solid var(--ink);
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--ink);
  }

  .section-head {
    gap: 1.5rem;
  }

  .offer-row {
    grid-template-columns: 2.5rem 1fr auto;
  }

  .offer-row p {
    grid-column: 2 / -1;
  }

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

  .method-step,
  .method-step:first-child,
  .method-step:nth-child(3) {
    min-height: 12rem;
    border: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .method-step:first-child {
    border-top: 1px solid var(--line-light);
  }

  .method-step h3 {
    margin-top: 2.25rem;
  }

  .method-footer {
    grid-template-columns: 1fr;
  }

  .experience-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .evidence-story + .evidence-story {
    border-left: 0;
  }

  .evidence-pair {
    grid-template-rows: none;
  }

  .evidence-story,
  .evidence-story:first-child,
  .evidence-story + .evidence-story {
    display: block;
    grid-column: auto;
    grid-row: auto;
  }

  .evidence-details {
    display: block;
  }

  .proof-theme-card,
  .proof-theme-card:first-child {
    min-height: 14rem;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-theme-card:first-child {
    border-top: 1px solid var(--line-light);
  }

  .service-end > div {
    justify-content: flex-start;
  }

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

  .engagement-card,
  .engagement-card:first-child {
    min-height: 16rem;
    border: 0;
    border-bottom: 1px solid var(--ink);
  }

  .engagement-card:first-child {
    border-top: 1px solid var(--ink);
  }

  .partner-copy {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .territory-card:nth-child(odd) {
    border-right: 0;
  }

  .founder-visual {
    width: min(100%, 26rem);
  }

  .content-rail {
    position: static;
    padding-bottom: 2rem;
  }

  .content-rail a {
    display: inline-block;
    margin-right: 1rem;
  }

  .output-grid,
  .insight-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .logo-field:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
}

@media (max-width: 520px) {
  .site-logo {
    width: 9.8rem;
  }

  .hero-copy {
    min-height: 34rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .proof-grid,
  .swatch-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(odd),
  .swatch,
  .swatch:nth-child(3) {
    min-height: 6.8rem;
    border: 0;
    border-bottom: 1px solid var(--ink);
  }

  .offer-row {
    grid-template-columns: 2rem 1fr;
  }

  .offer-arrow {
    display: none;
  }

  .offer-row p {
    grid-column: 2;
  }

  .experience-card {
    min-height: 20rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

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