:root {
  --ink: #172126;
  --ink-soft: #253239;
  --paper: #f6f2e9;
  --paper-deep: #ece3d5;
  --white: #fffdf9;
  --clay: #b95f43;
  --clay-dark: #93472f;
  --gold: #d7a64a;
  --gold-soft: #f1dfb7;
  --green: #456552;
  --line: rgba(23, 33, 38, 0.16);
  --muted: rgba(23, 33, 38, 0.68);
  --shadow: 0 28px 80px rgba(23, 33, 38, 0.16);
  --content: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 16px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
  padding: 10px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(23, 33, 38, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(285px, 100%);
}

.brand img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 680;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 78px 0 auto;
  display: none;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(23, 33, 38, 0.32);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 680;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--clay);
  border-color: var(--clay);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.86rem;
}

.button-small:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}

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

.button-outline:hover {
  color: var(--white);
}

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

.button-light:hover {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--ink);
}

.button-spaced {
  margin-top: 30px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: clamp(56px, 8vw, 124px);
  min-height: calc(100vh - 78px);
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 9vw, 138px) clamp(24px, 7vw, 120px);
  background:
    radial-gradient(circle at 84% 12%, rgba(215, 166, 74, 0.25), transparent 24%),
    linear-gradient(135deg, #faf7f0 0%, #f1e9dc 62%, #e5d7c3 100%);
}

.hero::after {
  position: absolute;
  right: -92px;
  bottom: -110px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(23, 33, 38, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255, 255, 255, 0.16), 0 0 0 116px rgba(255, 255, 255, 0.1);
  content: "";
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero h1,
.subpage-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
}

.hero h1 span,
.subpage-hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--clay);
}

.hero-lead,
.subpage-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.87rem;
  list-style: none;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--clay);
  content: "•";
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.panel-topline,
.panel-footnote {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-topline {
  color: rgba(255, 255, 255, 0.62);
}

.panel-status::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #92c786;
  box-shadow: 0 0 0 5px rgba(146, 199, 134, 0.12);
  content: "";
}

.decision-sheet {
  margin-top: 20px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  color: var(--ink);
}

.decision-sheet > span {
  color: var(--clay);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-sheet h2 {
  margin: 52px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.decision-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.decision-path span {
  position: relative;
  padding: 18px 6px 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
}

.decision-path span::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.panel-footnote {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
}

.panel-footnote strong {
  color: var(--gold-soft);
}

.audience-strip,
.pilot-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--ink);
  color: var(--white);
}

