@font-face {
  font-family: Barlow;
  src: url("fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #171b19;
  --paper: #f4f2e9;
  --gold: #eccc55;
  --muted: #696e65;
  --line: #d8d9cf;
  --body-font: Manrope, Arial, sans-serif;
  --display-font: Barlow, "Arial Narrow", Arial, sans-serif;
  --max-width: 1320px;
  --navy-950: var(--ink);
  --navy-900: var(--ink);
  --page: var(--paper);
  --blue: #325c48;
  --blue-dark: #244a38;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #ab731b;
  outline-offset: 5px;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.02;
}
h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(46px, 5.8vw, 84px);
  letter-spacing: -0.018em;
}
p {
  line-height: 1.75;
}
.container {
  width: min(var(--max-width), calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 116px;
}
.overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.8;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.overline.light {
  color: #c5c9bf;
}
.tiny-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
}
.serif-word {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  font-size: 0.84em;
}
.muted {
  color: #858b7f;
}
.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: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--ink);
}
.skip-link:focus {
  top: 12px;
}
.anchor-target {
  position: absolute;
  top: 0;
}
/* The same quiet, precise frame on every page. */
.site-header {
  position: relative;
  top: auto;
  z-index: 30;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
  box-shadow: none;
}
.homepage .site-header {
  background: var(--ink);
  color: var(--paper);
  border-color: #3b4039;
}
.header-inner {
  width: min(var(--max-width), calc(100% - 112px));
  min-height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: inherit;
}
.brand-symbol {
  width: 38px;
  height: 38px;
  display: block;
}
.brand-symbol svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}
.brand-center {
  fill: currentColor;
  stroke: none;
}
.brand-copy strong {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1.05;
  display: block;
}
.brand-period {
  color: #8b742b;
}
.homepage .brand-period {
  color: var(--gold);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 12px;
  font-weight: 700;
  padding: 10px 0;
  color: inherit;
  border-radius: 0;
  transition: opacity 0.2s;
}
.site-nav a:hover {
  background: none;
  color: inherit;
  opacity: 0.65;
}
.site-nav .nav-cta {
  padding: 11px 21px;
  border: 1px solid currentColor;
  border-radius: 100px;
  color: inherit;
  background: none;
  box-shadow: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-cta span {
  font-size: 20px;
  line-height: 1;
}
.nav-toggle {
  display: none;
  background: none;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  padding: 12px;
}
.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  margin: 6px 0;
}
/* First impression: a sporting editorial, not a software dashboard. */
.new-hero {
  background: var(--ink);
  color: var(--paper);
  min-height: 830px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      transparent calc(25% - 1px),
      #424a3b30 25%,
      transparent calc(25% + 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(75% - 1px),
      #424a3b30 75%,
      transparent calc(75% + 1px)
    );
  z-index: -2;
}
.hero-art {
  position: absolute;
  top: -35px;
  right: -125px;
  width: min(78vw, 1120px);
  pointer-events: none;
  z-index: -1;
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform 0.65s ease-out;
}
.hero-art img {
  width: 100%;
  transform: perspective(1400px) rotateY(-20deg) rotateX(5deg) rotateZ(-14deg);
  filter: drop-shadow(0 35px 35px #0005);
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0, transparent 35%);
}
.art-cross {
  position: absolute;
  font-family: monospace;
  color: #bfc6b3;
  z-index: 1;
  font-size: 27px;
}
.cross-one {
  top: 20%;
  right: 19%;
}
.cross-two {
  bottom: 23%;
  left: 23%;
}
.art-caption {
  position: absolute;
  right: 16%;
  top: 49%;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.23em;
  color: #dbded1;
}
.hero-inner {
  padding-top: 57px;
  position: relative;
}
.new-hero h1 {
  font-family: var(--display-font);
  font-size: clamp(100px, 11.8vw, 176px);
  line-height: 0.9;
  letter-spacing: -0.018em;
  font-weight: 700;
  margin: 25px 0 32px;
  max-width: 840px;
}
.new-hero h1 em {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.9;
}
.hero-bottom {
  max-width: 470px;
}
.hero-bottom > p {
  font-size: 14px;
  color: #c6cabf;
  max-width: 390px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 25px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 49px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.35;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.pill span {
  font-size: 23px;
  line-height: 1;
}
.pill:hover {
  transform: translateY(-3px);
}
.pill-gold {
  background: var(--gold);
  color: var(--ink);
}
.pill-gold:hover {
  background: #f8de78;
}
.pill-ink {
  background: var(--ink);
  color: var(--paper);
}
.pill-ink:hover {
  background: #374334;
}
.quiet-link {
  font-size: 11px;
  font-weight: 700;
  color: inherit;
  border-bottom: 1px solid #ffffff60;
  padding-bottom: 4px;
  white-space: nowrap;
}
.underlined {
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-block: 5px;
  white-space: nowrap;
}
.hero-baseline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-top: 55px;
  padding-block: 20px;
  border-top: 1px solid #40473c;
  color: #bec3b6;
  font-size: 9px;
  letter-spacing: 0.035em;
}
.hero-baseline a {
  display: flex;
  gap: 17px;
  align-items: center;
}
.hero-baseline a span {
  font-size: 22px;
  color: var(--gold);
}
.hero-edition {
  font-size: 8px;
  letter-spacing: 0.16em;
}
.portfolio-index {
  background: #e8e9df;
  border-bottom: 1px solid #cbcec0;
}
.portfolio-index > .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.portfolio-index a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 25px;
  border-right: 1px solid #cbcec0;
  font-size: 14px;
  font-weight: 700;
}
.portfolio-index a:first-child {
  padding-left: 0;
}
.portfolio-index a:last-child {
  border: 0;
}
.portfolio-index small {
  font: 9px monospace;
  color: #67705e;
}
.portfolio-index a > span {
  margin-left: auto;
  color: #6a745f;
  font-size: 19px;
}
.portfolio-index a:hover {
  color: #536b40;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1.18fr 0.85fr;
  gap: 35px;
  align-items: start;
}
.section-intro h2 {
  font-size: clamp(44px, 4.7vw, 68px);
}
.section-intro > p:last-child {
  font-size: 13px;
  max-width: 320px;
  color: var(--muted);
  padding-top: 6px;
}
.moment-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}
.moment-row > a {
  position: relative;
  padding: 31px 42px 12px 0;
  margin-right: 36px;
}
.moment-row > a:last-child {
  margin-right: 0;
}
.moment-number {
  font-size: 8px;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: var(--muted);
}
.moment-row h3 {
  font-family: var(--display-font);
  font-size: 35px;
  margin-block: 15px;
}
.moment-row p {
  font-size: 12px;
  max-width: 270px;
  color: var(--muted);
}
.moment-arrow {
  position: absolute;
  right: 3px;
  top: 27px;
  font-size: 21px;
}
.moment-row a:hover .moment-arrow {
  color: #866900;
  transform: translate(3px, -3px);
}
.portfolio {
  padding-bottom: 0;
  background: #ebece3;
}
.portfolio-heading {
  position: relative;
  padding-bottom: 85px;
}
.portfolio-heading h2 {
  margin-top: 22px;
  font-size: clamp(68px, 7.6vw, 110px);
}
.portfolio-count {
  position: absolute;
  right: 0;
  top: -52px;
  font-family: var(--display-font);
  font-size: 230px;
  line-height: 1;
  color: #d7dbcc;
  letter-spacing: -0.03em;
}
.product-chapter {
  padding-block: 105px;
  scroll-margin-top: 25px;
}
.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.chapter-copy h2 {
  font-size: clamp(47px, 4.8vw, 69px);
  margin: 25px 0;
}
.chapter-copy > p:not(.overline):not(.access-note) {
  font-size: 13px;
  color: var(--muted);
  max-width: 460px;
}
.chapter-number {
  font-family: monospace;
  font-size: 10px;
  font-weight: 400;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}
