:root {
  --ink: #14253d;
  --mineral: #d9e0e8;
  --white: #ffffff;
  --signal: #2457f5;
  --signal-text: #1d45c4;
  --thread: #b77900;
  --thread-text: #795100;
  --focus: #1d45c4;
  --focus-on-dark: #e0b84a;
  --camperdown: #273249;
  --camperdown-paper: #f7f7f3;
  --camperdown-signal: #3b63ff;
  --camperdown-highlight: #6f8bff;
  --camperdown-muted: #a5afc1;
  --camperdown-copy: #cdd2dc;
  --line: rgba(20, 37, 61, 0.18);
  --muted: rgba(20, 37, 61, 0.72);
  color: var(--ink);
  background: var(--white);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; }

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

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--focus);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.brand-wordmark {
  display: block;
  width: 112px;
  height: auto;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a {
  padding-block: 8px;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  height: min(720px, calc(100svh - 128px));
  overflow: hidden;
  background: var(--mineral);
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-field {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 58%;
  background: rgba(255, 255, 255, 0.88);
}

.hero-inner {
  display: flex;
  width: min(100% - 40px, 1280px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
}

.hero-copy { width: min(610px, 52%); }

/* Quiet 2.0: state the premise, then let the work demonstrate it in Signal Paper. */
.site-v2 { overflow-wrap: anywhere; }
.site-v2 .hero {
  height: auto;
  min-height: 620px;
  padding-block: 64px;
}
.site-v2 .hero-inner { min-height: 492px; }
.site-v2 .hero-field { width: 65%; background: rgba(255, 255, 255, 0.95); }
.site-v2 .hero-copy { width: min(740px, 64%); }
.site-v2 h1 { max-width: 14ch; font-size: 4.75rem; line-height: 1; }
.site-v2 .hero-lede { max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.secondary-link { display: inline-flex; align-items: center; min-height: 44px; gap: 8px; font-weight: 600; text-underline-offset: 5px; }
.site-v2 .eyebrow,
.site-v2 .section-label,
.site-v2 .product-status { font-size: 0.875rem; text-transform: none; }
.site-v2 .product-feature { padding: 30px; min-width: 0; }
.site-v2 .product-feature h3 { font-size: 2.2rem; margin-bottom: 8px; }
.product-headline { font-size: 1.18rem; color: var(--ink); }
.product-visual { margin: 24px 0; }
.product-visual img { width: 100%; height: auto; aspect-ratio: 16 / 9; border: 1px solid var(--line); }
.product-visual figcaption { margin-top: 9px; color: var(--muted); font-size: 0.8125rem; }
.site-v2 .product-outcome { font-weight: 400; }
.site-v2 .product-outcome strong { display: block; margin-bottom: 6px; color: var(--ink); }
.site-v2 .company-section { padding-block: 48px; border-top: 1px solid var(--line); }
.company-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.site-v2 .company-inner h2 { margin-bottom: 0; font-size: 1.5rem; }
.company-inner p { max-width: 44ch; margin-bottom: 0; color: var(--muted); font-size: 1.125rem; }
.company-inner a { text-underline-offset: 4px; }
.contact-section { border-top: 1px solid var(--line); background: var(--white); }
.site-v2 .contact-section { padding-block: 48px; }
.site-v2 .contact-section h2 { font-size: 1.5rem; }
.contact-section .contact-panel { margin: 0; padding: 0; border: 0; }
.site-v2 .camperdown-section { padding-block: 32px; }
.site-v2 .camperdown-inner h2 { max-width: 23ch; font-size: 1.5rem; }

@media (max-width: 980px) {
  .site-v2 h1 { font-size: 3.8rem; }
  .site-v2 .hero-copy { width: min(690px, 78%); }
  .site-v2 .hero-field { width: 82%; }
}

@media (max-width: 760px) {
  .site-v2 .hero { min-height: 0; padding-block: 52px; }
  .site-v2 .hero-inner { min-height: 0; }
  .site-v2 .hero-copy { width: 100%; }
  .site-v2 .hero-field { width: 100%; }
  .site-v2 h1 { max-width: 15ch; font-size: 2.75rem; }
  .site-v2 .hero-lede { font-size: 1.06rem; }
  .site-v2 .hero-actions { gap: 10px 20px; }
  .site-v2 .product-feature { padding: 22px; }
  .company-inner { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .site-v2 .contact-panel { margin-top: 18px; }
}

.eyebrow,
.section-label,
.product-status {
  margin: 0 0 16px;
  color: var(--signal-text);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.94;
}

h2 {
  max-width: 17ch;
  margin-bottom: 20px;
  font-size: 3.35rem;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-size: 1.42rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-lede,
.section-lede {
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: var(--signal);
  border-color: var(--signal);
}

.thesis-band,
.section,
.camperdown-section {
  scroll-margin-top: 68px;
  border-top: 1px solid var(--line);
}

.thesis-band {
  padding: 72px 0 78px;
  background: var(--white);
}

.thesis-inner,
.section-heading,
.custom-inner,
.name-inner,
.about-inner,
.camperdown-inner {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 52px;
}

.thesis-inner h2,
.section-heading h2 { margin-bottom: 0; }

.thesis-inner .section-lede {
  max-width: 760px;
  margin: 24px 0 0;
}

.premise-copy {
  max-width: 760px;
}

.premise-copy h2 {
  max-width: 17ch;
  margin-bottom: 32px;
}

.premise-copy p {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.62;
}

.premise-copy p + p {
  margin-top: 20px;
}

.premise-copy .premise-examples {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.premise-copy .premise-coda {
  max-width: 58ch;
}

.section { padding: 104px 0; }

.section-heading { align-items: start; }

.section-heading > div .section-lede {
  max-width: 720px;
  margin-bottom: 0;
}

.living-section {
  border-top: 4px solid var(--signal);
  background: var(--white);
}

.living-heading .experience-note {
  max-width: 720px;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
}

.living-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(290px, 0.72fr);
  margin-top: 52px;
  overflow: hidden;
  background: var(--ink);
}

.experience-stage {
  --focus: var(--focus-on-dark);
  min-width: 0;
  padding: 32px;
  background: var(--ink);
  color: var(--white);
}

.stage-meta,
.source-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.record-id,
.record-state,
.stage-label,
.source-meta,
.agent-trace,
.step-number,
.sequence-instruction,
.static-note {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.record-id,
.record-state,
.stage-label,
.source-meta p,
.agent-trace { margin-bottom: 0; }

.record-id { color: rgba(255, 255, 255, 0.68); }
.record-state { color: var(--focus-on-dark); }

.record-headline {
  max-width: 730px;
  margin: 48px 0 30px;
}

.stage-label {
  margin-bottom: 10px;
  color: var(--focus-on-dark);
}

.record-headline h3 {
  max-width: 19ch;
  margin-bottom: 14px;
  font-size: 2.45rem;
  line-height: 1;
}

.record-headline > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.record-stream {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.source-record {
  min-width: 0;
  min-height: 224px;
  padding: 20px;
  border-top: 4px solid rgba(255, 255, 255, 0.22);
  background: var(--ink);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.source-record[data-active="false"] {
  background: var(--ink);
  border-top-color: rgba(255, 255, 255, 0.22);
}

.source-record[data-active="true"] { transform: translateY(-4px); }
.source-pique[data-active="true"] { border-top-color: #0d625d; }
.source-passage[data-active="true"] { border-top-color: var(--thread); }
.source-pep[data-active="true"] { border-top-color: var(--signal); }

.source-meta {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}

.source-meta p { max-width: 15ch; }

.source-meta span {
  flex: 0 0 auto;
  color: var(--focus-on-dark);
}

.source-record[data-active="false"] .source-meta span { color: rgba(255, 255, 255, 0.62); }

.source-record h4 {
  margin: 26px 0 8px;
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.08;
}

.source-record > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.source-record a {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.agent-synthesis {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(13, 98, 93, 0.54);
  background: rgba(13, 98, 93, 0.08);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.experience-stage:not([data-step="3"]) .agent-synthesis {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.agent-proposal { margin-bottom: 0; }

.agent-proposal strong,
.agent-proposal span { display: block; }

.agent-proposal strong {
  margin-bottom: 5px;
  font-size: 0.88rem;
}

.agent-proposal span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.agent-trace {
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  text-align: right;
}

.sequence-panel {
  min-width: 0;
  padding: 32px 0 20px;
  background: var(--white);
  color: var(--ink);
}

.sequence-heading {
  padding: 0 26px 24px;
}

.sequence-heading .section-label { margin-bottom: 10px; }

.sequence-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.sequence-controls { border-top: 1px solid var(--line); }

.sequence-step {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 108px;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  padding: 20px 26px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.sequence-step::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: transparent;
  content: "";
}

.sequence-step:hover { background: var(--mineral); }

.sequence-step[aria-selected="true"] {
  background: var(--mineral);
}

.sequence-step[aria-selected="true"]::before { background: var(--signal); }

.step-number {
  padding-top: 2px;
  color: var(--signal-text);
}

.sequence-step strong,
.sequence-step small { display: block; }

.sequence-step strong {
  margin-bottom: 5px;
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-size: 1.12rem;
}

.sequence-step small {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.sequence-instruction,
.static-note {
  margin: 18px 26px 0;
  color: var(--muted);
  line-height: 1.45;
  text-transform: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.product-feature {
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-feature.pique { border-top: 5px solid var(--signal); }
.product-feature.passage { border-top: 5px solid var(--thread); }
.passage .product-status { color: var(--thread-text); }
.product-feature h3 { font-size: 2.5rem; }

.product-feature > p:not(.product-status) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-feature .product-outcome {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.pique-index-search {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pique-index-search label {
  display: block;
  margin-bottom: 4px;
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.pique-index-search > p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.pique-search-box { position: relative; }

.pique-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.pique-search-row input,
.pique-search-row button {
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: inherit;
}

.pique-search-row input {
  min-width: 0;
  padding: 11px 13px;
  background: var(--mineral);
  color: var(--ink);
}

.pique-search-row input::placeholder { color: rgba(20, 37, 61, 0.72); }

.pique-search-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: -1px;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.pique-search-row button:hover { background: var(--signal); }

.pique-suggestions {
  position: absolute;
  inset: calc(100% - 1px) 0 auto;
  z-index: 8;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(20, 37, 61, 0.18);
}

.pique-suggestions-status {
  margin: 0;
  padding: 10px 13px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
}

.pique-suggestions ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pique-suggestions li { border-top: 1px solid var(--line); }

.pique-index-search a.pique-suggestion {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 11px 13px;
  color: var(--ink);
  text-decoration: none;
}

.pique-suggestions li[aria-selected="true"],
.pique-suggestions li:hover { background: var(--mineral); }

.pique-suggestion-title {
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.pique-suggestion-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.pique-index-search .pique-search-note {
  margin: 9px 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
}

.product-feature a,
.custom-copy a,
.camperdown-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.future-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  margin-top: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.future-note h3 { margin-bottom: 6px; }

.future-note p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.approach-section {
  background: var(--ink);
  color: var(--white);
}

.approach-section .section-label { color: var(--focus-on-dark); }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 58px;
}

.principle-grid article {
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.42);
}

.principle-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.custom-section {
  padding-block: 84px;
  background: var(--white);
}

.custom-inner,
.name-inner,
.about-inner,
.camperdown-inner { align-items: start; }

.custom-inner h2,
.name-inner h2,
.about-inner h2 { font-size: 2.7rem; }

.custom-copy,
.name-copy,
.about-copy { max-width: 720px; }

.custom-copy > p,
.name-copy > p,
.about-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.domain-line {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.88rem;
}

.contact-panel {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 3px solid var(--signal);
}

.contact-panel h3 {
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.contact-panel > p {
  margin-bottom: 20px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field label {
  font-family: "Familjen Grotesk", "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 11px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-field textarea { min-height: 130px; }

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-verification {
  display: grid;
  gap: 8px;
}

.contact-verification > p,
.contact-privacy,
.contact-status,
.contact-noscript {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-verification a,
.contact-noscript a { color: inherit; }

.contact-submit {
  justify-self: start;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.contact-submit:hover:not(:disabled) { background: var(--signal); }
.contact-submit:disabled { cursor: not-allowed; opacity: 0.6; }
.contact-status { min-height: 1.4em; color: var(--ink); }

.name-section {
  padding-block: 84px;
  background: var(--mineral);
}

.name-copy {
  padding-top: 24px;
  border-top: 3px solid var(--thread);
}

.name-copy p:last-child { margin-bottom: 0; }

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

.camperdown-section {
  --focus: var(--camperdown-highlight);
  padding: 78px 0;
  border-top: 4px solid var(--camperdown-signal);
  background: var(--camperdown);
  color: var(--camperdown-paper);
}

.bridge-intro { align-self: start; }

.brand-junction {
  position: relative;
  width: 86px;
  height: 30px;
  margin-bottom: 24px;
}

.brand-junction::before,
.brand-junction::after {
  position: absolute;
  content: "";
}

.brand-junction::before {
  top: 14px;
  left: 0;
  width: 72px;
  height: 2px;
  background: var(--camperdown-signal);
}

.brand-junction::after {
  top: 2px;
  left: 61px;
  width: 2px;
  height: 26px;
  background: var(--camperdown-highlight);
}

.brand-junction span {
  position: absolute;
  top: 9px;
  left: 57px;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 2px solid var(--camperdown-highlight);
  background: var(--camperdown-paper);
}

.camperdown-inner > div { max-width: 760px; }
.camperdown-inner h2 {
  color: var(--camperdown-paper);
  font-size: 2.75rem;
}

.site-v2 .camperdown-inner h2.camperdown-wordmark {
  max-width: none;
  font-family: Fraunces, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.camperdown-wordmark-name,
.camperdown-wordmark-descriptor {
  display: block;
}

.site-v2 .camperdown-wordmark-descriptor {
  margin-top: 7px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.camperdown-section .section-label { color: var(--camperdown-muted); }
.camperdown-inner p { color: var(--camperdown-copy); }
.camperdown-inner a {
  color: var(--camperdown-paper);
  text-decoration-color: var(--camperdown-highlight);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(20, 37, 61, 0.14);
  background: var(--white);
  color: var(--ink);
}

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

.footer-inner p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
}

.footer-contact {
  font-size: 0.85rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  h1 { font-size: 3.8rem; }
  h2 { font-size: 2.8rem; }
  .hero-field { width: 72%; }
  .hero-copy { width: min(590px, 68%); }
  .living-experience { grid-template-columns: 1fr; }
  .sequence-panel { padding-bottom: 24px; }
  .sequence-controls {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sequence-step {
    min-height: 160px;
    grid-template-columns: 1fr;
    align-content: start;
    border-right: 1px solid var(--line);
  }
  .sequence-step:last-child { border-right: 0; }
  .principle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .header-inner,
  .section-inner,
  .hero-inner { width: min(100% - 32px, 1280px); }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
    padding-block: 10px;
  }

  .site-nav a { padding-block: 5px; }

  .hero { height: min(680px, calc(100svh - 240px)); }

  .hero-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
  }

  .hero-media { object-position: 64% center; }
  .hero-copy { width: 100%; }

  h1 {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  h2 { font-size: 2.35rem; }

  .hero-lede,
  .section-lede { font-size: 1rem; }

  .thesis-band,
  .section,
  .camperdown-section { padding-block: 68px; }

  .thesis-inner,
  .section-heading,
  .custom-inner,
  .name-inner,
  .about-inner,
  .camperdown-inner,
  .product-grid,
  .principle-grid { grid-template-columns: 1fr; }

  .thesis-inner,
  .section-heading,
  .custom-inner,
  .name-inner,
  .about-inner,
  .camperdown-inner { gap: 20px; }

  .premise-copy h2 { margin-bottom: 26px; }

  .premise-copy p { font-size: 1rem; }

  .premise-copy .premise-examples {
    margin-top: 26px;
    padding-top: 20px;
  }

  .product-grid {
    gap: 14px;
    margin-top: 36px;
  }

  .product-feature {
    min-height: 0;
    padding: 24px;
  }

  .pique-search-row { grid-template-columns: 1fr; }

  .pique-search-row button { margin: -1px 0 0; }

  .living-experience { margin-top: 36px; }

  .experience-stage { padding: 24px; }

  .record-headline {
    margin: 36px 0 24px;
  }

  .record-headline h3 { font-size: 2rem; }

  .record-stream { grid-template-columns: 1fr; }

  .source-record {
    min-height: 0;
    padding: 20px;
  }

  .source-record[data-active="true"] { transform: none; }

  .agent-synthesis {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agent-trace {
    max-width: none;
    text-align: left;
  }

  .sequence-controls { grid-template-columns: 1fr; }

  .sequence-step {
    min-height: 0;
    grid-template-columns: 36px minmax(0, 1fr);
    border-right: 0;
  }

  .future-note {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .custom-inner h2,
  .name-inner h2,
  .about-inner h2,
  .camperdown-inner h2 { font-size: 2.25rem; }

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

@media (max-width: 760px) {
  .js .header-inner { min-height: 64px; }
  .js .nav-toggle { display: block; }

  .js .site-nav {
    position: absolute;
    inset: 64px 0 auto 0;
    display: none;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(23, 33, 43, 0.14);
  }

  .js .site-nav[data-open="true"] {
    display: flex;
    flex-direction: column;
  }

  .js .site-nav a {
    min-height: 44px;
    padding: 11px 12px;
  }
}

@media (max-height: 650px) {
  h1 {
    margin-bottom: 10px;
    font-size: 2.25rem;
  }

  .hero-lede {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .button { min-height: 40px; }
}

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

  .source-record,
  .agent-synthesis {
    transition: none;
  }

  .source-record[data-active="true"] {
    transform: none;
  }

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

/* Manifold 2.1 — the approved people-and-agents direction. */
.site-v21 {
  --ink: #172a45;
  --mineral: #e8edf3;
  --signal: #3e5bd7;
  --signal-text: #3e5bd7;
  --muted: #526176;
  overflow-wrap: anywhere;
}

.site-v21 .hero {
  height: auto;
  min-height: 706px;
  padding: 0;
  overflow: visible;
  background: var(--white);
}

.site-v21 .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 590px);
  gap: 60px;
  min-height: 706px;
  padding-block: 64px;
  align-items: center;
}

.site-v21 .hero-copy {
  width: auto;
  max-width: 630px;
}

.site-v21 h1 {
  max-width: 9ch;
  margin-bottom: 30px;
  font-size: 5.5rem;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.site-v21 .hero-lede {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.site-v21 .hero-picture {
  position: relative;
  inset: auto;
  z-index: auto;
  display: block;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background: var(--white);
}

.site-v21 .hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-v21 .secondary-link {
  color: var(--ink);
  text-decoration-thickness: 1px;
}

.premise-section,
.ways-section,
.method-section,
.explorations-section {
  scroll-margin-top: 68px;
}

.site-v21 .premise-section {
  --focus: #aebdff;
  padding: 78px 0 70px;
  background: var(--ink);
  color: var(--white);
}

.premise-top {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: start;
}

.site-v21 .premise-top h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--white);
  font-size: 3.25rem;
  letter-spacing: -0.025em;
}

.site-v21 .premise-copy {
  max-width: 680px;
}

.site-v21 .premise-copy p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.6;
}

.connection-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  align-items: center;
}

.connection-side h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.15rem;
}

.connection-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
}

.connection-center {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  white-space: nowrap;
}

.connection-center::before,
.connection-center::after {
  height: 2px;
  background: var(--signal);
  content: "";
}

.site-v21 .section {
  padding: 88px 0;
}

.ways-heading,
.method-heading,
.explorations-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.site-v21 .ways-heading h2,
.site-v21 .method-heading h2,
.site-v21 .explorations-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: -0.025em;
}

.ways-heading > p,
.method-heading > p,
.explorations-heading > p {
  max-width: 58ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.58;
}

.capability-list {
  margin-top: 54px;
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(320px, 1fr) minmax(220px, 320px);
  gap: 44px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.capability-row:last-child {
  border-bottom: 1px solid var(--line);
}

.capability-row h3,
.capability-row p {
  margin: 0;
}

.capability-row h3 {
  max-width: 22ch;
  font-size: 1.45rem;
}

.capability-row p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.55;
}

.capability-forms {
  display: grid;
  gap: 5px;
  color: var(--signal-text);
  font-size: 0.9rem;
  line-height: 1.4;
}

.site-v21 .method-section {
  background: var(--mineral);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.method-grid article {
  padding-top: 20px;
  border-top: 3px solid var(--signal);
}

.method-grid h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.method-grid p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-v21 .explorations-section {
  background: var(--white);
}

.exploration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.exploration {
  min-width: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.exploration-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.exploration-title h3 {
  margin: 0;
  font-size: 1.65rem;
}

.site-v21 .exploration-title .product-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: none;
}

.exploration > p {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.exploration > a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 600;
  text-underline-offset: 5px;
}

.site-v21 .exploration-search {
  max-width: 560px;
  margin-top: 24px;
  padding-top: 20px;
}

.site-v21 .exploration-search label {
  font-size: 1rem;
}

.site-v21 .future-note {
  margin-top: 34px;
  padding-block: 22px;
}

.site-v21 .company-section {
  padding-block: 52px;
  border-top: 1px solid var(--line);
}

.site-v21 .company-inner {
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
}

.site-v21 .company-inner h2 {
  margin: 0;
  font-size: 1.5rem;
}

.about-summary {
  max-width: 620px;
}

.site-v21 .about-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-v21 .about-summary p + p {
  margin-top: 12px;
}

.site-v21 .camperdown-section {
  padding-block: 32px;
}

.site-v21 .camperdown-inner {
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.site-v21 .camperdown-inner h2.camperdown-wordmark {
  max-width: none;
  margin: 0;
  font-family: Fraunces, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.site-v21 .camperdown-wordmark-descriptor {
  margin-top: 7px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-v21 .camperdown-inner p {
  max-width: 62ch;
  margin: 0;
}

.site-v21 .contact-section {
  padding-block: 58px;
  background: var(--white);
}

.site-v21 .custom-inner {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
}

.site-v21 .contact-intro h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: 2.4rem;
}

.contact-intro > p {
  max-width: 34ch;
  margin-bottom: 12px;
  color: var(--muted);
}

.site-v21 .contact-panel {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-v21 .contact-field label {
  font-size: 0.9rem;
}

.site-v21 .contact-field textarea {
  min-height: 120px;
}

.site-v21 .site-footer {
  padding-block: 22px;
}

@media (max-width: 980px) {
  .site-v21 .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 46%);
    gap: 36px;
  }

  .site-v21 h1 {
    font-size: 4.35rem;
  }

  .capability-row {
    grid-template-columns: minmax(190px, 0.8fr) minmax(270px, 1.2fr) minmax(180px, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .site-v21 .header-inner,
  .site-v21 .section-inner,
  .site-v21 .hero-inner {
    width: min(100% - 32px, 1280px);
  }

  .site-v21 .hero {
    min-height: 0;
  }

  .site-v21 .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    min-height: 0;
    padding: 50px 0 0;
  }

  .site-v21 h1 {
    max-width: 9ch;
    margin-bottom: 24px;
    font-size: 2.9rem;
    line-height: 0.98;
  }

  .site-v21 .hero-lede {
    font-size: 1.02rem;
  }

  .site-v21 .hero-picture {
    height: auto;
    aspect-ratio: 7 / 4;
  }

  .site-v21 .premise-section {
    padding: 60px 0 56px;
  }

  .premise-top,
  .ways-heading,
  .method-heading,
  .explorations-heading,
  .site-v21 .company-inner,
  .site-v21 .camperdown-inner,
  .site-v21 .custom-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .site-v21 .premise-top h2,
  .site-v21 .ways-heading h2,
  .site-v21 .method-heading h2,
  .site-v21 .explorations-heading h2 {
    font-size: 2.45rem;
  }

  .connection-rail {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin-top: 40px;
  }

  .connection-center {
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  }

  .site-v21 .section {
    padding: 64px 0;
  }

  .capability-list {
    margin-top: 38px;
  }

  .capability-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 22px 0;
  }

  .capability-row h3 {
    font-size: 1.32rem;
  }

  .capability-forms {
    margin-top: 4px;
  }

  .method-grid,
  .exploration-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-top: 38px;
  }

  .method-grid p {
    max-width: none;
  }

  .exploration-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-v21 .future-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .site-v21 .contact-intro h2 {
    font-size: 2.2rem;
  }

  .contact-field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 340px) {
  .site-v21 h1 {
    font-size: 2.62rem;
  }
}