.audience-strip div,
.pilot-stats div {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.audience-strip div:last-child,
.pilot-stats div:last-child {
  border-right: 0;
}

.audience-strip span,
.pilot-stats span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.pilot-stats div {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.pilot-stats span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pilot-stats strong {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.section {
  padding: clamp(82px, 10vw, 148px) clamp(24px, 7vw, 120px);
}

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

.section-paper {
  background: var(--paper);
}

.section-deep {
  background: var(--paper-deep);
}

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

.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.64);
}

.section-heading {
  max-width: 900px;
}

.section-heading h2,
.about-copy h2,
.focus-copy h2,
.cta h2,
.legal-card h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.about-copy > p,
.focus-copy > p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.principles-grid,
.problem-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.principles-grid article,
.problem-grid article,
.metrics-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.principles-grid article:nth-child(2),
.problem-grid .accent-card {
  background: var(--clay);
  color: var(--white);
}

.card-number {
  color: var(--clay);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.principles-grid article:nth-child(2) .card-number,
.accent-card .card-number {
  color: var(--gold-soft);
}

.principles-grid h3,
.problem-grid h3,
.metrics-grid h3 {
  margin: 66px 0 14px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.principles-grid p,
.problem-grid p,
.metrics-grid p {
  margin: 0;
  color: var(--muted);
}

.principles-grid article:nth-child(2) p,
.accent-card p {
  color: rgba(255, 255, 255, 0.76);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.process-layout .section-heading {
  position: sticky;
  top: 118px;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list article {
  display: grid;
  grid-template-columns: 72px 0.78fr 1.22fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
}

.focus-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(34px, 6vw, 80px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.reference-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: stretch;
  padding: clamp(34px, 6vw, 76px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.reference-teaser h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.reference-teaser p:not(.eyebrow) {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.reference-teaser .button {
  margin-top: 30px;
}

.reference-teaser-statement {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 58px);
  background: var(--green);
  color: var(--white);
}

.reference-teaser-statement span {
  color: rgba(255, 255, 255, 0.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-teaser-statement strong {
  max-width: 360px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.focus-copy .button {
  margin-top: 32px;
}

.focus-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.focus-facts div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--paper);
}

.focus-facts strong {
  color: var(--clay);
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

.focus-facts span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: center;
}

.portrait {
  position: relative;
}

.portrait::before {
  position: absolute;
  inset: 22px -20px -20px 22px;
  background: var(--gold);
  content: "";
}

.portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.about-note {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  color: var(--ink) !important;
  font-weight: 680;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  font-weight: 760;
}

.cta {
  padding: clamp(90px, 11vw, 166px) clamp(24px, 13vw, 220px);
  background: var(--clay);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  max-width: 980px;
  margin-inline: auto;
}

.cta > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.cta .button {
  margin-top: 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 58px;
  padding: 54px clamp(24px, 7vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.footer-brand img {
  width: min(280px, 100%);
}

.footer-brand p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.53);
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.88rem;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(52px, 8vw, 118px);
  min-height: 650px;
  align-items: center;
  padding: clamp(78px, 9vw, 132px) clamp(24px, 7vw, 120px);
  background: linear-gradient(135deg, var(--paper), var(--paper-deep));
}

.reference-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(69, 101, 82, 0.2), transparent 26%),
    linear-gradient(135deg, var(--paper), #e2e7dd);
}

.reference-board {
  transform: rotate(-1deg);
}

.reference-board .decision-sheet > span {
  color: var(--green);
}

.reference-board .decision-path span::before {
  background: var(--green);
}

.reference-board .panel-footnote strong {
  color: #b9d8c3;
}

.reference-product-card {
  background: var(--white);
}

.reference-product-card .field-sheet {
  align-self: start;
  box-shadow: 12px 14px 0 rgba(69, 101, 82, 0.24);
}

.blog-hero {
  background:
    radial-gradient(circle at 84% 14%, rgba(215, 166, 74, 0.22), transparent 28%),
    linear-gradient(135deg, var(--paper), #eee1cc);
}

.blog-board {
  transform: rotate(1deg);
}

.blog-board .decision-sheet > span {
  color: var(--clay);
}

.blog-board .panel-footnote strong {
  color: var(--gold-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}

.blog-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
}

.blog-card:nth-child(2) {
  background: var(--ink);
  color: var(--white);
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card:nth-child(2) .blog-card-meta {
  color: rgba(255, 255, 255, 0.58);
}

.blog-card h2,
.blog-card h3 {
  margin: 64px 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.blog-card p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.blog-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.67);
}

.blog-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.blog-card:nth-child(2) .text-link {
  color: var(--gold-soft);
}

.journal-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.journal-teaser .blog-card {
  min-height: 360px;
  background: var(--ink);
  color: var(--white);
}

.journal-teaser .blog-card p {
  color: rgba(255, 255, 255, 0.67);
}

.journal-teaser .blog-card .blog-card-meta {
  color: rgba(255, 255, 255, 0.58);
}

.journal-teaser .blog-card .text-link {
  color: var(--gold-soft);
}

.article-hero {
  display: grid;
  min-height: 570px;
  place-items: center;
  padding: clamp(84px, 10vw, 150px) clamp(24px, 9vw, 160px);
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 166, 74, 0.22), transparent 30%),
    linear-gradient(135deg, var(--paper), var(--paper-deep));
}

.article-hero > div {
  width: min(980px, 100%);
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.article-hero .subpage-lead {
  max-width: 820px;
}

.article-meta {
  margin-top: 30px;
}

.article-main {
  padding: clamp(78px, 9vw, 140px) 24px;
  background: var(--white);
}

.article-content {
  width: min(780px, 100%);
  margin: 0 auto;
}

.article-content .article-intro {
  margin: 0 0 72px;
  padding-left: 26px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  font-weight: 660;
  line-height: 1.5;
}

.article-content h2 {
  margin: 82px 0 22px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.article-content h3 {
  margin: 48px 0 14px;
  font-size: 1.5rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.08rem;
}

.article-content p {
  margin: 0 0 24px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding-left: 24px;
}

.article-content strong {
  color: var(--ink);
}

.article-callout {
  margin: 64px 0;
  padding: clamp(28px, 5vw, 50px);
  background: var(--paper);
  box-shadow: 10px 12px 0 var(--gold-soft);
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.article-question-list {
  display: grid;
  gap: 1px;
  margin: 42px 0;
  background: var(--line);
}

.article-question-list div {
  padding: 24px;
  background: var(--paper);
}

.article-question-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-question-list strong {
  display: block;
  font-size: 1.14rem;
}

.article-footer {
  margin-top: 86px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.article-footer .text-link + .text-link {
  margin-left: 24px;
}

.share-panel {
  margin: 78px 0 0;
  padding: clamp(28px, 5vw, 46px);
  background: var(--ink);
  color: var(--white);
}

.share-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.share-panel > p:not(.eyebrow):not(.share-status) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.share-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.share-action:hover {
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.share-action-linkedin {
  border-color: #0a66c2;
  background: #0a66c2;
}

.share-action-linkedin:hover {
  border-color: #2c7dcc;
  background: #2c7dcc;
}

.share-status {
  min-height: 1.5em;
  margin: 16px 0 0;
  color: var(--gold-soft);
  font-size: 0.82rem;
}

.pilot-board {
  padding: 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.balance-card {
  margin-top: 18px;
  padding: 34px;
  background: var(--white);
  color: var(--ink);
}

.balance-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.balance-line {
  position: relative;
  height: 82px;
  margin-top: 8px;
}

.balance-line::before {
  position: absolute;
  top: 34px;
  right: 10%;
  left: 10%;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--clay) 0 46%, var(--gold) 54% 100%);
  box-shadow: 0 8px 20px rgba(23, 33, 38, 0.16);
  content: "";
  transform: rotate(-4deg);
}

.balance-line::after {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 14px solid transparent;
  border-bottom: 34px solid var(--ink);
  border-left: 14px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.balance-question {
  margin: 20px 0 0;
  text-align: center;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.problem-grid .accent-card {
  background: var(--clay);
}

.principle-quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.principle-quote blockquote {
  margin: 0;
  padding-left: 30px;
  border-left: 5px solid var(--gold);
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.principle-quote p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

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

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

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

.steps-grid span {
  color: var(--clay);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
}

.steps-grid h3 {
  margin: 86px 0 14px;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.measurement-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(44px, 7vw, 104px);
  padding: clamp(34px, 6vw, 74px);
  background: var(--paper);
}

.field-sheet {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 12px 14px 0 var(--gold-soft);
  transform: rotate(-1deg);
}

.field-sheet div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.field-sheet div:last-child {
  border-bottom: 0;
}

.field-sheet span {
  color: rgba(23, 33, 38, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.criteria-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(52px, 8vw, 124px);
}

.criteria-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.criteria-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  font-weight: 680;
}

.criteria-list li:first-child {
  border-top: 1px solid var(--line);
}

.criteria-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
}

.faq-list {
  max-width: 980px;
  margin-top: 50px;
}

details {
  border-top: 1px solid var(--line);
}

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

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 720;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.founder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(52px, 8vw, 116px);
  min-height: 680px;
  align-items: center;
  padding: clamp(78px, 9vw, 132px) clamp(24px, 7vw, 120px);
  background: var(--paper);
}

.founder-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.founder-hero .portrait {
  max-width: 470px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 8vw, 120px);
}

.story-grid h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.story-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.values-list div {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 720;
}

.legal-main {
  min-height: 70vh;
  padding: 72px clamp(20px, 6vw, 88px) 110px;
  background: var(--paper);
}

.legal-card {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 62px);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(23, 33, 38, 0.09);
}

.legal-card h1 {
  margin-bottom: 36px;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.legal-card iframe {
  width: 100%;
  min-height: 900px;
  border: 0;
}

.simple-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 70px 24px;
  background: var(--paper);
}

.simple-card {
  max-width: 740px;
  padding: clamp(34px, 6vw, 72px);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.simple-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.simple-card p {
  margin: 24px 0 0;
  color: var(--muted);
}

.simple-card .button {
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .hero-copy {
    max-width: 900px;
  }

  .hero-panel,
  .pilot-board {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .process-layout,
  .focus-card,
  .measurement-card,
  .reference-teaser,
  .journal-teaser {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-layout .section-heading {
    position: static;
  }
}

@media (max-width: 820px) {
  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

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

  .audience-strip div:last-child {
    grid-column: 1 / -1;
  }

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

  .principles-grid,
  .problem-grid,
  .metrics-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .principle-quote,
  .criteria-layout,
  .about-section,
  .founder-hero,
  .story-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .steps-grid article:nth-child(2) {
    border-right: 0;
  }

  .steps-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-meta {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand {
    width: 210px;
  }

  .mobile-nav {
    inset-block-start: 70px;
  }

  .hero,
  .subpage-hero,
  .section,
  .founder-hero,
  .article-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .hero-panel,
  .pilot-board {
    padding: 14px;
    transform: none;
  }

  .decision-sheet,
  .balance-card {
    padding: 24px 18px;
  }

  .decision-path {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    border-top: 0;
  }

  .decision-path span {
    border-top: 1px solid var(--line);
  }

  .panel-footnote {
    flex-direction: column;
    gap: 4px;
  }

  .pilot-stats div {
    min-height: 92px;
    flex-direction: column;
    gap: 2px;
  }

  .process-list article {
    grid-template-columns: 42px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }

  .focus-facts {
    grid-template-columns: 1fr;
  }

  .portrait::before {
    inset: 12px -7px -12px 12px;
  }

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

  .steps-grid article,
  .steps-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid article:last-child {
    border-bottom: 0;
  }

  .steps-grid h3 {
    margin-top: 48px;
  }

  .field-sheet div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 380px;
  }

  .article-hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.8rem);
  }

  .article-footer .text-link {
    display: table;
  }

  .article-footer .text-link + .text-link {
    margin-left: 0;
  }

  .share-actions {
    display: grid;
  }

  .share-action {
    width: 100%;
  }
}

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

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