.chapter-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 30px;
}
.access-note {
  font-size: 9px;
  letter-spacing: 0.03em;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #68705f;
}
.access-note .tiny-dot {
  background: #7e8a56;
  width: 5px;
  height: 5px;
}
.chapter-features {
  padding: 0;
  margin: 32px 0;
  list-style: none;
}
.chapter-features li {
  display: flex;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid #d0d5c6;
}
.chapter-features li > span {
  font-size: 20px;
  line-height: 1;
}
.chapter-features strong {
  font-size: 12px;
  line-height: 1.4;
  display: block;
}
.chapter-features p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  max-width: 380px;
}
.app-chapter {
  padding-top: 0;
}
.app-stage {
  min-height: 715px;
  background: #dce3ce;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 15px 70px;
  overflow: hidden;
  border-radius: 2px;
}
.stage-type {
  position: absolute;
  top: 35px;
  left: 25px;
  font-family: var(--display-font);
  font-size: 126px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: #bbc7ac;
}
.device {
  position: relative;
  width: 245px;
  background: #20251f;
  padding: 8px;
  border: 1px solid #65745e;
  border-radius: 35px;
  box-shadow: 18px 30px 50px #33432645;
  transform: rotate(8deg);
}
.device-camera {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  height: 6px;
  width: 45px;
  background: #222a23;
  border-radius: 5px;
  z-index: 2;
}
.device-viewport {
  border-radius: 27px;
  overflow: hidden;
  aspect-ratio: 900/1750;
  background: white;
  position: relative;
}
.device img {
  width: 100%;
  max-width: none;
  transform: translateY(-3.3%);
  height: auto;
}
.image-switch {
  display: flex;
  position: absolute;
  bottom: 51px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #74816a;
  border-radius: 100px;
  padding: 3px;
  background: #e6ecd8;
  white-space: nowrap;
  gap: 2px;
}
.image-switch button {
  background: none;
  color: var(--ink);
  border: 0;
  padding: 8px 12px;
  font-size: 9px;
  border-radius: 100px;
}
.image-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}
.stage-caption {
  position: absolute;
  bottom: 21px;
  left: 10px;
  right: 10px;
  text-align: center;
  font-size: 8px;
  color: #4c5d42;
}
.wide-chapter-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10%;
  align-items: end;
  margin-bottom: 60px;
}
.wide-chapter-head h2 {
  margin-top: 25px;
}
.wide-chapter-head > div:last-child > p {
  font-size: 13px;
  max-width: 470px;
}
.hindsight-chapter {
  background: #22291f;
  color: var(--paper);
}
.hindsight-chapter .wide-chapter-head > div:last-child > p {
  color: #c4cabc;
}
.hindsight-stage {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 45px;
  align-items: center;
}
.hindsight-side {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-top: 20px;
}
.live-mark {
  font-size: 8px;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-mark .tiny-dot {
  background: #e3b85c;
}
.delay-figure {
  font-family: Georgia, serif;
  font-size: 200px;
  line-height: 1.3;
  color: #d8c46f;
  margin-left: -10px;
}
.delay-steps {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 11px;
}
.delay-steps span:after {
  content: " /";
  color: #7d8974;
}
.hindsight-side p {
  font-size: 10px;
  color: #a7b29e;
  margin-top: 15px;
}
.browser-window {
  border: 1px solid #89968166;
  background: #131c16;
  box-shadow: 0 22px 42px #11160f25;
  overflow: hidden;
  border-radius: 7px;
}
.browser-toolbar {
  height: 32px;
  background: #202a23;
  color: #a9b7a8;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
}
.browser-toolbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #74816e;
}
.browser-toolbar span {
  margin-left: 12px;
  font-size: 7px;
  letter-spacing: 0.11em;
}
.browser-window img {
  width: 100%;
  height: auto;
}
.browser-window figcaption {
  padding: 12px 16px;
  font-size: 8px;
  background: #f5f3e9;
  color: #626a5a;
}
.sim-chapter {
  background: #e4e8ec;
  overflow: hidden;
}
.sim-stage {
  position: relative;
  padding: 35px 85px 0;
}
.sim-window {
  position: relative;
  max-width: 980px;
  margin: auto;
  transform: perspective(1800px) rotateY(-3deg) rotateX(2deg);
  box-shadow: 14px 36px 70px #38516b30;
}
.trajectory {
  position: absolute;
  inset: -20px -100px 0;
  pointer-events: none;
}
.trajectory svg {
  width: 100%;
  fill: none;
  stroke: #677d99;
  stroke-width: 1;
  stroke-dasharray: 6 6;
}
.trajectory svg path:first-child {
  stroke: #263b57;
  stroke-dasharray: none;
}
.trajectory circle {
  fill: #f2c956;
  stroke: none;
}
.trajectory span {
  position: absolute;
  right: 90px;
  top: 5px;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #526880;
}
.club-chapter {
  background: #f4f2e9;
}
.club-chapter .chapter-grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6%;
}
.word-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  margin-top: 25px;
}
.word-list span {
  font-size: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #c5cbbb;
}
.club-stage {
  background: #d3d9cb;
  padding: 60px 28px 38px;
  position: relative;
}
.stage-label {
  position: absolute;
  top: 25px;
  left: 28px;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #4c5b45;
}
.club-stage .browser-window {
  transform: perspective(1800px) rotateY(-6deg);
}
.admin-chapter {
  background: #e9e7db;
  padding-top: 95px;
}
.data-art {
  position: relative;
  aspect-ratio: 1;
  background: #d8d5c3;
  overflow: hidden;
  background-image: radial-gradient(#a19f8c 1px, transparent 1px);
  background-size: 20px 20px;
}
.data-corner {
  position: absolute;
  left: 24px;
  top: 23px;
  font-size: 8px;
  letter-spacing: 0.16em;
}
.data-orbit {
  position: absolute;
  border: 1px solid #888d7799;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  left: 6%;
  top: 6%;
}
.orbit-b {
  width: 56%;
  height: 56%;
  left: 22%;
  top: 22%;
}
.data-art .data-node {
  position: absolute;
  padding: 18px 20px;
  background: #f4f2e9;
  border: 1px solid #b7bdac;
  border-radius: 3px;
  box-shadow: 5px 9px 0 #7b886533;
}
.data-art .data-node small {
  font-size: 7px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 9px;
}
.data-art .data-node strong {
  font-size: 17px;
  line-height: 1.3;
  display: block;
  letter-spacing: -0.03em;
}
.data-art .node-source {
  top: 19%;
  left: 8%;
  transform: rotate(-5deg);
}
.data-art .node-core {
  top: 40%;
  left: 35%;
  z-index: 1;
  background: var(--ink);
  color: var(--paper);
  border-color: #667055;
  transform: rotate(5deg);
  box-shadow: 7px 10px 0 #899375;
}
.data-art .node-core strong {
  font-size: 19px;
}
.data-art .node-plus {
  position: absolute;
  right: 11px;
  top: 3px;
  color: var(--gold);
  font-size: 17px;
}
.data-art .node-result {
  bottom: 12%;
  right: 7%;
  transform: rotate(-3deg);
  background: var(--gold);
  border-color: #c3aa50;
}
.data-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-size: 7px;
  letter-spacing: 0.1em;
  color: #575e50;
}
.finder {
  background: #f4f2e9;
}
.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.finder h2 {
  margin: 20px 0;
}
.finder-grid > div > p:not(.overline) {
  font-size: 13px;
  color: var(--muted);
  max-width: 380px;
}
.audience-choices {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  max-width: 420px;
}
.audience-choices button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}
.audience-choices button:last-child {
  border-bottom: 1px solid var(--line);
}
.audience-choices button span {
  font-size: 22px;
}
.audience-choices button[aria-pressed="true"] {
  color: var(--ink);
  font-weight: 700;
}
.audience-choices button[aria-pressed="true"] span {
  color: #967719;
}
.finder-answer {
  position: relative;
  padding: 60px 42px 42px;
  background: #e6eadc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.finder-mark {
  position: absolute;
  right: 32px;
  top: 5px;
  font-size: 110px;
  line-height: 1.4;
  font-family: Arial, sans-serif;
  color: #aab695;
}
.finder-answer h3 {
  font-family: var(--display-font);
  font-size: 52px;
  margin: 19px 0;
  max-width: 360px;
}
.finder-answer p:not(.overline) {
  font-size: 12px;
  max-width: 370px;
  color: #58614f;
}
.finder-answer .pill {
  margin-top: 28px;
}
.project {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 10%;
}
.project h2 {
  margin-top: 26px;
}
.project-copy {
  position: relative;
  padding-top: 75px;
}
.project-copy p {
  font-size: 13px;
  color: #c1c7b8;
  margin-bottom: 20px;
  max-width: 430px;
}
.project-cross {
  position: absolute;
  right: 0;
  top: -30px;
  font-size: 88px;
  color: var(--gold);
  line-height: 1;
}
.project-concepts {
  display: block;
  font-size: 10px;
  color: #a7b29c;
  margin-top: 24px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8%;
}
.faq h2 {
  margin-top: 20px;
  font-size: 64px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 25px 23px 0;
  font-size: 12px;
  color: var(--muted);
}
.closing {
  background: var(--gold);
  padding-block: 66px;
}
.closing .container {
  position: relative;
}
.closing h2 {
  font-size: clamp(100px, 13vw, 180px);
  line-height: 0.88;
  margin-top: 28px;
  letter-spacing: -0.025em;
}
.closing h2 > span {
  color: #79682f;
}
.closing-link {
  position: absolute;
  right: 0;
  bottom: 6px;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  font-weight: 700;
}
.closing-arrow {
  width: 140px;
  height: 140px;
  border: 1px solid #2b301f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 88px;
  font-weight: 400;
  transition:
    background 0.25s,
    color 0.25s;
}
.closing-link:hover .closing-arrow {
  background: var(--ink);
  color: var(--gold);
}
.new-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 62px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 35px;
  padding-bottom: 60px;
}
.footer-top > p {
  font-size: 12px;
  color: #b6bdae;
}
.footer-back {
  font-size: 10px;
  color: #b6bdae;
}
.footer-bottom {
  border-top: 1px solid #3b4335;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 25px 0 32px;
  color: #afb9a6;
  font-size: 8px;
}
.footer-bottom > div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: var(--gold);
}
/* Legacy product content, brought into the same editorial system. */
.detail-page,
.legal-page {
  font-family: var(--body-font);
  background: var(--paper);
}
.detail-page h1,
.legal-page h1 {
  font-family: var(--display-font);
  letter-spacing: -0.015em;
  line-height: 1;
  font-size: clamp(64px, 8vw, 112px);
}
.detail-hero,
.legal-hero {
  background: var(--ink) !important;
  color: var(--paper);
  padding-block: 85px;
}
.detail-hero h1 span,
.legal-hero h1 span {
  color: var(--gold) !important;
}
.detail-hero:before,
.detail-hero:after,
.legal-hero:after {
  display: none;
}
.detail-hero .eyebrow,
.legal-hero .eyebrow {
  color: #c2c8b6;
}
.detail-hero .detail-lede {
  color: #c4cabd;
  font-size: 15px;
}
.detail-page .button,
.detail-cta .button {
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
  border-radius: 100px;
  font-size: 12px;
}
.detail-page .button-outline-light {
  background: none;
  color: var(--paper);
  border: 1px solid #c7cebe;
}
.detail-signal {
  background: #293225;
  border-color: #576349;
  box-shadow: none;
}
.signal-row {
  border-color: #576349;
}
.signal-row > span:first-child {
  background: #414c36;
  color: var(--gold);
}
.signal-row strong {
  color: var(--paper);
}
.signal-row small {
  color: #c4ccba;
}
.signal-row b {
  color: var(--gold);
}
.detail-facts {
  background: #e2e6d9;
  color: var(--ink);
  border: 0;
}
.detail-facts strong {
  color: var(--ink);
}
.detail-facts small {
  color: var(--muted);
}
.detail-section {
  padding-block: 80px;
}
.detail-section.alt {
  background: #e8ebdf;
}
.detail-section h2 {
  font-family: var(--display-font);
  font-size: clamp(42px, 4.5vw, 65px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.detail-section h3 {
  font-family: var(--body-font);
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.detail-section-head > p:not(.eyebrow) {
  font-size: 14px;
}
.detail-feature,
.concept-card {
  border-radius: 3px;
  background: #f6f5ee;
  box-shadow: none;
  border-color: #d0d5c7;
}
.detail-feature > span {
  background: #e3e8d8;
  color: #47523b;
  border-radius: 50%;
}
.detail-feature p,
.concept-card p {
  font-size: 13px;
}
.detail-feature h3 {
  font-size: 18px;
}
.detail-workflow article {
  border-radius: 2px;
  background: #f4f3e9;
  box-shadow: none;
  border-color: #d0d5c7;
}
.detail-workflow article h3 {
  font-size: 17px;
}
.detail-workflow article p {
  font-size: 12px;
}
.detail-status-note {
  font-size: 12px;
  border-color: #b8c2a8;
  background: #eef0e5;
  color: #505c46;
}
.detail-cta {
  background: var(--paper);
}
.detail-cta-card {
  border-radius: 3px;
  background: var(--ink);
  box-shadow: none;
}
.detail-cta-card h2 {
  font-family: var(--display-font);
  font-size: 48px;
}
.media-proof {
  border-radius: 5px;
  box-shadow: 0 15px 35px #23351a13;
}
.media-proof figcaption {
  background: #f6f4eb;
  border-color: #d4d7c8;
}
.connection-list a {
  border-radius: 2px;
  background: #f6f5ed;
  border-color: #d0d5c7;
  box-shadow: none;
}
.connection-list a > span:first-child {
  background: #e3e7d7;
  color: #37472c;
}
.concept-number {
  color: #566740;
}
.concept-flow span {
  background: #e0e7d3;
  color: #34432b;
  border-color: #c3ceaf;
}
.legal-page .site-header {
  background: var(--paper);
  color: var(--ink);
}
.legal-hero p:not(.eyebrow) {
  color: #c4cabd;
}
.legal-main {
  background: var(--paper);
}
.legal-card {
  border-radius: 3px;
  box-shadow: none;
  background: #fcfbf5;
}
.legal-content h2 {
  font-family: var(--body-font);
  font-size: 25px;
}
.legal-content h3 {
  font-family: var(--body-font);
  font-size: 19px;
}
.legal-content p,
.legal-content li,
.legal-address {
  font-size: 14px;
}
.legal-toc {
  background: #e7ebdf;
  border-radius: 3px;
  box-shadow: none;
}
@media (min-width: 1800px) {
  .hero-art {
    right: calc((100vw - 1620px) / 2 - 100px);
  }
  .new-hero {
    min-height: 900px;
  }
}
@media (max-width: 1100px) {
  .container,
  .header-inner {
    width: calc(100% - 64px);
  }
  .new-hero {
    min-height: 760px;
  }
  .new-hero h1 {
    font-size: 132px;
  }
  .hero-art {
    right: -240px;
    width: 940px;
    top: 20px;
    opacity: 0.9;
  }
  .hero-art:after {
    background: linear-gradient(90deg, var(--ink), transparent 55%);
  }
  .hero-baseline {
    margin-top: 45px;
  }
  .section-intro {
    grid-template-columns: 1fr 1.7fr;
  }
  .section-intro > p:last-child {
    grid-column: 2;
  }
  .chapter-grid {
    gap: 6%;
  }
  .chapter-copy h2 {
    font-size: 54px;
  }
  .wide-chapter-head h2 {
    font-size: 68px;
  }
  .app-stage {
    min-height: 690px;
  }
  .stage-type {
    font-size: 110px;
  }
  .sim-stage {
    padding-inline: 30px;
  }
  .hindsight-stage {
    grid-template-columns: 0.32fr 1fr;
    gap: 25px;
  }
  .delay-figure {
    font-size: 150px;
  }
  .finder-answer {
    padding: 115px 30px 35px;
  }
  .project-grid {
    gap: 7%;
  }
  .faq h2 {
    font-size: 55px;
  }
  .closing-arrow {
    width: 115px;
    height: 115px;
    font-size: 65px;
  }
  .closing-link {
    gap: 20px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 780px) {
  html {
    scroll-padding-top: 24px;
  }
  .container,
  .header-inner {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 80px;
  }
  .brand-symbol {
    width: 33px;
    height: 33px;
  }
  .brand-copy strong {
    font-size: 15px;
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    color: var(--ink);
    padding: 25px 25px 35px;
    display: none;
    box-shadow: 0 25px 30px #0003;
    gap: 15px;
  }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav a {
    font-size: 20px;
    padding: 10px;
  }
  .site-nav .nav-cta {
    justify-content: space-between;
    margin-top: 5px;
    font-size: 15px;
  }
  .section-pad {
    padding-block: 75px;
  }
  .new-hero {
    min-height: 0;
  }
  .hero-inner {
    padding-top: 35px;
  }
  .overline {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .new-hero h1 {
    font-size: clamp(92px, 16vw, 126px);
    margin-top: 24px;
    margin-bottom: 29px;
    line-height: 0.92;
  }
  .hero-art {
    width: 750px;
    right: -345px;
    top: 105px;
    opacity: 0.65;
  }
  .hero-art:after {
    background: linear-gradient(90deg, var(--ink) 5%, transparent 70%);
  }
  .hero-inner > .overline {
    max-width: 300px;
  }
  .hero-bottom {
    max-width: 330px;
  }
  .hero-bottom > p {
    font-size: 12px;
    max-width: 285px;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .hero-baseline {
    margin-top: 48px;
    gap: 12px;
    padding-block: 18px;
    font-size: 8px;
  }
  .hero-edition {
    display: none;
  }
  .portfolio-index > .container {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .portfolio-index a {
    padding: 18px 10px !important;
    gap: 6px;
    flex-direction: column;
    font-size: 10px;
    line-height: 1.4;
  }
  .portfolio-index a > span {
    display: none;
  }
  .portfolio-index small {
    font-size: 8px;
  }
  .section-intro {
    display: block;
  }
  .section-intro h2 {
    font-size: 56px;
    margin-block: 22px;
  }
  .section-intro > p:last-child {
    max-width: 380px;
    font-size: 12px;
  }
  .moment-row {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
  .moment-row > a {
    margin: 0;
    border-bottom: 1px solid var(--line);
    padding: 21px 40px 24px 0;
  }
  .moment-row h3 {
    font-size: 32px;
    margin: 9px 0;
  }
  .moment-row p {
    max-width: 400px;
    font-size: 11px;
  }
  .moment-number {
    font-size: 7px;
  }
  .moment-arrow {
    top: 30px;
    right: 10px;
  }
  .portfolio-heading {
    padding-bottom: 45px;
  }
  .portfolio-heading h2 {
    font-size: 65px;
    position: relative;
    z-index: 1;
  }
  .portfolio-count {
    font-size: 160px;
    top: 8px;
    right: -5px;
    color: #d2d7c8;
  }
  .product-chapter {
    padding-block: 68px;
  }
  .app-chapter {
    padding-top: 0;
  }
  .chapter-grid,
  .club-chapter .chapter-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .app-chapter .chapter-copy {
    grid-row: 1;
  }
  .chapter-copy h2 {
    font-size: 55px;
    max-width: 450px;
  }
  .chapter-copy > p:not(.overline):not(.access-note) {
    font-size: 12px;
    max-width: 540px;
  }
  .chapter-features {
    margin: 23px 0;
  }
  .chapter-features li {
    padding: 15px 0;
  }
  .chapter-features p {
    font-size: 11px;
  }
  .chapter-actions {
    margin-top: 24px;
    gap: 23px;
  }
  .access-note {
    font-size: 8px;
    line-height: 1.5;
  }
  .app-stage {
    min-height: 615px;
    padding: 40px 20px 70px;
  }
  .device {
    width: 227px;
  }
  .stage-type {
    font-size: 120px;
    left: 18px;
    top: 27px;
  }
  .wide-chapter-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 35px;
  }
  .wide-chapter-head h2 {
    font-size: 67px;
  }
  .wide-chapter-head > div:last-child > p {
    font-size: 12px;
    max-width: 540px;
  }
  .hindsight-stage {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .hindsight-side {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 0;
    gap: 12px;
  }
  .live-mark {
    grid-column: 1;
    font-size: 7px;
  }
  .delay-figure {
    display: none;
  }
  .delay-steps {
    grid-column: 1;
    font-size: 11px;
  }
  .hindsight-side p {
    grid-row: 1/3;
    grid-column: 2;
    margin: 0;
    font-size: 9px;
  }
  .browser-window {
    width: 100%;
    border-radius: 4px;
  }
  .browser-toolbar {
    height: 26px;
  }
  .browser-toolbar span {
    font-size: 6px;
  }
  .browser-window figcaption {
    font-size: 7px;
    padding: 9px 12px;
  }
  .sim-stage {
    padding: 22px 0 0;
  }
  .sim-window {
    transform: none;
  }
  .trajectory {
    inset: -25px -10px 0;
  }
  .trajectory span {
    right: 0;
    top: -4px;
    font-size: 7px;
  }
  .club-stage {
    padding: 56px 16px 25px;
  }
  .club-stage .browser-window {
    transform: none;
  }
  .admin-chapter .chapter-copy {
    grid-row: 1;
  }
  .data-art {
    max-width: 540px;
    width: 100%;
    justify-self: center;
  }
  .data-art .data-node strong {
    font-size: 16px;
  }
  .data-art .node-core strong {
    font-size: 17px;
  }
  .finder-grid,
  .project-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .finder h2,
  .project h2,
  .faq h2 {
    font-size: 61px;
  }
  .finder-grid > div > p:not(.overline) {
    font-size: 12px;
  }
  .finder-answer {
    padding: 95px 27px 32px;
    min-height: 350px;
  }
  .finder-answer h3 {
    font-size: 46px;
    max-width: 350px;
  }
  .finder-mark {
    font-size: 85px;
    top: 2px;
    right: 27px;
  }
  .project-copy {
    padding-top: 23px;
  }
  .project-cross {
    top: -37px;
    font-size: 53px;
  }
  .project-copy p {
    font-size: 12px;
    max-width: none;
  }
  .faq-list summary {
    font-size: 11px;
    padding-block: 22px;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .closing {
    padding-block: 55px;
  }
  .closing h2 {
    font-size: clamp(100px, 19vw, 150px);
  }
  .closing-link {
    position: static;
    margin-top: 35px;
    justify-content: space-between;
    font-size: 13px;
  }
  .closing-arrow {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
  .new-footer {
    padding-top: 40px;
  }
  .footer-top {
    flex-wrap: wrap;
    padding-bottom: 35px;
    gap: 26px;
  }
  .footer-top > p {
    font-size: 10px;
    margin-right: auto;
  }
  .footer-back {
    font-size: 9px;
  }
  .footer-bottom {
    padding-top: 22px;
    gap: 19px;
    align-items: flex-start;
    font-size: 8px;
  }
  .footer-bottom > div {
    gap: 15px;
  }
  .detail-hero,
  .legal-hero {
    padding-block: 55px;
  }
  .detail-page h1,
  .legal-page h1 {
    font-size: 68px;
  }
  .detail-section {
    padding-block: 55px;
  }
  .detail-section h2 {
    font-size: 45px;
  }
  .detail-page .detail-hero-grid {
    gap: 35px;
  }
  .detail-hero .detail-lede {
    font-size: 13px;
  }
  .detail-cta-card h2 {
    font-size: 40px;
  }
  .detail-page .detail-facts-grid {
    grid-template-columns: 1fr !important;
  }
  .detail-facts-grid > div {
    padding-block: 12px;
  }
  .legal-content h2 {
    font-size: 23px;
  }
  .legal-page .legal-hero h1 {
    font-size: 60px;
  }
}
@media (max-width: 400px) {
  .new-hero h1 {
    font-size: 94px;
  }
  .hero-art {
    top: 150px;
    right: -420px;
    width: 780px;
    opacity: 0.48;
  }
  .hero-bottom > p {
    max-width: 270px;
  }
  .hero-actions {
    gap: 20px;
  }
  .pill {
    font-size: 10px;
    padding: 12px 18px;
    gap: 23px;
    min-height: 46px;
  }
  .quiet-link,
  .underlined {
    font-size: 10px;
  }
  .section-intro h2 {
    font-size: 50px;
  }
  .portfolio-heading h2 {
    font-size: 58px;
  }
  .chapter-copy h2 {
    font-size: 49px;
  }
  .app-stage {
    min-height: 585px;
  }
  .device {
    width: 213px;
  }
  .stage-type {
    font-size: 102px;
  }
  .finder h2,
  .project h2,
  .faq h2 {
    font-size: 55px;
  }
  .data-art .data-node {
    padding: 13px 15px;
  }
  .data-art .data-node strong {
    font-size: 14px;
  }
  .data-art .node-core strong {
    font-size: 15px;
  }
  .finder-answer h3 {
    font-size: 43px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.8s ease,
      transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
  }
  .motion-ready .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-art {
    transform: none;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Readable supporting copy at every size. */
.hero-art:after {
  background: linear-gradient(
    90deg,
    var(--ink) 0,
    #171b19f0 25%,
    #171b1988 46%,
    transparent 70%
  );
}
.hero-bottom > p,
.section-intro > p:last-child,
.chapter-copy > p:not(.overline):not(.access-note),
.wide-chapter-head > div:last-child > p,
.finder-grid > div > p:not(.overline),
.project-copy p {
  font-size: 15px;
}
.moment-row p,
.chapter-features p,
.finder-answer p:not(.overline),
.faq-list details p {
  font-size: 14px;
}
.chapter-features strong,
.faq-list summary,
.audience-choices button {
  font-size: 15px;
}
.pill,
.quiet-link,
.underlined {
  font-size: 12px;
}
.overline,
.moment-number,
.live-mark,
.stage-label,
.data-corner {
  font-size: 10px;
}
.access-note,
.stage-caption,
.browser-window figcaption,
.hindsight-side p,
.word-list span,
.project-concepts,
.footer-back,
.footer-bottom {
  font-size: 12px;
}
.browser-toolbar span,
.data-caption {
  font-size: 10px;
}
.image-switch button {
  font-size: 11px;
  min-height: 40px;
  padding-inline: 13px;
}
.image-switch {
  bottom: 63px;
}
.stage-caption {
  bottom: 20px;
  line-height: 1.5;
}
.app-stage {
  padding-bottom: 100px;
}
.footer-top > p {
  font-size: 13px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
}
body.detail-page {
  background: var(--paper);
}
.detail-page .site-header {
  position: relative;
  top: auto;
}
.detail-hero .detail-actions .button:not(.button-outline-light) {
  background: var(--gold);
  color: var(--ink);
}
.detail-feature p,
.concept-card p,
.detail-workflow article p,
.detail-section-head > p:not(.eyebrow) {
  font-size: 15px;
}
.detail-hero .detail-lede {
  font-size: 16px;
}
.detail-status-note {
  font-size: 13px;
}
.detail-facts-grid {
  box-shadow: none;
  border-radius: 3px;
  background: #e2e6d9;
}
.role-separator {
  grid-column: 1/-1;
  border-top: 1px solid #b4bdaa;
  padding-top: 20px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #495840;
}
.role-separator + .roles-target {
  grid-column: 1/-1;
}
@media (max-width: 780px) {
  .new-hero h1 {
    font-size: clamp(56px, 18vw, 110px);
  }
  .hero-art {
    width: 680px;
    right: -320px;
    top: 80px;
    opacity: 0.6;
  }
  .hero-art:after {
    background: linear-gradient(
      90deg,
      var(--ink),
      #171b19aa 30%,
      transparent 80%
    );
  }
  .hero-bottom > p {
    max-width: 330px;
  }
  .hero-baseline {
    font-size: 10px;
    margin-top: 35px;
  }
  .portfolio-index a {
    font-size: 12px;
    padding-inline: 5px !important;
  }
  .portfolio-index small {
    font-size: 10px;
  }
  .chapter-copy h2 {
    font-size: clamp(45px, 12.5vw, 65px);
  }
  .wide-chapter-head h2 {
    font-size: clamp(48px, 13vw, 74px);
  }
  .hindsight-side p {
    font-size: 12px;
  }
  .delay-steps {
    font-size: 12px;
  }
  .browser-window figcaption {
    font-size: 11px;
  }
  .browser-toolbar span {
    font-size: 8px;
    letter-spacing: 0.04em;
  }
  .stage-caption {
    font-size: 11px;
  }
  .word-list span {
    font-size: 11px;
  }
  .finder-answer .pill {
    white-space: normal;
  }
  .closing h2 {
    font-size: clamp(90px, 24vw, 150px);
  }
  .detail-hero .detail-lede {
    font-size: 15px;
  }
  .footer-top > p {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .pill {
    padding-inline: 16px;
  }
  .hero-actions .quiet-link {
    font-size: 11px;
  }
  .chapter-actions {
    gap: 17px;
  }
  .stage-type {
    font-size: 88px;
  }
  .finder-answer {
    padding-inline: 23px;
  }
}
@media print {
  .site-header,
  .portfolio-index,
  .hero-art,
  .nav-toggle,
  .new-footer,
  .closing {
    display: none;
  }
  .new-hero,
  .product-chapter,
  .project,
  .finder-answer {
    background: white !important;
    color: black !important;
  }
  .container {
    width: 100%;
  }
  .new-hero h1 {
    font-size: 65px;
  }
  .product-chapter {
    break-inside: avoid;
    padding: 30px 0;
  }
  .section-pad {
    padding: 30px 0;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Navigation and content remain available without JavaScript. */
html:not(.js-enabled) .nav-toggle,
html:not(.js-enabled) .image-switch,
html:not(.js-enabled) .audience-choices {
  display: none;
}
@media (max-width: 780px) {
  html:not(.js-enabled) .header-inner {
    flex-wrap: wrap;
    padding-block: 20px;
  }
  html:not(.js-enabled) .site-nav {
    display: flex;
    position: static;
    flex-wrap: wrap;
    box-shadow: none;
    padding: 0;
    gap: 10px;
    background: transparent;
    color: inherit;
  }
  html:not(.js-enabled) .site-nav a {
    font-size: 12px;
    padding: 5px;
  }
  html:not(.js-enabled) .site-nav .nav-cta {
    margin: 0;
    padding: 7px 14px;
  }
}
/* Contrast across pale chapter backgrounds and inherited detail diagrams. */
:root {
  --muted: #5e655a;
}
.muted {
  color: #767e6e;
}
.access-note {
  color: #59634f;
}
.detail-page .detail-section .eyebrow,
.detail-page .detail-workflow article small {
  color: #425c3e;
}
.connection-list small,
.legal-toc a,
.training-diagram small,
.data-rules small {
  color: #56624e;
}
.roles-source small {
  color: #fff;
}
.media-proof figcaption strong {
  color: var(--ink);
}
.media-proof figcaption span {
  color: #59634f;
}
.mobile-screen-grid:focus-visible {
  outline: 3px solid #ab731b;
  outline-offset: 5px;
}

.roles-diagram {
  grid-template-rows: auto;
}
.roles-source {
  grid-row: auto;
}
.detail-page .data-node strong,
.detail-page .roles-source strong,
.detail-page .roles-target strong {
  font-size: 16px;
}
.detail-page .data-node small,
.detail-page .data-core small,
.detail-page .roles-source small,
.detail-page .roles-target small,
.role-connector span {
  font-size: 12px;
}
.detail-page .data-node small {
  color: #56624e;
}
.portfolio-index small {
  color: #56624e;
}
@media (min-width: 781px) {
  .portfolio-count {
    color: #7b836e;
  }
}
